Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Objects not showing in exported version but showing at native

12 views
Skip to first unread message

bob...@shaw.ca

unread,
May 14, 2014, 10:54:11 AM5/14/14
to
I have the following for all the question objects in a quiz. They are simply a tick for "yes" and a "x? for "no". They work nicely for feedback until I export where they no longer show. Any suggestions would be appreciated.


-----------------
Actions for Fill in the Blank Question "Fill in the Blank" of Page "evaluation"
--------------------------------------------------------------------------------

-- On question answered... -----------------------------------------------------
If score = "correct"
Set visible of PaintObject "yes" to true
Delay 3000 ms
Set visible of PaintObject "yes" to false
Else
Set visible of PaintObject "no" to true
Delay 3000 ms
Set visible of PaintObject "no" to false
End if


Message has been deleted
Message has been deleted

daniels...@gmail.com

unread,
May 15, 2014, 2:49:58 AM5/15/14
to
Time delays wont work inside of an IF statements on exported version.

You may need to split that out so that you time delays work. otherwise its always going to fire the false statements immediately after the true statement.

try this

If score = "correct"
Set visible of PaintObject "yes" to true
Else
Set visible of PaintObject "no" to true
End if
Delay 3000 ms
Set visible of PaintObject "yes" to false
0 new messages