home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1998 #11 / PCDIREKT_1198.bin / SHOWDATA / INSTALL.DXR / 00002.ls < prev    next >
Encoding:
Text File  |  1998-03-20  |  665 b   |  30 lines

  1. global myRo
  2.  
  3. on idle
  4.   set myRo to rollOver()
  5.   resume()
  6. end
  7.  
  8. on enterFrame
  9.   global merkframe
  10.   if the frame <> merkframe then
  11.     if the memberNum of sprite 9 > 0 then
  12.       if not (the name of member the member of sprite 9 = EMPTY) then
  13.         set the text of field "BU" to "Abbildung:" && the name of member the member of sprite 9
  14.       end if
  15.     end if
  16.   end if
  17.   set merkframe to the frame
  18. end
  19.  
  20. on exitFrame
  21.   global timerb, myplatform
  22.   MenueButtons()
  23.   if (myplatform = "Mac") or (myplatform = "NT") then
  24.     AuswahlZwei(30, 6, ["NT1", "2", "3", "NT4", "5", "6"])
  25.   else
  26.     AuswahlZwei(30, 6, ["1", "2", "3", "4", "5", "6"])
  27.   end if
  28.   go(the frame)
  29. end
  30.