Re: Scripting a text to binary digits converter

2012-01-02 Thread Jim Ault
is to... put char -8 to -1 of ( tBaseConverted ) into tBaseConverted Jim Ault ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com

Re: Scripting a text to binary digits converter

2012-01-02 Thread Jim Ault
) into tConverted end repeat put the ticks - startTicks into elapsedTicks put elapsedTicks div 60 into elapsedSeconds get elapsedTicks tick count get IT cr elapsedSeconds tick count get IT cr loopCnt/elapsedTicks conversions per tick put IT into msg Jim Ault

Re: LiveCodeServer: redirecting with 'put header'

2011-12-07 Thread Jim Ault
\ titlewidestep/title rrrmeta name='robots' content='all' / rrr \ /head rrrhtmlbody /body/html replace rrr with CR in IT Jim Ault On Dec 7, 2011, at 9:30 PM, Pierre Sahores wrote: Hi, get ?xml version= setquote(1.0) encoding= setquote(UTF-8) ? return

Re: What does 'shadows' mean?

2011-10-10 Thread Jim Ault
being in debugging mode. Hope this helps. Jim Ault ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: iOS and Mac mini and App Store

2011-10-08 Thread Jim Ault
I really appreciate everyone's response to the situation. The young guy decided to buy my Mac mini and go for it. Thanks Colin, Bill, Mark Jim Ault On Oct 8, 2011, at 10:08 AM, Mark Schonewille wrote: Jim, On 8 okt 2011, at 04:25, Jim Ault wrote: I haev a buyer for one of my Mac mini

iOS and Mac mini and App Store

2011-10-07 Thread Jim Ault
. Jim Ault ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: iOS and Mac mini and App Store

2011-10-07 Thread Jim Ault
of the beta test this next week and would not work on a desktop, of course. He is a young guy who is tired of C+ and wants to try LC on a low- cost Mac. Hope all is going well now that Autumn is on the way :-) Thanks for the help. Jim Ault ___ use

Re: how to compare 2 very large textfiles

2011-10-06 Thread Jim Ault
comparisons are unique by their nature, but not all data sets are. Jim Ault ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com

Re: pasting clipboard from Excel

2011-09-13 Thread Jim Ault
( 161, 160 ) --etc This gives each app time to convert the clipboard, especially if it is very large. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: pasting clipboard from Excel

2011-09-13 Thread Jim Ault
destination Hope this works every time for you. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman

Re: Default Button

2011-09-02 Thread Jim Ault
of the older programs did (such as word processor) Caution: this is not my area of expertise, so test thoroughly before confusing your users thoroughly :-) Jim Ault Las Vegas On Sep 2, 2011, at 12:57 AM, FlexibleLearning wrote: 'Default' determines the button's visual appearance

Re: Live LiveCode other tools topics

2011-08-31 Thread Jim Ault
On Aug 31, 2011, at 2:15 PM, Mike Felker wrote: So nothing for this weekend? I thought this was for this weekend. Mike Semantics. I think it is on for Sat Aug 3rd Jim Ault Las Vegas Björnke von Gierke b...@mac.com wrote: cool, so we'll go forward with this for next weekend. Mark

Re: Ask Password and Login Screen

2011-08-18 Thread Jim Ault
The option-8 is not always a bullet. It depends on the font and the high-ascii assignments. It could be as simple as choosing the correct font for the platform you detect. Jim Ault Las Vegas --- On Wed, 8/17/11, Devin Asay devin_a...@byu.edu wrote: From: Devin Asay devin_a...@byu.edu Subject

Re: What to Do Since FTP No Longer Supported in Mac OSX Lion?

2011-08-14 Thread Jim Ault
The mac mini is rack-able Just Google 'mac mini rack mount' and get a tray that holds 4 units thus 4 CPUs on one rack I use this in one of my data centers. http://eshop.macsales.com/item/Macessity/MX4/?utm_source=googleutm_medium=shoppingengineutm_campaign=googlebase Jim Ault Las Vegas

Re: What is the best/fastest way to extract strings of text?

2011-08-02 Thread Jim Ault
-up the extract of any extra returns, using: filter theExtract without empty If (my pre-coffee brain worked) theExtract should contain the tagged strings in theSource. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode

Re: How do I remove part of a path?

