Digital Workshop

Welcome to the Digital Workshop Message Boards
It is currently September 28th, 2024, 5:19 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 13 posts ] 
Author Message
 Post subject: I can open image from the web?
PostPosted: July 2nd, 2005, 7:53 pm 
Offline

Joined: July 2nd, 2005, 7:02 pm
Posts: 10
Hi all!
I am brazilian...my english is bad :D
ok...
I am creating an application that opens images of the web in I Opposed him/it, without the use of the Browser, that opens the file in the item same IMAGE.
I thank for the opportunity, and excuse the eventual mistakes in the writing! :D


Top
 Profile  
 
 Post subject: Re: I can open image from the web?
PostPosted: July 3rd, 2005, 10:24 pm 
Offline

Joined: July 2nd, 2005, 7:02 pm
Posts: 10
NaniCko wrote:
Hi all!
I am brazilian...my english is bad :D
ok...
I am creating an application that opens images of the web in I Opposed him/it, without the use of the Browser, that opens the file in the item same IMAGE.
I thank for the opportunity, and excuse the eventual mistakes in the writing! :D


Hi peoples... :)
I want do developer this soft in Opus....excuse me for not explicated :oops:
Ateh + pessoal (this sentense is in portuguese:))


Top
 Profile  
 
 Post subject:
PostPosted: July 4th, 2005, 8:27 am 
Offline

Joined: November 28th, 2004, 6:05 am
Posts: 141
Location: USA
I'm afraid this is not possible.

Why not use the browser object ?

Chris

_________________
Opus Resources and Services


Top
 Profile Visit website  
 
 Post subject: Humm....ok...Have o software thats meke this
PostPosted: July 4th, 2005, 9:39 pm 
Offline

Joined: July 2nd, 2005, 7:02 pm
Posts: 10
Ok man.... i won´t use Browser Option for that border...i would like that the image has apeareance of the messenger...
i have a question for you(s)....Can This is make in other software? I have anything the Opus 03 and 04... Anybody know a software thats make this?

:shock: Sorry friends!!!!


Top
 Profile  
 
 Post subject: Ajuda
PostPosted: July 4th, 2005, 9:59 pm 
Offline

Joined: November 3rd, 2004, 12:58 pm
Posts: 230
Location: Australia
Hello Eu falo pouco portuguese mas eu falo o espanhol. Por favor, explique o que você querem fazer?

Há muitas coisas que você pode fazer no opus mas eu necessito compreender o que você querem. Explique por favor claramente e ao ponto.

German

_________________
German Silva
Senior Web & Multimedia Developer
E-solutions Inc
Pro version 8.10 user


Top
 Profile  
 
 Post subject: Let´s go!
PostPosted: July 7th, 2005, 11:57 am 
Offline

Joined: July 2nd, 2005, 7:02 pm
Posts: 10
Legal assim posso me expressar melhor...
O problema é o seguinte...eu desejo saber se o objeto IMAGE no opus abre imagens da web, eu já tentei colocando a URL no endereço da imagem mas não funcionou.... eu queria saber se existe outro modo, como por exemplo fazer o download do arquivo pelo opus....
Eu não quero usar o Browser pois a cliente do programa vai perceber isso, eu quero que a imagem tenha a aparência igual a imagem de usuário no MSN messenger :D

Por favor se quiser saber mais converse pelo msn = elisson_nanico@hotmail.com
Estou disponível somente no final de semana, abaixo vou colocar a versão em inglês para os outros usuários :D

IN ENGLISH----------------
Legal I can like this me to express better...
The problem is the following ...eu desire to know the object IMAGE in I opposed he/she opens him/it images of the web, I already tried placing to URL in the address of the image but it didn't work.... I wanted to know if other way exists, as for exemple to do the download of the file for the I opposed....
I don't want to use the Browser because the customer of the program will notice that, I want the image to have the same appearance user's image in the MSN messenger :D


Top
 Profile  
 
 Post subject:
PostPosted: July 7th, 2005, 12:42 pm 
Offline

