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

Changeset 182 for trunk


Ignore:
Timestamp:
06/24/08 05:26:11 (4 years ago)
Author:
alex
Message:

changed all scripts to use only line 1 of member comments for the alex linked scripts path

Location:
trunk/lingosource
Files:
3 edited

Legend:

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

    r180 r182  
    649649     
    650650  else -- option 2: we have NO second member and diff against the file at the path in the member comments (=> alex linked scripts UNIX(!) path) 
    651     comm = memref1.comments 
     651    comm = line 1 of memref1.comments 
    652652     
    653653  end if 
     
    10121012  end if 
    10131013   
    1014   comm = memref.comments 
     1014  comm = line 1 of memref.comments 
    10151015  if comm.length > 0 then 
    10161016     
     
    11281128      if memref.type = #script then 
    11291129        memname = memref.name 
    1130         comm = memref.comments 
     1130        comm = line 1 of memref.comments 
    11311131        if comm.length then 
    11321132           
     
    12961296      if memref.type = #script then 
    12971297        memname = memref.name 
    1298         comm = memref.comments 
     1298        comm = line 1 of memref.comments 
    12991299         
    13001300        if length(comm) < 1 then 
     
    13501350                        put "-------------------------------------------------------" 
    13511351                        put RETURN&"neuer = new(#field)"&RETURN&"neuer.text = "&memref&".scripttext"&RETURN&"neuer.copyToClipBoard()"&RETURN&"neuer.erase()"&RETURN 
    1352                         put RETURN&"shell_cmd("&QUOTE&"PBPaste | BBedit ; BBedit "&memref.comments&QUOTE&")"&RETURN 
     1352                        put RETURN&"shell_cmd("&QUOTE&"PBPaste | BBedit ; BBedit " & line 1 of memref.comments & QUOTE&")"&RETURN 
    13531353                      else 
    13541354                         
     
    13561356                          put "-------------------------------------------------------" 
    13571357                          put RETURN&"neuer = new(#field)"&RETURN&"neuer.text = "&memref&".scripttext"&RETURN&"neuer.copyToClipBoard()"&RETURN&"neuer.erase()"&RETURN 
    1358                           put RETURN&"shell_cmd("&QUOTE&"PBPaste | BBedit ; BBedit "&memref.comments&QUOTE&")"&RETURN 
     1358                          put RETURN&"shell_cmd("&QUOTE&"PBPaste | BBedit ; BBedit " & line 1 of memref.comments &QUOTE&")"&RETURN 
    13591359                           
    13601360                        else 
     
    13651365                          neuer.erase() 
    13661366                           
    1367                           comm = memref.comments 
     1367                          comm = line 1 of memref.comments 
    13681368                          if char 1 of comm = "~" then put "$HOME" into char 1 of comm 
    13691369                           
     
    14501450      if memref.type = #script then 
    14511451        memname = memref.name 
    1452         comm = memref.comments 
     1452        comm = line 1 of memref.comments 
    14531453        if comm.length then 
    14541454          if char 1 of comm = "~" then 
     
    14781478      memref = member(n, cl) 
    14791479      if memref.type = #script then 
    1480         comm = memref.comments 
     1480        comm = line 1 of memref.comments 
    14811481        if length(comm) > 0 then put "Membername:" && memref.name & TAB & "("&comm&")" & Return after str 
    14821482      end if 
  • trunk/lingosource/castlib1/subversion_version_field.txt

    r180 r182  
    1 r181 
     1r184 
  • trunk/lingosource/castlib2/aleXtrasMovieScript.ls

    r163 r182  
    287287      memref = member(m, cl) 
    288288      if memref.type = #script then 
    289         put "Membername:" && memref.name & TAB & "("&memref.comments&")" & Return after str 
     289        put "Membername:" && memref.name & TAB & "(" & line 1 of memref.comments & ")" & Return after str 
    290290      end if 
    291291    end repeat 
     
    335335      if memref.type = #script then 
    336336        memname = memref.name 
    337         comm = memref.comments 
     337        comm = line 1 of memref.comments 
    338338        if comm.length then 
    339339           
Note: See TracChangeset for help on using the changeset viewer.