2011-08-01 Thread Jim Ault
If you are concered about the current itemDel setting then you could add one line (instead of 3) before the path operation replace / with the itemDel in itemsToParse put the itemDel into old_delimiter set the itemDel to / -- gather some items set the itemDel to old_delimiter Mike On

Re: How do I remove part of a path?

2011-08-01 Thread Jim Ault
itemOffset(public.html, tString) of tString --purges the item replace itemDel with / in tString Jim Ault Las Vegas --- On Mon, 8/1/11, Nonsanity f...@nonsanity.com wrote: From: Nonsanity f...@nonsanity.com Subject: Re: How do I remove part of a path? To: How to use LiveCode use-livecode

Re: How do I remove part of a path?

2011-08-01 Thread Jim Ault
added after 4.0. I don't see it in my dictionary. How does it know when to go back to the old itemDelimiter? Or do you need a second line downstream? Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: pasting text from revbrowser

2011-07-23 Thread Jim Ault
, such as clipboard conversions of text and graphics. Hope this helps. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http

Re: repeat with i=

2011-07-14 Thread Jim Ault
the first pass could choose '2', then the next pass could choose '6' and produce the error item 6 does not exist. My preference would be to do the put 1,2,3,4,5,6 into theNums sort items of theNums numeric by random(100) repeat for each item Y of theNums do some command Y end repeat Jim

Re: repeat with i=

2011-07-14 Thread Jim Ault
into theNumbers repeat until sum(theNumbers) is 0 put any item theNumbers into N if N is not 0 then do something put 0 into item N of theNumbers end if end repeat On 14 Jul 2011, at 08:23, Jim Ault wrote: On Jul 14, 2011, at 12:05 AM, Keith

Re: Rev Customer Databased Hacked?

2011-07-11 Thread Jim Ault
and now my password is 127.5 characters long... OK, I am not that paranoid, but I did make a change for On-Rev (and the On-Rev forums just in case, even though it is a separate entity. No need to have spam hit that server require the moderators to do extra work.) Jim Ault Las Vegas On Jul

Re: color histogram?

2011-07-08 Thread Jim Ault
appreciate Chipp http://runtime-revolution.278305.n4.nabble.com/ANN-quot-Imagedata-Toolkit-2-quot-released-td349536.html Hope this helps. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe

Re: defining and using globals in an application

2011-07-08 Thread Jim Ault
on how my discussion is inaccurate or misinformed. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com

Re: defining and using globals in an application

2011-07-08 Thread Jim Ault
parameters are HANDLER locals and will vanish at the end of this handler end processData Hope this helps you figure it out. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Using linkText

2011-07-07 Thread Jim Ault
to work with repeat until url_OK ask ... error check end repeat end if end closefield Hope this helps Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe

Re: Finding the main stack

2011-07-07 Thread Jim Ault
Is 'the effective filename of this stack' of any use? or the long id of this stack ? Jim Ault Las Vegas On Jul 7, 2011, at 6:12 PM, Pete wrote: Got a slightly convoluted situation where I need to get hold of the main stack for an application. When the app starts up, I issue a start

Re: What is the LiveCode equivalent property for the HTML a title=some hover text parameter?

2011-07-05 Thread Jim Ault
inside a field in either Hypercard, Supercard, Metacard, Rev, or Livecode. If you want text displays that are compliant, the RevBrowser is the tool to use. By the way, i don't recall ever seeing a title=some hover text so it is nice to pick up a new trick :-) Jim Ault Las Vegas

Re: Combobox -- attachments not allowed, but...

2011-07-02 Thread Jim Ault
On Jul 2, 2011, at 5:38 PM, Pete wrote: Is it possible to attach filesto messages to this list? I have a combobox I'd like to share... Pete Haworth You can post to the forum with attachments, and put a link to that post here. http://forums.runrev.com/ Jim Ault

Re: filter?

2011-06-23 Thread Jim Ault
which was the faster, thanks for the reminder. Is that UK or USA gazillion/bazillion? Pete Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Checkbox label

2011-06-23 Thread Jim Ault
to the left of the checkbox instead of the right? I guess same question for radio buttons as well. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: How to structure HTML text (tags and attributes) for processing in LiveCode?

2011-06-12 Thread Jim Ault
can now have line-level chunk expressions mapped to divs and table row tags, together with item-level expressions for iterating through the tags and their attributes within table rows. Nice! Now the rich seams have been revealed, it's time to start digging out them there nuggets! :-) Jim

