home *** CD-ROM | disk | FTP | other *** search
/ Manchester United on CD / Manchester United on CD.iso / subscribe.dxr / Internal_6_back to ... from subscribe.ls < prev    next >
Encoding:
Text File  |  2000-08-30  |  518 b   |  21 lines

  1. property psp_mysprite
  2.  
  3. on beginSprite me
  4.   psp_mysprite = sprite(me.spriteNum)
  5. end
  6.  
  7. on mouseUp me
  8.   global gc_backfromsubscribe, gc_whichmovienext
  9.   if voidp(gc_backfromsubscribe) or (gc_backfromsubscribe = "mainmenu") then
  10.     gc_whichmovienext = "mainmenu"
  11.     go("slide out")
  12.   end if
  13.   if gc_backfromsubscribe = "redstuff" then
  14.     go("main", "redstuff")
  15.   end if
  16. end
  17.  
  18. on getPropertyDescriptionList me
  19.   return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
  20. end
  21.