iOS keyboard input and rawKeyUp

2012-03-12 Thread Ludovic Thébault
Hello, When we tape a text in a field with the iOS keyboard, the rawKeyUp doesn't catch anything. How get the text typed to do a live filtering ? Thanks. LC 5.02 ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subs

Re: iOS keyboard input and rawKeyUp

2012-03-12 Thread Ludovic Thébault
Le 12 mars 2012 à 09:58, Ludovic Thébault a écrit : > Hello, > > When we tape a text in a field with the iOS keyboard, the rawKeyUp doesn't > catch anything. > How get the text typed to do a live filtering ? > > Thanks. > Forget, it's work ! ___

Datagrids on differents cards are loosing with DatagridHelper created custom objects(iosPickWheel)

2012-03-12 Thread Matthias Rebbe
Hi, i have here a stack with 2 cards. On each card are several fields (added with mobGuid) and 1 datagid, which was customized with DataGridHelper. In the DataGrid on card 1 there are 2 columns with an iOSPickwheel. If i now add iOS Pickwheels to 2 columns of the DataGrid on card 2 then the cus

Re: Sqlite and performances in LiveCode

2012-03-12 Thread Trevor DeVore
On Thu, Mar 8, 2012 at 2:47 PM, Jérôme Rosat wrote: > Trevor, yes I'm going to try. > > But I think it would be a good idea if you could change your stack in the > lesson "Displaying Large Amounts of Data" to demonstrate the performance of > LiveCode. > I've updated the stack to use the new tech

What is wrong with this ?

2012-03-12 Thread John Dixon
Hi... On a mac this works without a problem... simple stack, one button and one field... on mouseUp put "https://gg.com/racing"; into raceListURL put URL raceListURL into fld 1 end mouseUp It will not work for me under Win XP from boot camp... Can anyone tell me why ? Dixie

Re: What is wrong with this ?

2012-03-12 Thread Ken Corey
On 12/03/2012 15:38, John Dixon wrote: on mouseUp put"https://gg.com/racing"; into raceListURL put URL raceListURL into fld 1 end mouseUp It will not work for me under Win XP from boot camp... Can anyone tell me why ? It's not a help, but as a negative data point it seems to work for

RE: What is wrong with this ?

2012-03-12 Thread John Dixon
Oh Shit !... Thanks Ken...:-) > Date: Mon, 12 Mar 2012 15:54:57 + > From: k...@kencorey.com > To: use-livecode@lists.runrev.com > Subject: Re: What is wrong with this ? > > On 12/03/2012 15:38, John Dixon wrote: > > on mouseUp > > put"https://gg.com/racing"; into raceListURL > > pu

Re: What is wrong with this ?

2012-03-12 Thread Warren Samples
On 03/12/2012 10:54 AM, Ken Corey wrote: On 12/03/2012 15:38, John Dixon wrote: on mouseUp put"https://gg.com/racing"; into raceListURL put URL raceListURL into fld 1 end mouseUp It will not work for me under Win XP from boot camp... Can anyone tell me why ? It's not a help, but as a

Re: What is wrong with this ?

2012-03-12 Thread Dar Scott
Check with a browser, first, and see if that works. If not, I'm guessing network settings on the Win XP. You can jot down the OS X TCP/IP settings and then set them up on XP. Otherwise, check and see if you can do this with some HTTP connection, not HTTPS, If this works with HTTP If this

Re: Passing parameters by reference

2012-03-12 Thread Pete
Hi Dick, Thanks again for this tip. I ended up using it to solve my problem by passing the whole array variable along with an optional second parameter which is a list of comma-separated key values. The function turns the key values list into an array then uses it to access the data array. If th

RE: What is wrong with this ?

2012-03-12 Thread John Dixon
Warren thanks for the reply... Dar... it works in a browser on XP with no problem. http URL's work in the script, just not with https... This is running from within the IDE and using liveCode 5.0.2 Dixie > Check with a browser, first, and see if that works. > > If not, I'm guessing network se

Re: What is wrong with this ?

2012-03-12 Thread Klaus on-rev
Hi John, Am 12.03.2012 um 18:30 schrieb John Dixon: > > Warren thanks for the reply... > Dar... it works in a browser on XP with no problem. > http URL's work in the script, just not with https... > This is running from within the IDE and using liveCode 5.0.2 > > Dixie Try this: on mouseUp

RE: What is wrong with this ?

2012-03-12 Thread John Dixon
Klaus... 'Magic'... worked like a charm, I thank you...:-) It does however beg the question as to why this is undocumented ? Dixie > Subject: Re: What is wrong with this ? > From: kl...@major.on-rev.com > Date: Mon, 12 Mar 2012 18:34:00 +0100 > To: use-livecode@lists.runrev.com > > Hi John, >

Re: What is wrong with this ?