Re: How to structure HTML text (tags and attributes) for processing in LiveCode?

2011-06-12 Thread Jim Ault
Okay, 4 more that were not on the previous list quot; amp; lt;gt; On Jun 12, 2011, at 4:14 AM, Keith Clarke wrote: I've got the HTML source into a reasonable shape for processing with line and item chunk expressions by using: Jim Ault Las Vegas

Re: How to structure HTML text (tags and attributes) for processing in LiveCode?

2011-06-12 Thread Jim Ault
; into searchStrings repeat for each item STRR in searchStrings replace (word 1 of STRR) with (word 2 of STRR) in htmlBlock end repeat Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: How to structure HTML text (tags and attributes) for processing in LiveCode?

2011-06-12 Thread Jim Ault
rather than add to the confusion. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use

Re: Why No Built in GetMyIP call in LiveCode?

2011-06-11 Thread Jim Ault
blocks, such as html tables. Glad you understood the explanation. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http

Re: Has anyone experimented with memo functions in LC?

2011-06-11 Thread Jim Ault
function concatenate aaa, bbb, ccc, D return aaa Dbbb Dccc D end concatenate end working code Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: find by content with Mac OS

2011-06-10 Thread Jim Ault
don't know the limits for Finder comment lines or chars. Hope this helps Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http

Re: Why No Built in GetMyIP call in LiveCode?

2011-06-10 Thread Jim Ault
a packet to another machine in the LAN, the 10.x address is one of the params, so you could do a 'who am I' to any of the other computers. Just give every computer on the network the ability to respond with that info. One machine could be set with a manual IP and the others dynamic. Jim Ault

Re: Why No Built in GetMyIP call in LiveCode?

2011-06-10 Thread Jim Ault
language where the x stands for extraterrestrial. Jim Ault Las Vegas On Jun 10, 2011, at 4:12 PM, John Patten wrote: I settled on Mark's shell script process to get IP address. I managed to kludge together a case for Linux (Ubuntu Netbook) too. I did not quite understand the matchtext line

Re: Why No Built in GetMyIP call in LiveCode?

2011-06-10 Thread Jim Ault
On Jun 10, 2011, at 7:39 PM, J. Landman Gay wrote: On 6/10/11 8:21 PM, Jim Ault wrote: The () parens are telling the engine to capture any chars that meet the conditions inside and assign them to the first variable specified. In this case, it is 'retVal' If there were a second set

Re: FTP Problem

2011-06-09 Thread Jim Ault
-Folders), if you don't know what file permissions are, then you should not be messing with them on your FTP... =) - Pete, I could not check it out just now since RevOnline was not letting me get connected, but it is up there, i saw it a couple weeks ago. Jim Ault Las

Re: 5000 lines of code

2011-06-09 Thread Jim Ault
meant I could reduce my file size considerably. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman

Re: find by content with Mac OS

2011-06-09 Thread Jim Ault
for expanding the formats, eg. '.php' files The best solution for now is to have an LC script export to a text file all the info you would like to have Spotlight available. Hope this helps Jim Ault Las Vegas ___ use-livecode mailing list use

Re: What's the syntax to check if a local folder exists?

2011-06-07 Thread Jim Ault
Hope this helps someone Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: How do you build the tabs like in the script editor

2011-06-06 Thread Jim Ault
(the menuhistory of me) of the text of me -- you can store the text of the last user action put (the menuhistory of me) into xLastUserChoiceForThisMenu --now you can compare each user repeat of a tab click end mousedown --- Hope this helps. Jim Ault Las Vegas

Re: [ANN] DropTools Palette - Makes using and distributing custom controls a breeze

2011-06-05 Thread Jim Ault
of me q into tCalStack* -- where I don't need the function and uses the same number of chars Hope this helps Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: SubStacks and message path

2011-06-04 Thread Jim Ault
, SOAP stk, then back, then engine The best practice is to keep SOAP in memory rather than close it after executing start using, unless you execute stop using, then close. Otherwise, Livecode will try to keep the stack open in memory, since you said you needed it. Hope this helps Jim Ault

Re: Naive question 666

2011-06-04 Thread Jim Ault
will probably find the answer to your single question and many more (such as how you could automate import from a folder, for example) Hope this helps Jim Ault Las Vegas On Jun 4, 2011, at 6:01 AM, Keith Clarke wrote: Thanks Richmond, but I'm not looking for an example of this working successfully

