home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global g_cred_page, g_cred_maxpg
- set g_cred_page to 1
- set g_cred_maxpg to 13
- end
-
- on OwnPlay destination
- global gOwnPlayList
- if voidp(gOwnPlayList) then
- set gOwnPlayList to []
- end if
- add(gOwnPlayList, [the pathName & the movie, the frame])
- put "play ---> ", gOwnPlayList
- go(1, destination)
- end
-
- on OwnPlayDone
- global gOwnPlayList
- put "done ---> ", gOwnPlayList
- set length to count(gOwnPlayList)
- if length = 0 then
- beep()
- exit
- end if
- go(getAt(getAt(gOwnPlayList, length), 2), getAt(getAt(gOwnPlayList, length), 1))
- deleteAt(gOwnPlayList, length)
- end
-