... The technical side of the equation may be more easily worked with than Apple's attorneys - it seems Apple's license for the iPhone expressly forbids any...
Hi, Not sure if I'm intruding on this one... but Uli had in developement something called SuperC... for making simple externals that run X times faster than SC...
David Flanders
DFlan@...
Oct 3, 2008 1:49 pm
44201
Hi gang, I keep a number in a userProperty and my scripts call it and change it quite often. The number of digits in the number is critical (I need it to have...
... Hi Dave This is a problem I've always had with HC. I doubt that SC handles it any differently - though hopefully someone will prove me wrong :-) Setting...
... get "00000" put n into char 6-len(n) to 5 of it assuming that 1 <= len(n) <= 5 S. __________________ Stéphane Leys http://modulopi.pagesperso-orange.fr ...
Hi George, Yes I remembered numberFormat from the HC days, but as you say, it wouldn't have helped in the present situation. So, I guess SC doesn't have a "set...
Hi Dave, ... Look up 'numberFormat' in the SLG. I use it in my invoice project. I think it may work for you, as it allows you to specify the number of ...
Howdy, I haven't yet D/L'd SC 4.6 because I have to get a FW recorder out of layaway first. Some of my income will depend on it. So, I need to run SC 4.5 for a...
There's no reason not to use numberFormat, if you restore it to what it was. function storePrep tNum put the numberFormat into nF set the numberFormat to...
Hi Ken, Yes I did think about numberFormat, I used to use it in HC. But this isn't for display; I need to record the integer, with correct number of digits,...
... For numberFormat, "display" means any time a number in binary format (as the result of a mathematical operation) is converted into text format, not just...
Hi Ken How did you install it? IIRC you need to use the SC installer and reenter you serial number for it to work. Regards Ian B ... [Non-text portions of this...
Hi Ian, ... Ah! OK, thanks so much! ... If I can find the installer and number ... it should have been migrated with other stuff, but I haven't run across them...
I'm working on a project where I would like the user to be able to hyperlink word on-the-fly as they are editing a field. BUT I would also like to be able to...
Hi Joe, This is the result of a couple of minutes of insomnia so may be way off. No locking of fields required just briefly tested with one field. on openField...
... Thanks, John, but this solution doesn't work for me. I'm getting numbers returned instead of the words. I also have a lot of openField action happening...
... The idea that doing something on idle will slowdown a project is false for the most part, IMHO. Idle means that the computer has got nothing to do and is...
... Well, it works - but not very well. I suspect this is because I have openField and closeField handlers to switch arrowKey behaviour and to activate text...
... It is supposed to work only in an open field, if it isn't, you'll get openfield and not clickinfield, if you want to do it when the field is closed, you...
... PS : Try commenting out those temporarily and test my script alone. If it works, try uncommenting your handlers step by step and see when it breaks. S. ...
... I tested this, it works : on mousedown get clicktext() set locktext of target() to false try go cd it catch set lockmessages to true wait doubleclicktime()...
... This works too, if you want the links to be group text : on mousedown if kind of target()"field" then return "" set locktext of target() to false do "get...
... This one is even better, IMHO (shorter, at least). I removed the mousedown handler which is not essential. I've adopted another behavior. The links are...
Hi John, Thanks for your efforts. I have been working on other stuff but now I'm back on this one. I decided to forget about my own script for now and give...