Farbflash projects: Imaging lingo table | 3-D scene list | Find all | Handler menu | Lingo message window

Ignore:
Timestamp:
12/15/08 13:00:15 (3 years ago)
Author:
alex
Message:

only copy dir and cst files now, when doing svn update movie binaries. added function to split path in order to not assume, that the first dot is the file extension seperator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lingosource/castlib1/custom_Utilities.ls

    r180 r215  
     1-- custom_Utilities 
     2----------------------------------- 
     3-- PROPERTIES: 
     4--!memberProperties: [#name: "custom_Utilities", #scripttype: #parent, #scriptSyntax: #lingo, #comments: "~/Documents/Scripts/lingo/commonMovieScript.ls"] 
     5-- 
     6-- DESCRIPTION: 
     7--               you can use the utility handlers from script alexUtilities in this script, as it uses it as ancestor. 
     8-- 
     9-- REQUIRES: 
     10--               script "alexUtilities" -> ancestor -> basic function provider 
     11-- 
     12-- USAGE: 
     13--               define the handlers, which are provided in the Utilities menu and defined in script "OSCmenu_Utilities" 
     14-- 
     15-- 
     16-- if you want to display a status for long calls (like my svn utilities do) 
     17-- use: 
     18-- me.mSwitchToStatusMode(1) -- to switch it on 
     19-- me.mSwitchToStatusMode(0) -- to switch it off 
     20-- and: 
     21-- me.mDisplayWaitStatusText(aString) -- to display a status message 
     22-- 
     23-- 
     24-- WARNINGS: 
     25--              keep in mind, that you are in the scope of the stage, when these hadlers here are called! 
     26--              so calling a script of this movie "Handlermenu" here is only possible, if you use a "tell" statement 
     27--              use it like so: tell window(me.pHandlerMenuWindowName) to doSomething 
     28----------------------------------- 
     29 
    130property ancestor 
    231 
     
    534  return me 
    635end 
    7  
    8 -- you can use the utility handlers from script alexUtilities in this script, as it uses it as ancestor. 
    9  
    10 -- keep in mind, that you are in the scope of the stage, when these hadlers here are called! 
    11 -- so calling a script of this movie "Handlermenu" here is only possible, if you use a "tell" statement 
    12 -- use it like so: tell window(me.pHandlerMenuWindowName) to doSomething 
    13  
    14 ---------------------------------------------- 
    15 -- if you ant to display a status for long calls (like my svn utilities do) 
    16 -- use: 
    17 -- me.mSwitchToStatusMode(1) -- to switch it on 
    18 -- me.mSwitchToStatusMode(0) -- to switch it off 
    19 -- and: 
    20 -- me.mDisplayWaitStatusText(aString) -- to display a status message 
    21 ---------------------------------------------- 
    2236 
    2337-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 
Note: See TracChangeset for help on using the changeset viewer.