Re: eBooks and LiveCode

2011-06-01 Thread Jim Ault
of videos on YouTube that you might enjoy. You re correct that interactive book publishing is very hot these days. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Tool tip show graphic

2011-06-01 Thread Jim Ault
/livecode/PublicFree/pg/alienSpheresInsp.php Click on the bar that says Advanced Level Lots of ideas about how to make it work for you. Jim Ault On Jun 1, 2011, at 2:20 PM, stephen barncard wrote: Then stacks are the only other object in Livecode that can live outside the card rect. What

Re: Tool tip show graphic

2011-06-01 Thread Jim Ault
) set the blendlevel of this stack to 40 pass mousedown end mouseDown on mouseLeave set the visible of stack tipToolstack to false end mouseLeave -- end script Jim Ault Las Vegas ___ use-livecode mailing list use-livecode

Re: placing a backGround group on pre-existing cards

2011-05-30 Thread Jim Ault
will lose the data. Eg. place, type Have a good day into a field, remove, then place again = empty field. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: [ANN] GET INSPIRED to do more with Livecode

2011-05-28 Thread Jim Ault
glad to hear. What questions do you have? On May 28, 2011, at 4:17 PM, Andrew Kluthe wrote: I am intrigued. :) Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

[ANN] GET INSPIRED to do more with Livecode

2011-05-27 Thread Jim Ault
://CoolSecretsRevealed.com/livecode for information, details, privacy policy, and more. Jim Ault Inspriation equals better code and fabulous programs Come see web pages that are refreshingly clean, simple and to the point Take a look at great livecode stacks like you have never seen them before

Re: How to replace just the first found space with tab for all lines in a variable?

2011-05-25 Thread Jim Ault
the number of chars in newList into prevNum replace (cr tab cr) with ( cr cr) in newList end repeat ;put newList -- and purge empty if desired filter newList without empty ;put newList end mouseup --- end copy code --- Hope this helps. Jim Ault Las Vegas

Re: How to replace just the first found space with tab for all lines in a variable?

2011-05-25 Thread Jim Ault
into prevNum replace (cr T cr) with ( cr cr) in newList end repeat ;put newList filter newList without empty ;put newList Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: Syntax to increment variable names in repeat loop

2011-05-24 Thread Jim Ault
advantage to custom props is they can be stored in the stack file. This is good for bulding things like a list of path names and ftp site URLs that need to be kept with the stack and are not part of user data or preferences. Hope this helps Jim Ault Las Vegas

Re: Extracting data grid get column data

2011-05-21 Thread Jim Ault
Subject: Re: Extracting data grid get column data ...actually, the iterative approach seems fast enough... put the keys of tArray into tRows repeat for each line tRow in tRows put return tArray[tRow][name] after tNames filter tNames without empty end repeat Jim Ault Las Vegas

Re: How to preserving XML tag string formats in variables?

2011-05-21 Thread Jim Ault
directly -- however, the data is stored nicely and can be retrieved or put the customproperties of this stack into stringsArray combine stringsArray using cr and tab --no longer an array filter stringsArray with *album* Jim Ault Las Vegas On May 21, 2011, at 8:59 AM, Keith Clarke wrote

Re: [OT] fon.nu feature set is getting famous

2011-05-15 Thread Jim Ault
and more and added more features to it. snip check out the enhancement request at: http://code.google.com/p/yourls/issues/detail?id=798can=1q=fon.nu Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: {ANN} InfoWallet 1.3.14 Released

2011-05-15 Thread Jim Ault
your important life information with you, accessible, and secure. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http

Re: XMLAndArray library ConvertXMLToArray() function - prep.

2011-05-14 Thread Jim Ault
inspect the text block in something like BBEdit so you can see any odd chars? Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http

Re: Menu Buttons

2011-05-10 Thread Jim Ault
in the decision tree is to assume it is a literal string. To be consistent and reliable, a programmer should always insure a literal string is used and arrives as the exact equivalent desired, including spaces and commas. Hope this helps. Jim Ault Las Vegas

Re: XML to array - what are the options?

2011-05-08 Thread Jim Ault
said that his lib was not faster than the Rev XML, but had some better features. The few times I did any work with parsing XML boiled down to text chunking rather than using an XML lib. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode

Re: Can Message Box retain messages?

2011-05-07 Thread Jim Ault
field I keep in a toolbox stack. Craig Newman Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman

Re: Hide group on click

2011-05-06 Thread Jim Ault
has lockText ON, autoHilite OFF and traversalOn OFF. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com

Re: CustomProperties

2011-05-05 Thread Jim Ault
for my cold driven forgetfulness. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use

Re: Staying on a field

2011-05-05 Thread Jim Ault
. On May 5, 2011, at 8:23 PM, Bill Vlahos wrote: Jim, How do I test for the dialog condition? I don't see anything in the dictionary for it. Funny thing is I always get the answer dialog after I go to the new card even though it should execute it first. Jim Ault Las Vegas

Re: Staying on a field

2011-05-04 Thread Jim Ault
. If the closeField message comes as a result of going to another card then I get the dialog but it still goes to the new card anyway so the dialog doesn't really work if the user wants to try it again. Jim Ault Las Vegas ___ use-livecode

Re: Staying on a field

2011-05-04 Thread Jim Ault
since I've spent several hours writing code to try to validate a date based on the user's system settings and I've never seen mention of this anywhere Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: Find restricted to the current card?

2011-05-01 Thread Jim Ault
?) In short, restrict the search to the current card. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com

Re: lopping through controls in a group

2011-04-24 Thread Jim Ault
for the number of controls livecode and you will see several hits on runrev.com and for older info the number of controls revolution and you will get email list archives ..and be sure to include the quotes in order to look for the whole string Jim Ault Las Vegas

Re: arrived at the conference hotel

2011-04-24 Thread Jim Ault
on Tuesday. If they contain 3 sweaters and a long pair of pants, Andre will *buy* them back from you. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: At the airport, NeXT stop usa

2011-04-23 Thread Jim Ault
On Apr 23, 2011, at 3:34 PM, Richard Gaskin wrote: andre wrote: Hey Folks, I am at Rio de Janeiro International Airport waiting for boarding. See you all soon!!! Safe travels, and I hope you brushed up on your Spanish. ;) -- Richard Gaskin Yes, like pronouncing San Jose. Jim Ault Las

Re: Live LiveCode event #16 (Wrapup)

2011-04-22 Thread Jim Ault
The short answer is yes, and I replied off list, so you should have it by now. On Apr 22, 2011, at 8:28 AM, Mark Smith wrote: Hi Jim, great video. Are there more of these sessions archived online? Thanks -- Mark Jim Ault Las Vegas ___ use

Re: [ANN] HUD Panel Factory

2011-04-22 Thread Jim Ault
Thanks for sharing this. Great work. On Apr 22, 2011, at 6:11 AM, René Micout wrote: Hello everybody, I have uploaded [Rev Online] version 1.1 of the HUD Panel Factory for Mac OS X ans iOS (Hello Thomas !). Jim Ault Las Vegas ___ use

Re: Data-Entry in a LiveCode form using the tab key

2011-04-17 Thread Jim Ault
in the current field, or any other field, or preferences chosen by the user. ... thus you will have smart tabbing. There are some trickier ways of programming this, but simpler is usually better. Jim Ault Las Vegas -Original Message- From: EDWARD DENES cat...@optonline.net To: use

Re: iRev Form Question

2011-04-14 Thread Jim Ault
OPTION value=?rev put tSal ??rev put tSal ?/OPTION Hope this works for you. At least this should get you close to the correct solution. (not tested, but it looks OK ) Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: Help

2011-04-14 Thread Jim Ault
3.456 div 2.6 = 1 On Apr 14, 2011, at 2:00 PM, Joe Lewis Wilkins wrote: A real Senior moment: wracking my brains for something I've done many, many times - how do I get the whole number from a division? I've searched both the manual and the dictionary. Jim Ault Las Vegas

Re: revCopyFile slow?

2011-04-10 Thread Jim Ault
writing process is slower. Jim Ault Las Vegas On 10 apr 2011, at 14:14, Maarten Koopmans wrote: Really? Ever benchmarked open, read, write on files? How slow are they? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: Code Documentation

2011-04-02 Thread Jim Ault
in your case may simply be a corrupted download. Hope this helps. Jim Ault Las Vegas On Apr 2, 2011, at 11:03 AM, Pete wrote: Hi Stewart, I downloaded your stack but having problems getting it to work. I select a stack file then I get the beach ball cursor (not even spinning) and nothing