2012-03-12 Thread Klaus on-rev
Hi John, Am 12.03.2012 um 18:38 schrieb John Dixon: > Klaus... > 'Magic'... worked like a charm, I thank you...:-) Yep, this also saved my life a couple of times :-) > It does however beg the question as to why this is undocumented ? I do not have the slightest idea! > Dixie >> Try this: >>

Re: What is wrong with this ?

2012-03-12 Thread Ken Corey
On 12/03/2012 17:34, Klaus on-rev wrote: ## An unfortunately undocumented "feature": libUrlSetSSLVerification false Uh...doesn't that turn off SSL certificate validation? As in: "we don't really know if we're talking to the people we think we are"? I once saw a beginner write a c p

Re: Passing parameters by reference

2012-03-12 Thread Mark Wieder
Pete- Monday, March 12, 2012, 10:19:14 AM, you wrote: > I'm wondering how you found about about this key values array feature? I > can't find any mention of it in the dictionary or the reference manual and > it sure seems like something that should be known! Dick is well known as the master of

Re: Passing parameters by reference

2012-03-12 Thread Pete
I guess you might say Dick is array of sunshine in this dark world of LC we live in? Pete On Mon, Mar 12, 2012 at 11:12 AM, Mark Wieder wrote: > Pete- > > Monday, March 12, 2012, 10:19:14 AM, you wrote: > > > I'm wondering how you found about about this key values array feature? I > > can't find

Re: Apple iPad announcement evokes yawn

2012-03-12 Thread Bob Sneidar
Aren't we all lazy developers here? ;-) Bob On Mar 10, 2012, at 10:41 AM, Richard Gaskin wrote: > Andre Garzia wrote: >> I've heard that Google is dealing with that by shipping a new Android >> Emulator in the SDK. This new emulator will randomize the rect of the >> device upon every launch wit

Re: What is wrong with this ?

2012-03-12 Thread Warren Samples
On 03/12/2012 12:38 PM, John Dixon wrote: It does however beg the question as to why this is undocumented ? And also the question 'why is there a problem there, but not here?' Warren ___ use-livecode mailing list use-livecode@lists.runrev.com Pleas

Re: Passing parameters by reference

2012-03-12 Thread Dick Kriesel
On Mar 12, 2012, at 10:19 AM, Pete wrote: > I'm wondering how you found about about this key values array feature? I > can't find any mention of it in the dictionary or the reference manual and > it sure seems like something that should be known! I found it while looking through bug reports for

Re: Passing parameters by reference

2012-03-12 Thread Dick Kriesel
On Mar 12, 2012, at 11:12 AM, Mark Wieder wrote: > Dick is well known as the master of arrays. I've learned to just > accept his advice without questioning. I didn't know that! But, I make so many misteaks that I have to recomend that you resume questoining. -- Dick ___

Exporting a snapshot directly to Preview

2012-03-12 Thread Jim Hurley
Is it possible to export a snapshot so that it opens directly in Preview? (Where it might be printed.) What would be the comparable image viewer in Windows? (Where it might be printed.) Thanks, Jim Hurley ___ use-livecode mailing list use-livecode@

Re: HELP! - Linefeeds and Mac Vs Windows

2012-03-12 Thread Robert Brenstein
On 11.03.2012 at 20:09 Uhr -0700 RevList apparently wrote: Thanks for the suggestions. In fact, I use Notepad Plus and it was opening the original one saved by using file: and it looked fine. Perl just didn't like it. I switched now to binfile: to save the file and NotePad still sucks, but

Re: Exporting a snapshot directly to Preview

2012-03-12 Thread Colin Holgate
This seems to work: export snapshot from rect the rect of this stack to file "testimage.jpg" as JPEG launch document "testimage.jpg" ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Exporting a snapshot directly to Preview

2012-03-12 Thread Scott Rossi
Hi Jim: Here's an example for OS X: on mouseUp put specialFolderPath("desktop") & "/exported.png" into theFilePath export snapshot from img 1 to file theFilePath as PNG launch theFilePath with "/Applications/Preview.app" end mouseUp You can choose whatever image format you need, and you

Slightly OT - LC in Keynote ?

2012-03-12 Thread Bob Earp
I have a requirement to add a very simple LC project (with it's interaction/functionality) into a Keynote presentation, similar to how you can add a Flash movie into PowerPoint. Has anybody done this or know how to ? Thanks, Bob... Bob Earp White Rock, British Columbia. _

Re: Datagrids on differents cards are loosing with DatagridHelper created custom objects(iosPickWheel)

2012-03-12 Thread zryip theSlug
Hi Matthias, Basically, if the datagrids have different templates and the changes have been saved by using the "Apply" button, I do not see any reason for you to have this behavior. For more investigations, I replied to you off-list with some questions. On Mon, Mar 12, 2012 at 1:43 PM, Matthias

Re: What is wrong with this ?

2012-03-12 Thread Bob Sneidar
I don't think it's intentional, just fell through the cracks is my guess. Bob On Mar 12, 2012, at 10:38 AM, John Dixon wrote: > > Klaus... > > 'Magic'... worked like a charm, I thank you...:-) > It does however beg the question as to why this is undocumented ? > > Dixie > >> Subject: Re: W

