home *** CD-ROM | disk | FTP | other *** search
/ Ubisoft (Chinese) Press Kit 2000 / PRESSKIT.iso / ubisoft.exe / ubisoft.dxr / 00021_Go Loop.ls < prev    next >
Encoding:
Text File  |  2000-09-01  |  742 b   |  20 lines

  1. on getBehaviorDescription me
  2.   return "GO LOOP" & RETURN & RETURN & "Drop this behavior into the Script Channel of the Score or onto the Stage to make the playback head loop back to the nearest previous marker. " & "If there are no previous markers, the playback head jumps to frame 1." & RETURN & RETURN & "Not compatible with Java." & RETURN & RETURN & "PARAMETERS: None"
  3. end
  4.  
  5. on getBehaviorTooltip me
  6.   return "Frame behavior. " & "Loops the playback head to the nearest previous marker, or to frame 1 if there are no intervening markers. " & "Not compatible with Java."
  7. end
  8.  
  9. on exitFrame me
  10.   go(#loop)
  11. end
  12.  
  13. on isOKToAttach me, aSpriteType, aSpriteNum
  14.   tisok = 0
  15.   if aSpriteType = #script then
  16.     tisok = 1
  17.   end if
  18.   return tisok
  19. end
  20.