home *** CD-ROM | disk | FTP | other *** search
/ Iona Software Demo / MacWin_IonaSoftware_DemoCD.iso / pc / main.dir / 00039.ls < prev    next >
Encoding:
Text File  |  1996-02-23  |  445 b   |  20 lines

  1. on exitFrame
  2.   global lang
  3.   if the mouseDown then
  4.     put the clickOn
  5.     if the clickOn > 2 then
  6.       set map to the clickOn
  7.       set key to the text of cast "country"
  8.       repeat with p = 1 to the number of lines in key
  9.         if word 1 of line p of key = map then
  10.           set lang to word 2 of line p of key
  11.           exit repeat
  12.         end if
  13.       end repeat
  14.       go(the frame + 1)
  15.     end if
  16.   else
  17.     go(the frame)
  18.   end if
  19. end
  20.