2/4/2011 9:02:19 PM
Title:
Trace Function
Hi :o)
Would it be possible to add a 'trace' function to several .swf quizzes, and if all are 'true', then a PDF becomes unlocked/visible to print out?
Would I have to use an 'if' statement (if all true)? What would the script look like for this, and to activate the PDF if all true?
Running Flash CS4 or CS5, with action script 3.
Thnx all :o)
Tyson
Points: 680
Posts:0
2/6/2011 5:58:14 AM
the condition will look like like :
if(a==true && b== true && c == true){
pdfButton.visible = true;
}