home *** CD-ROM | disk | FTP | other *** search
/ Invenzioni E Inventori 1: Lavoro E Vita Quotidiana / invenzioni-inventori-1.iso / mac / Invenzio / Mare / SHAREDM.CST / 03106_Script_3106 < prev    next >
Text File  |  1997-09-15  |  2KB  |  69 lines

  1. on corr_curs
  2.   -- corregge la script del cursore del testo
  3.   put "Sostituzione script del cursore di articolo"
  4.   
  5.   set cur to 0
  6.   repeat with x=1 to 10000
  7.     if the type of member x = #bitmap then
  8.       --    set nome to the name of cast x
  9.       set pgm to the scripttext of cast x  
  10.       if x=100 then put pgm
  11.       
  12.       
  13.       if offset("ss > integer((a-64)",pgm)>0 then
  14.         set cur to x
  15.         exit repeat
  16.       end if
  17.     end if
  18.     
  19.   end repeat
  20.   if x> 0 and x<9999 then
  21.     put x
  22.     set the scripttext of member x  to scommenta( the scripttext of member "nuovo_cursore")
  23.     put "OK - sostituzione effettuata al cast ",x  
  24.   else
  25.     put "ATTENZIONE **** cast del cursore di Articolo NON trovato"
  26.   end if
  27.   
  28.   set cur to 0
  29.   repeat with x=1 to 2000
  30.     
  31.     --    set nome to the name of cast x
  32.     if the casttype of cast x = #script    then
  33.       set pgm to the scripttext of cast x     
  34.       if offset("on su ",pgm)>0 or  offset("on su" & return ,pgm)>0 then
  35.         set cur to x
  36.         exit repeat
  37.       end if
  38.     end  if
  39.     
  40.     
  41.     
  42.   end repeat
  43.   if x>0 and x<1999 then 
  44.     set pgm to the scripttext of cast x
  45.     set pgm to ""
  46.     set the scripttext of cast x to pgm
  47.   end if
  48.   
  49.   
  50.   set cur to 0
  51.   repeat with x=1 to 2000
  52.     if the casttype of cast x = #script    then
  53.       set pgm to the scripttext of cast x  
  54.       if offset("on giu ",pgm)>0 or  offset("on giu" & return ,pgm)>0 then
  55.         set cur to x
  56.         exit repeat
  57.       end if
  58.     end if
  59.     
  60.   end repeat
  61.   if x>0 and x<1999 then 
  62.     set pgm to the scripttext of cast x
  63.     set pgm to ""
  64.     set the scripttext of cast x to pgm
  65.   end if
  66.   
  67.   
  68. end
  69.