home *** CD-ROM | disk | FTP | other *** search
/ ATComputers Catalog / AutoCont+ATcomp.bin / Data / Data.dxr / Internal_37_OpenFile.ls < prev    next >
Encoding:
Text File  |  2003-07-28  |  345 b   |  19 lines

  1. property myFilePath
  2.  
  3. on mouseUp me
  4.   open(myFilePath)
  5. end
  6.  
  7. on isOKToAttach me, aSpriteType, aSpriteNum
  8.   case aSpriteType of
  9.     #graphic:
  10.       return 1
  11.     #script:
  12.       return 0
  13.   end case
  14. end
  15.  
  16. on getPropertyDescriptionList
  17.   return [#myFilePath: [#comment: "Cesta k suboru", #format: #string, #default: "sporic BIOSCOPIA Hexagon.exe"]]
  18. end
  19.