Joined: October 26th, 2004, 10:23 am
Posts: 666
Location: Digital Workshop
You could use wget to download the image to a known location and (the SYSTEM_PUBLICATION_DIR or SYSTEM_TEMP_DIR, for example), by passing parameters from the Launch action.
Code:
-q http://www.somewhere.com/sa_picture.jpg -O <SYSTEM_PUBLICATION_DIR>\image.jpg

Set the image object on the page to use SYSTEM_PUBLICATION_DIR>\image.jpg and it will automatically load when an image is present.

_________________
ddww Opus Developer


Top
 Profile Visit website  
 
 Post subject: Um bocado complicado!
PostPosted: July 7th, 2005, 2:18 pm 
Offline

Joined: November 3rd, 2004, 12:58 pm
Posts: 230
Location: Australia
Você pode usar o browser do opus mas fazer ao tamanho do browser o tamanho da imagem que você quer mostrar. Você obterá este pela experimentação e pelo erro. Eu pensarei em uma aproximação diferente mas para agora, este é que I que sugere o para fazer.

German

_________________
German Silva
Senior Web & Multimedia Developer
E-solutions Inc
Pro version 8.10 user


Top
 Profile  
 
 Post subject:
PostPosted: July 7th, 2005, 3:30 pm 
Offline

Joined: November 28th, 2004, 6:05 am
Posts: 141
Location: USA
NaniCko

Easy enough to get rid of the border from the browser object
with a little CSS

just Untick the "Outline broder" and "Status bar" properties
and use this html

<html>
<body style="overflow-x:hidden;overflow-y:hidden;border-style:solid;border-width:0;"topmargin="0"leftmargin="0">
<img src = "http://MySite.com/ImageName.jpg">
</body>
</html>

HTH
Chris

_________________
Opus Resources and Services


Top
 Profile Visit website  
 
 Post subject: Its very Good!!!
PostPosted: July 9th, 2005, 11:09 am 
Offline

Joined: July 2nd, 2005, 7:02 pm
Posts: 10
Duncan Lilly wrote:
You could use wget to download the image to a known location and (the SYSTEM_PUBLICATION_DIR or SYSTEM_TEMP_DIR, for example), by passing parameters from the Launch action.
Code:
-q http://www.somewhere.com/sa_picture.jpg -O <SYSTEM_PUBLICATION_DIR>\image.jpg

Set the image object on the page to use SYSTEM_PUBLICATION_DIR>\image.jpg and it will automatically load when an image is present.


Ok man its is very util!!! thanks...ohh.... Do you know set the borders roundeds? Thanks good bye!


Top
 Profile  
 
 Post subject: Funny!
PostPosted: July 9th, 2005, 11:15 am 
Offline

Joined: July 2nd, 2005, 7:02 pm
Posts: 10
Duncan Lilly wrote:
You could use wget to download the image to a known location and (the SYSTEM_PUBLICATION_DIR or SYSTEM_TEMP_DIR, for example), by passing parameters from the Launch action.
Code:
-q http://www.somewhere.com/sa_picture.jpg -O <SYSTEM_PUBLICATION_DIR>\image.jpg

Set the image object on the page to use SYSTEM_PUBLICATION_DIR>\image.jpg and it will automatically load when an image is present.


Ok... how do download of the wget?What the file extension is *.tar*?(como eu faço o download?Que extensão é *.tar*?)


Top
 Profile  
 
 Post subject:
PostPosted: July 9th, 2005, 1:23 pm 
Offline

Joined: October 26th, 2004, 10:23 am
Posts: 666
Location: Digital Workshop
From the download section on that page:

Binaries built for Microsoft Windows are available courtesy Heiko Herold at http://space.tin.it/computer/hherold/

_________________
ddww Opus Developer


Top
 Profile Visit website  
 
 Post subject: Have other software that make the similar thing?
PostPosted: July 14th, 2005, 5:43 am 
Offline

Joined: July 2nd, 2005, 7:02 pm
Posts: 10
HI...
Exist Does a software that does exist the same as the wget? I wait that yes because I didn't get to use the resources of this. Thank you


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 13 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 16 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group