Re: Passing parameters by reference

2012-03-12 Thread Dick Kriesel
On Mar 12, 2012, at 11:41 AM, Pete wrote: > I guess you might say Dick is array of sunshine in this dark world of LC we > live in? Oh, for Pete's sake! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsu

Externals

2012-03-12 Thread Pete
The Reference Manual includes a link to get the externals developer kit and also a couple of links to tutorials for writing externals. None of them work (error 404's). Can someone point me to where I can get the kit and review the tutorials? Thanks, -- Pete Molly's Revenge

Re: What is wrong with this ?

2012-03-12 Thread Bob Sneidar
Reminds me of a recent situation I had with with network equipment. We couldn't get the new Mesh Wireless to work properly on our very large network. People were blaming the network, and suggesting we needed to isolate everything with routers and whatnot. I told them that is a lot like the farme

Re: Passing parameters by reference

2012-03-12 Thread Bob Sneidar
Just weighing in here, that would be a bit confusing. Passing by reference means that the command or function has access to the variable passed to it. By passing what amounts to a statement, there is nothing for LC to manipulate on the other end. Statements have to have some place to put the res

Re: Externals

2012-03-12 Thread François Chaplais
try http://www.runrev.com/newsletter/november/issue13/newsletter5.php and http://www.runrev.com/newsletter/november/issue14/newsletter3.php Best regards, François Le 12 mars 2012 à 22:53, Pete a écrit : > The Reference Manual includes a link to get the externals developer kit and > also a

Re: Slightly OT - LC in Keynote ?

2012-03-12 Thread Bob Sneidar
I have not heard that you can imbed an LC app into a PowerPoint presentation. Can you embed other apps in a PowerPoint presentation? LC is not a player, it's a runtime app. I suspect that if PowerPoint accepts file links, you could create a link that launched the LC app as a standalone, but then

Re: Slightly OC - LC in Keynote ?

2012-03-12 Thread Kee Nethery
I believe QuitTime has the ability to record your screen into a video and if you do the LiveCode app demo and record it you could have that video in KeyNote. Plus, you could ship it to other folks and they could see it also. Kee Nethery On Mar 12, 2012, at 2:29 PM, Bob Earp wrote: > I have a

Re: Sqlite and performances in LiveCode

2012-03-12 Thread Pete
Hi Trevor, Thanks for making that change. I've been following up a bit more on the behavior of GetDataForLine being called in repeated cycles for the number of lines in the datagrid. As a reminder, the datagrid has 11 visible lines, GetDataForLine gets called once for lines 1-12, then a second ti

Re: Sqlite and performances in LiveCode

2012-03-12 Thread Pete
Correction of type! Both instances of 1-2 should read 1-12, sorry. Pete On Mon, Mar 12, 2012 at 5:17 PM, Pete wrote: > GetDataForLine gets called once for lines 1-12, then a second time for > lines 1-2 again, and occasionally a third time for lines 1-2. -- Pete Molly's Revenge

Re: Passing parameters by reference

2012-03-12 Thread Pete
I'm not sure whose post you're responding to Bob. Where do you see something that amounts to a statement being passed as a referenced parameter? Pete On Mon, Mar 12, 2012 at 3:04 PM, Bob Sneidar wrote: > Just weighing in here, that would be a bit confusing. Passing by reference > means that the

Re: Slightly OT - LC in Keynote

2012-03-12 Thread Bob Earp
Sorry if I confused you Bob, I wasn't suggesting you could run an LC (stand-alone) project in PowerPoint, but you can run a .swf file which can include interaction. As you say, I could create a link in Keynote to the stand-alone LC project, but was hoping somebody had done something whizzy wi

Re: Passing parameters by reference

2012-03-12 Thread Mark Wieder
Pete- Monday, March 12, 2012, 5:39:16 PM, you wrote: > I'm not sure whose post you're responding to Bob. Where do you see > something that amounts to a statement being passed as a referenced > parameter? Here's the problem: a parameter of the form array["key"] is not a pointer to the "key" elem

Re: Passing parameters by reference

2012-03-12 Thread Dar Scott
On Mar 12, 2012, at 11:18 PM, Mark Wieder wrote: > You'd have to somehow prevent the dereferencing of myArray[myKey] in > order to pass it by reference. Just as the dereferencing of x would have be be prevented to pass it as reference. Perhaps any mutable place is the same. Dar _