Where is the revlet?...
Posted: Thu Aug 20, 2009 10:39 am
Gents.. Ladies,
I have been playing with revlets and to a large extent things have been going really well. I appreciate that not all the syntax from the desktop environment is yet working in the web version... but... Is there anyway to get the revlet to tell you where it is ?... this works on the desktop, but not when the revlet is on the server.
The only way around this problem that I have come up with is to give a script the filepath of the revlet... as in
[/code]
I look forward to the replies...
I have been playing with revlets and to a large extent things have been going really well. I appreciate that not all the syntax from the desktop environment is yet working in the web version... but... Is there anyway to get the revlet to tell you where it is ?... this works on the desktop, but not when the revlet is on the server.
Code: Select all
on mouseUp
put the filename of this stack into fld 2
end mouseUp
Code: Select all
on menuPick ItemName
put "http://www.(sub-domain).(domain name).on-rev.com" into place
put empty into fld 1
set cursor to busy
switch ItemName
case "Image 1"
set the filename of image "view" to place &"/image1.png"
put "Jenny and Jo in Wells, 2005" into fld 1
break
case "Image 2"
set the filename of image "view" to place &"/image2.png"
put "Jenny learning to ride her first bicycle.." into fld 1
break
case "Image 3"
set the filename of image "view" to place &"/image3.png"
put "Jenny and Joanne, being friendly for once..." into fld 1
break
end switch
end menuPick
I look forward to the replies...