home *** CD-ROM | disk | FTP | other *** search
/ Rooie Oortjes 3 / RO3_CD.bin / menu.dxr / 00029.ls < prev    next >
Encoding:
Text File  |  1997-11-05  |  955 b   |  32 lines

  1. global Language
  2.  
  3. on mouseDown
  4.   set the visible of sprite 5 to 1
  5.   updateStage()
  6. end
  7.  
  8. on mouseUp
  9.   set the visible of sprite 5 to 0
  10.   updateStage()
  11.   if Language = #Ned then
  12.     set launch to "2000 . " & QUOTE & "playmate.exe ned" & QUOTE & " PlayMate . ro3ned.exe"
  13.   end if
  14.   if Language = #Fra then
  15.     set launch to "2000 . " & QUOTE & "playmate.exe fra" & QUOTE & " PlayMate . ro3fra.exe"
  16.   end if
  17.   if Language = #Dui then
  18.     set launch to "2000 . " & QUOTE & "playmate.exe dui" & QUOTE & " PlayMate . ro3dui.exe"
  19.   end if
  20.   if Language = #Eng then
  21.     set launch to "2000 . " & QUOTE & "playmate.exe eng" & QUOTE & " PlayMate . ro3eng.exe"
  22.   end if
  23.   if Language = #Ita then
  24.     set launch to "2000 . " & QUOTE & "playmate.exe ita" & QUOTE & " PlayMate . ro3ita.exe"
  25.   end if
  26.   if Language = #none then
  27.     set launch to "2000 . " & QUOTE & "playmate.exe ned" & QUOTE & " PlayMate . ro3ned.exe"
  28.   end if
  29.   open("launch.exe " & launch)
  30.   quit()
  31. end
  32.