home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- cursor(-1)
- aboutInfo()
- end
-
- on closeWindow
- set theList to the windowList
- repeat with i = 1 to count(theList)
- set theItem to string(getAt(theList, i))
- delete word 1 of theItem
- delete char 1 of theItem
- set theChar to the number of chars in theItem
- delete char theChar - 1 to theChar of theItem
- if (theItem contains "About FileFlex") or (theItem contains "FFABOU") then
- forget(window theItem)
- end if
- end repeat
- tell the stage
- puppetPalette(0)
- end tell
- tell the stage
- updateStage()
- end tell
- end
-
- on aboutInfo
- set the itemDelimiter to "-"
- set verData to word 1 of DBVersion()
- set theVersion to item 1 of verData
- set thePlatform to item 2 of verData
- set the itemDelimiter to " "
- set lastChar to the number of chars in theVersion
- case char lastChar of theVersion of
- "L":
- set theEdition to "Lite"
- "P":
- set theEdition to "Professional"
- "D":
- set theEdition to "Demonstration"
- end case
- set theInfo to "Edition:" && theEdition
- put " ΓÇó " & "Version:" && theVersion after theInfo
- put RETURN & "Platform:" && thePlatform after theInfo
- put " ΓÇó " & "Maximum Records:" && string(DBMaxRecs()) after theInfo
- put RETURN & RETURN after theInfo
- case char lastChar of theVersion of
- "L":
- set comment to "This version is distributed exclusively for Macromedia Director customers. Please refer all "
- put "support questions to Macromedia at 415-252-9080, Fax 415-703-0924. " after comment
- put RETURN & RETURN & "Subscribe to the free FileFlex support list by sending mail to 'listserv@netcom.com'. " after comment
- put "Type the lines 'subscribe fileflex-announce' and 'subscribe fileflex-talk' into the message body." after comment
- put RETURN & RETURN & "If you wish to manage more than 1,000" after comment
- put " records, a Professional version of FileFlex is available directly from Component. " after comment
- put "See www.component-net.com for details." after comment
- "D":
- set comment to "Subscribe to the free FileFlex support list by sending mail to 'listserv@netcom.com'."
- put "Type the lines 'subscribe fileflex-announce' and 'subscribe fileflex-talk' into the message body." after comment
- put RETURN & RETURN & "If you wish to manage more than 100" after comment
- put " records, a Professional version of FileFlex is available directly from Component. " after comment
- put "See www.component-net.com for details." after comment
- "P":
- set comment to "Subscribe to the free FileFlex support list by sending mail to 'listserv@netcom.com'."
- put "Type the lines 'subscribe fileflex-announce' and 'subscribe fileflex-talk' into the message body." after comment
- end case
- put comment after theInfo
- set the text of member "aboutInfo" to theInfo
- set the textHeight of member "aboutInfo" to 11
- end
-