home *** CD-ROM | disk | FTP | other *** search
- global gCDPath, NPWindowRect
-
- on DoNotepad
- set tmpWinList to string(the windowList)
- if tmpWinList contains "Notepad" then
- close(window "notepad")
- else
- set NPWindow to window "Notepad"
- if voidp(NPWindowRect) then
- set hzOrigin to the stageLeft + 10
- set vertOrigin to the stageTop + 40
- set NPWindowRect to rect(hzOrigin, vertOrigin, hzOrigin + 208, vertOrigin + 196)
- end if
- set the rect of NPWindow to NPWindowRect
- set the windowType of NPWindow to 4
- set the fileName of NPWindow to the pathName & "Notepad"
- open(NPWindow)
- end if
- end
-