Joined: December 22nd, 2004, 10:00 am Posts: 29
Opus: Opus Pro 7.5
OS: Windows 7 32 bit on BootCamp
System: MacBook Pro, 3 GBytes RAM, Core2Duo T8300@2.4 GHz,
|
Hello Tarantoga,
here's my view on your issue:
You currently have :
Script
{ bla bla bla
}
Action 1 (e.g. show image1)
Action 2 (e.g. show image2)
So everytime the button is pressed, all the above are executed.
You need the following:
Script
{bla bla bla
but if a condition is met
then stop here
}
Action 1 (not executed)
Action 2 (not executed)
What I would do is:
Script
{bla bla bla
if condition is met (e.g. if x=2)
then set variable actionstop = true
}
If actionstop = false then
Action 1
Action 2
Else (nothing)
I think that this was suggested by Duncan Lilly, only I elaborated a bit!
Hope I got it right!
|
|