Did this:
go to stack URL field f_url
works fine in the IDE but does not work anymore in stand alone (Win XP).
Has anyone experienced this? Am I issing something here?
go to stack URL
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: go to stack URL
After further testing I made a correction by put quotes around the field name. Some of the rev app on the web server doesn't really work when launched from web.
I wanted to show a message using a label l_wait "Loading application".
on OpenStack
set the visible of field "l_wait" of card "card_main" to false
end OpenStack
on mouseUp
--go to stack URL "http://localhost/test.rev" in the window of this stack
set the visible of field "l_wait" of card "card_main" to true
go to stack URL field "f_url" --in the window of this stack
set the visible of field "l_wait" of card "card_main" to false
end mouseUp
The "Loading application" shows up but doesn't go away anymore. What am I missing here?
I wanted to show a message using a label l_wait "Loading application".
on OpenStack
set the visible of field "l_wait" of card "card_main" to false
end OpenStack
on mouseUp
--go to stack URL "http://localhost/test.rev" in the window of this stack
set the visible of field "l_wait" of card "card_main" to true
go to stack URL field "f_url" --in the window of this stack
set the visible of field "l_wait" of card "card_main" to false
end mouseUp
The "Loading application" shows up but doesn't go away anymore. What am I missing here?
Re: go to stack URL
Hi gw,
Just add the stackname to this line and it should work!
Best
Klaus
Code: Select all
...
go to stack URL field "f_url"
## Here you change "the defaultstack"...
set the visible of field "l_wait" of card "card_main" to false
## ... so this button is not found and you would get an error in the IDE!
...
Code: Select all
...
set the visible of field "l_wait" of card "card_main" OF STACK "the stack with this script in it" to false
...
Klaus