Changeset 178
- Timestamp:
- 06/06/08 12:41:29 (4 years ago)
- Location:
- trunk/lingosource
- Files:
-
- 9 edited
-
castlib1/helptext.html (modified) (1 diff)
-
castlib1/memberInfo.xml (modified) (1 diff)
-
castlib1/menu1_button.html (modified) (1 diff)
-
castlib1/menu2_button.html (modified) (1 diff)
-
castlib1/statusOutput.html (modified) (1 diff)
-
castlib1/subversion_version_field.txt (modified) (1 diff)
-
castlib1/svn_Utilities.ls (modified) (6 diffs)
-
castlib2/GetSetPrefs.ls (modified) (3 diffs)
-
castlib2/commonMovieScript.ls (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lingosource/castlib1/helptext.html
r175 r178 5 5 <body bgcolor="#FFFFFF"> 6 6 <br> 7 <font face="Arial , Helvetica" size=4><b>Handler Menu</font></b><font size=3> by Alex da Franca -- </font><a href="mailto:alex@farbflash.de"><font color="#000096"><u>alex@farbflash.de<p>7 <font face="Arial" size=4><b>Handler Menu</font></b><font size=3> by Alex da Franca -- </font><a href="mailto:alex@farbflash.de"><font color="#000096"><u>alex@farbflash.de<p> 8 8 </a></font></u><font color="#000000">Quickly <b>execute handlers</b> which are found in the <b>currently open stage movie</b> from this menu.<br> 9 9 Holding the <b>Option/Alt</b> key pressed, while selecting a menu item <b>opens the script</b> and highlights the handler in the editor instead of executing the handler.<br> -
trunk/lingosource/castlib1/memberInfo.xml
r171 r178 135 135 <subversion_version_field> 136 136 <scriptType>#field</scriptType> 137 <comments>http://www.farbflash.de/cgi-bin/versionChecker.pl?movieName=HandlerMenu_OSC ?movieName=HandlerMenu_OSC</comments>137 <comments>http://www.farbflash.de/cgi-bin/versionChecker.pl?movieName=HandlerMenu_OSC</comments> 138 138 <memberName>subversion_version_field</memberName> 139 139 <fname>subversion_version_field</fname> -
trunk/lingosource/castlib1/menu1_button.html
r175 r178 4 4 </head> 5 5 <body bgcolor="#FFFFFF"> 6 <font face="Arial , Helvetica" size=4 color="#141414">Utilities</font></body>6 <font face="Arial" size=4 color="#141414">Utilities</font></body> 7 7 </html> -
trunk/lingosource/castlib1/menu2_button.html
r175 r178 4 4 </head> 5 5 <body bgcolor="#FFFFFF"> 6 <font face="Arial , Helvetica" size=4 color="#141414">Handlers</font></body>6 <font face="Arial" size=4 color="#141414">Handlers</font></body> 7 7 </html> -
trunk/lingosource/castlib1/statusOutput.html
r175 r178 4 4 </head> 5 5 <body bgcolor="#FFFFFF"> 6 <font face="Arial , Helvetica">The following operation may take some time...</font></body>6 <font face="Arial">The following operation may take some time...</font></body> 7 7 </html> -
trunk/lingosource/castlib1/subversion_version_field.txt
r173 r178 1 r1 741 r180 -
trunk/lingosource/castlib1/svn_Utilities.ls
r173 r178 472 472 on mExportAllScriptsToDiskWithFolder me, skipIcons, selectionOnly, convertLineBreaksToUnix, theFolder, chooseNewPath 473 473 474 474 475 theFolder = string(theFolder) 475 476 if length(theFolder) < 1 then … … 528 529 529 530 530 531 532 531 isMac = (the platform contains "mac") -- we need the differentiation because of the dreaded 31 char limit 533 532 … … 572 571 573 572 memtype = memref.type 573 574 575 convertLineBreaksToUnixT = 0 574 576 575 577 -- if [#script].getPos(memtype) > 0 then … … 592 594 ext = ".html" 593 595 scrText = memref.html 594 convertLineBreaksToUnix = 0596 convertLineBreaksToUnixT = 0 595 597 scrtype = #text 596 598 ----------------------- … … 684 686 685 687 if convertLineBreaksToUnix = 1 then 686 687 if mCheckForXtra(me, "Pregex") = 1 then 688 689 scrTextLi = [scrText] 690 pregex_replace(scrTextLi, "\x0D\x0A?", "g", "\x0A") 691 scrText = scrTextLi[1] 692 693 else 694 695 fndStr = numToChar(13) & numToChar(10) 696 offs = offset(fndStr, scrText) 697 repeat while offs > 0 698 delete char offs of scrText 688 if convertLineBreaksToUnixT <> 1 then 689 if mCheckForXtra(me, "Pregex") = 1 then 690 691 scrTextLi = [scrText] 692 pregex_replace(scrTextLi, "\x0D\x0A?", "g", "\x0A") 693 scrText = scrTextLi[1] 694 695 else 696 697 fndStr = numToChar(13) & numToChar(10) 699 698 offs = offset(fndStr, scrText) 700 end repeat701 702 fndStr = numToChar(13)703 offs = offset(fndStr, scrText)704 repeat while offs > 0705 put numToChar(10) into char offs of scrText699 repeat while offs > 0 700 delete char offs of scrText 701 offs = offset(fndStr, scrText) 702 end repeat 703 704 fndStr = numToChar(13) 706 705 offs = offset(fndStr, scrText) 707 end repeat 708 706 repeat while offs > 0 707 put numToChar(10) into char offs of scrText 708 offs = offset(fndStr, scrText) 709 end repeat 710 end if 709 711 end if 710 712 end if 711 713 ----------------------------------------- 712 713 714 714 715 if theDefaultName <> origname then … … 727 728 noChanges = (mRemoveWhiteSpaces(me, scrText&"") = mRemoveWhiteSpaces(me, alterText&"")) 728 729 730 729 731 if noChanges = 0 then 730 732 731 732 733 mSaveToTextFile me, scrText, thisFolder & theDefaultName & ext 733 734 734 735 735 bmexp = 0 -
trunk/lingosource/castlib2/GetSetPrefs.ls
r175 r178 184 184 else 185 185 olddelim = the itemdelimiter 186 the itemdelimiter = " ¿"186 the itemdelimiter = "À" 187 187 188 188 anz = prefsText.line.count … … 335 335 repeat with n = 1 to anz 336 336 337 if objectP(prefliste) then prefStr = string(prefliste.getPropAt(n))&" ¿"337 if objectP(prefliste) then prefStr = string(prefliste.getPropAt(n))&"À" 338 338 339 339 dieserWert = prefliste[n] … … 342 342 343 343 repeat with m = 1 to count(dieserWert) 344 put dieserWert[m]&" ¿" after prefStr344 put dieserWert[m]&"À" after prefStr 345 345 end repeat 346 346 347 347 else 348 put prefliste[n]&" ¿" after prefStr348 put prefliste[n]&"À" after prefStr 349 349 end if 350 350 -
trunk/lingosource/castlib2/commonMovieScript.ls
r175 r178 387 387 -- ACTION: Create/Get timeout object 388 388 -- This handler works the same with the old player <10 and the new player >=10 389 -- INPUT: || theName || string || name for new timeout object||390 -- || theDuration || integer || timeout perios in milliseconds||389 -- INPUT: ||ÊtheName || string || name for new timeout object|| 390 -- ||ÊtheDuration || integer || timeout perios in milliseconds|| 391 391 -- || theHandler || symbol || handler to be called on each timepout event|| 392 392 -- || theTarget || object || object to be sent the timeout event <theHandler>|| … … 1916 1916 end if 1917 1917 1918 -- pUPPERCASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZZÁÀ"&vA& "ÄÃÅÇÉÈÊËÍÌÎÏÑÓÒÔÖÕÚÙÜÆØ" 1919 -- pLowercase = "abcdefghijklmnopqrstuvwxyzáà"&"â"&"äãåçéèêëíìîïñóòôöõúùûüæøÿ" 1920 pCaseLists.setaprop(#uppercase, ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "Á", "À", vA, "A", "Ä", "Ã", "Å", "Ç", "É", "È", "Ê", "Ë", "Í", "Ì", "Î", "Ï", "Ñ", "Ó", "Ò", "Ô", "Ö", "Õ", "Ú", "Ù", "U", "Ü", "Æ", "Ø", "", ""]) 1921 pCaseLists.setaprop(#lowercase, ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "á", "à", vA, "â", "ä", "ã", "å", "ç", "é", "è", "ê", "ë", "í", "ì", "î", "ï", "ñ", "ó", "ò", "ô", "ö", "õ", "ú", "ù", "û", "ü", "æ", "ø", "", "ÿ"]) 1918 -- pUPPERCASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZZçË"&vA& "Ìéæèêíëìîñï 1919 ÍòôÛ®¯ÎÙ" 1920 -- pLowercase = "abcdefghijklmnopqrstuvwxyz"&""&"Ÿ¿ÏØ" 1921 pCaseLists.setaprop(#uppercase, ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "ç", "Ë", vA, "A", "", "Ì", "", "", "", "é", "æ", "è", "ê", "í", "ë", "ì", "", "î", "ñ", "ï", " 1922 ", "Í", "ò", "ô", "U", "", "®", "¯", "Î", "Ù"]) 1923 pCaseLists.setaprop(#lowercase, ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "", "", vA, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Ÿ", "¿", "Ï", "Ø"]) 1922 1924 1923 1925 end … … 1937 1939 li = ["Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag","Sonntag"] 1938 1940 "pt": 1939 li = ["Segunda-feira","Ter ça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado","Domingo"]1941 li = ["Segunda-feira","Tera-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sbado","Domingo"] 1940 1942 "fr": 1941 1943 li = ["Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi","Dimanche"] 1942 1944 "es": 1943 li = ["Lunes","Martes","Mi ércoles","Jueves","Viernes","Sábado","Domingo"]1945 li = ["Lunes","Martes","Mircoles","Jueves","Viernes","Sbado","Domingo"] 1944 1946 "it": 1945 li = ["Luned ì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato","Domenica"]1947 li = ["Luned","Marted","Mercoled","Gioved","Venerd","Sabato","Domenica"] 1946 1948 "nl": 1947 1949 li = ["Maandag","Dinsdag","Woensdag","Donderdag","Vrijdag","Zaterdag","Zondag"]
Note: See TracChangeset
for help on using the changeset viewer.
