Flash button
April 21, 2005 12:00 AM
Oh OK! That makes sense! I see why it didn't work now. I made a function in flash, but since that wasn't working for me I used the getURL but with a longer string that references our loading template. getURL("javascript:parent.window.WBTCourse.document.location ='passed_congratulations.html'"); However, I like the shorter version, getURL("javascript:trivNextPage()"); which I will use when I have something that will go to the next page. Thanks!For now since I also realized it was not the next page, I will leave it. Basically I have a Flash interaction that is keeping track on how many they get right. If they get 83% and up they go to the passed_congratulations.html page...if they get less than that I am having them go to an imcomplete page with the else condition that will direct them to take it over.//if learner scored 83% or above in this interaction goto passed_congratulations.html if ((tally == 10) || (tally == 11) || (tally == 12)) { getURL("javascript:parent.window.WBTCourse.document.location ='passed_congratulations.html'"); } else { //otherwise goto failed_incomplete.html getURL("javascript:parent.window.WBTCourse.document.location ='failed_incomplete.html'"); }}
Discussions have been disabled for this post