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

Changeset 88


Ignore:
Timestamp:
10/04/11 15:21:08 (8 months ago)
Author:
alex
Message:

removed regisx warning

Location:
trunk/lingosource/castlib1
Files:
2 edited

Legend:

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

    r71 r88  
    159159  if voidP(pGList) then 
    160160    pGList = [:] 
    161     scr = mGetXScript(#regisx) 
     161    scr = mGetXScript(#regisx, true) 
    162162    if not listP(scr) then 
    163163      if mCheckForXtra(me, "BudAPI") = 1 then call(#regisb, scr) 
  • trunk/lingosource/castlib1/st_movie_aleXtrasMovieScript.txt

    r61 r88  
    7777-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 
    7878 
    79 on xscr scrName 
     79on xscr scrName, bool_failSilentlyInAuthoring 
    8080  ----------------------------------- 
    8181  --         CREATED: 11.02.2008 
     
    8888  ----------------------------------- 
    8989   
    90   return mGetXScript(scrName) 
    91 end 
    92  
    93 -- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 
    94  
    95 on mGetXScript scrName 
     90  return mGetXScript(scrName, bool_failSilentlyInAuthoring) 
     91end 
     92 
     93-- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 
     94 
     95on mGetXScript scrName, bool_failSilentlyInAuthoring 
    9696  ----------------------------------- 
    9797  --         CREATED: 11.02.2008 
     
    113113  if ilk(inst) <> #instance then 
    114114    if the runmode contains "aut" then 
     115      if bool_failSilentlyInAuthoring <> 1 then 
    115116      put "Script" && QUOTE & str_scrName & QUOTE && "is missing! This may cause unwanted behavior" 
     117    end if 
    116118    end if 
    117119      inst = [] 
Note: See TracChangeset for help on using the changeset viewer.