home *** CD-ROM | disk | FTP | other *** search
/ Boot Disc 2 / boot-disc-1996-10.iso / bootcd.dir / 00296_Script_296 < prev    next >
Text File  |  1996-08-09  |  536b  |  13 lines

  1. on mouseDown
  2.   if the mouseline<1 then
  3.     put "You must click on the name of a game or application to select it." into field "DemoInfo"
  4.   else
  5.     set the textstyle of field (the membernum of sprite the clickon) to "plain"
  6.     set the textstyle of line the mouseline of field (the membernum of sprite the clickon) to "bold"
  7.   end if
  8.   set membername=the name of member the membernum of sprite the clickon
  9.   set pos=offset("Text",membername)
  10.   delete char pos to length(membername) of membername
  11.   SelectDemo membername
  12. end
  13.