home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Notepad.Dxr / 00001_notepad code.ls next >
Encoding:
Text File  |  1998-02-20  |  2.2 KB  |  97 lines

  1. global gTextHold, gStageUHCursor, gNoteArchive, NPWindowRect
  2.  
  3. on startMovie
  4.   NotePadSetup()
  5. end
  6.  
  7. on NotePadSetup
  8.   if voidp(gNoteArchive) then
  9.     set the text of field "notes" to EMPTY
  10.   else
  11.     set the text of field "notes" to gNoteArchive
  12.   end if
  13. end
  14.  
  15. on closeWindow
  16.   set gNoteArchive to the text of field "notes"
  17.   set NPWindowRect to the rect of window "Notepad"
  18.   tell the stage
  19.     forget(window "Notepad")
  20.   end tell
  21. end
  22.  
  23. on copyIT
  24.   set gTextHold to EMPTY
  25.   set gTextHold to the selection
  26.   set the text of member 6 to gTextHold
  27.   copyToClipBoard(member 6)
  28. end
  29.  
  30. on pasteIt
  31.   if the selStart > 0 then
  32.     set the text of field "notes" to char 1 to the selStart of field "notes" & gTextHold & char the selEnd + 1 to the number of chars in field "notes" of field "notes"
  33.     pasteClipBoardInto(member 6)
  34.   else
  35.     pasteClipBoardInto(member 6)
  36.     set pasteholder to the text of field 6
  37.     set noteholder to the text of field "notes"
  38.     set newNote to noteholder & RETURN & pasteholder
  39.     set the text of field "notes" to newNote
  40.   end if
  41. end
  42.  
  43. on clearIt
  44.   set gTextHold to "----"
  45.   set the text of field "notes" to "----"
  46.   copyToClipBoard(member "notes")
  47. end
  48.  
  49. on printIT
  50.   print(the text of member "notes")
  51. end
  52.  
  53. on rollabel
  54.   if rollOver(2) then
  55.     puppetSprite(5, 1)
  56.     set the loc of sprite 5 to point(the mouseH, the mouseV) + 20
  57.   else
  58.     set the loc of sprite 5 to point(-9999, -9999)
  59.     updateStage()
  60.     puppetSprite(5, 0)
  61.   end if
  62. end
  63.  
  64. on cmdDown
  65.   if the commandDown then
  66.     case the key of
  67.       "v":
  68.         pasteIt()
  69.       "c":
  70.         copyIT()
  71.     end case
  72.   end if
  73. end
  74.  
  75. on clickButton action
  76.   set spritenum to the clickOn
  77.   set castMember to the member of sprite spritenum
  78.   set Castname to the name of member castMember
  79.   set castNum to the castLibNum of member castMember
  80.   puppetSprite(spritenum, 1)
  81.   repeat while the mouseDown
  82.     if rollOver(spritenum) then
  83.       set the member of sprite spritenum to member (Castname && "dn") of castLib castNum
  84.       updateStage()
  85.       next repeat
  86.     end if
  87.     set the member of sprite spritenum to castMember
  88.     updateStage()
  89.   end repeat
  90.   set the member of sprite spritenum to castMember
  91.   updateStage()
  92.   puppetSprite(spritenum, 0)
  93.   if rollOver(spritenum) then
  94.     do(action)
  95.   end if
  96. end
  97.