Re: Bark Dark

2011-04-01 Thread Jim Ault
and save stack else return -- kill this message end if end setProp Bob On Mar 31, 2011, at 5:23 PM, Jim Ault wrote: On Mar 31, 2011, at 3:29 PM, Bob Sneidar wrote: I don't think the property thing will work because I don't think you can find a card with a property or enumerate

Re: novice question re marked and customkeys

2011-04-01 Thread Jim Ault
mean the same thing, no matter if cards are sorted, deleted, added. Jim Ault Las Vegas On Mar 31, 2011, at 10:39 PM, Timothy Miller wrote: Bob's experience, quoted below, seems odd. I don't think this is normal LC behavior. Something has gone wrong, it seems. I might have missed a reply

Re: Bark Dark

2011-03-31 Thread Jim Ault
Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: novice question re marked and customkeys

2011-03-31 Thread Jim Ault
an idea or two that might be easier than learning SQL, etc. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http

Re: Is HTML text string within current scrolling visible area of browser window?

2011-03-27 Thread Jim Ault
remember exactly where it is. If you need more info, I could try to find it. Let me know. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Is HTML text string within current scrolling visible area of browser window?

2011-03-27 Thread Jim Ault
be able to see the entire discussion before being limited to a preview. Let me know if you have problems) Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Is HTML text string within current scrolling visible area of browser window?

2011-03-27 Thread Jim Ault
are 'in view' rather than do a lot of calc/compare steps on larger elements that can be dynamic. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Control ID problem - even stranger

2011-03-25 Thread Jim Ault
will delete all these substacks and start over to see if I still get the same issues. This is a test stack so not that many controls on them. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: On-Rev file path

2011-03-22 Thread Jim Ault
advanced web server techniques to get this to happen. This is not the ordinary web server setup. You should use your file manager access or ftp:login:password access to move or copy the file to a working location. Hope this helps. Jim Ault Las Vegas

Re: Efficiency question for list modification

2011-03-10 Thread Jim Ault
Of course, using a faster processor would give faster results. What would be the speed difference if the data block was sent to an irev script and run on a faster processor? Jim Ault Las Vegas On Mar 10, 2011, at 12:07 PM, Alex Tweedly wrote: use repeat for each line L ... and collect

Re: A curious case

2011-03-03 Thread Jim Ault
, but it's mine.] ~ Chris Innanen ~ Nonsanity Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo

Re: Creating a scrollview with Livecode

2011-03-02 Thread Jim Ault
On Mar 2, 2011, at 1:14 PM, Eric Peyron wrote: Thanks Jim! I just copied the code, cleaned it up a little, tweaked it and it works! The code was offered by Scott Rossi, one of the LC gurus. Perhaps in the future, but I haven't done any work with iOS and mobile devices. Jim Ault Las

Re: A curious case

2011-03-02 Thread Jim Ault
into newFontColor end switch set the textcolor of fld 1 to newFontColor Hope this gives you many ideas. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: A curious case (fixed typo)

2011-03-02 Thread Jim Ault
was: case (testValue is among the words IN pink coral azure maize) should be: case (testValue is among the words pink coral azure maize) On Mar 2, 2011, at 5:03 PM, Jim Ault wrote: On Mar 2, 2011, at 3:19 PM, Peter Haworth wrote: Switch is definitley very handy but I wish

Re: Answer and Ask Dialogs

2011-03-01 Thread Jim Ault
. Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Creating a scrollview with Livecode

2011-03-01 Thread Jim Ault
to the same stack will add any of the groups so marked. You can 'place' or 'remove' any groups from any card. Groups are part of the stack and don't have to appear on any of the cards. Hope this helps. Jim Ault Las Vegas ___ use-livecode mailing list use

Re: The group command

2011-02-20 Thread Jim Ault
button 4, card 18 when using last card, first card .. the id of the cards can change if the cards are sorted into a different order. Groups are not really intuitive, so you should give a little more detail about your steps that fail so we can give a better answer. Hope this helps. Jim

Re: Saving datagrids

2011-02-18 Thread Jim Ault
and saving that file, yet not saving any modifications to the app (such as Excel or TextEdit) Jim Ault Las Vegas ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

  1   2   >