Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Trails

Status
Not open for further replies.

TheRAt

Technical User
Jul 19, 2000
155
NZ
I am creating a CD project with Director and this requires a "trail" (ie. like a web trail on a site that tells me where I am - eg. Home -> Project 1 -> Item 1) which I can use to demontrate the currect location and a quick way to go back a level.

Any help in the direction I should take to look at this would be appreciated greatly...

Thanks

AV
tnedor@yahoo.com
 
Easist method is using a list to track progress. When the user goes to the next movie/marker or whatever add it to the list, when they click the back button send them to the last item in the list and remove that item - highly recommend you learn everything about lists and property lists that you can, they are very fast and excelent ways to organise data.


eg
on mouseup
global gUserProgress
-- for the next button
add(gUserProgress, the moviename)
end

on mouseup
-- for the prev button
global gUserProgress
set vGoTo = getlast(gUserProgress)
deletelast(gUserProgress)
go to movie vGoTo
end
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top