Re: New Sandboxing Docs have been posted

2012-05-20 Thread Igor de Oliveira Couto
On 21/05/2012, at 4:02 PM, Peter Haworth wrote: > I just emailed RunRev support to see what, if anything, that are planning > to do to help with sandboxing. Some information which may be useful can be found in the RunRev Forums, here: http://forums.runrev.com/viewtopic.php?f=19&t=11024#p51406 -

Re: insertion point glitch

2012-05-20 Thread Timothy Miller
Thankya, Igor, I too am familiar with stray-thumb trackpad behavior. In the case of the glitch in question, it also happens on my Mac Mini, which has a mouse, no trackpad. But I appreciate your attempt to help. Tim On May 20, 2012, at 10:53 PM, Igor de Oliveira Couto wrote: > Dear Tim, > >

Re: New Sandboxing Docs have been posted

2012-05-20 Thread Peter Haworth
I just emailed RunRev support to see what, if anything, that are planning to do to help with sandboxing. Pete lcSQL Software On Fri, May 18, 2012 at 3:22 PM, Tim Jones wrote: > Hi Folks, > > If you haven't received the note from Apple yet, new docs for sandboxing > have

Re: insertion point glitch

2012-05-20 Thread Peter Haworth
Clutching at straws, but the other property to check when this happens is lockText. Pete lcSQL Software On Sun, May 20, 2012 at 9:28 PM, Timothy Miller < gand...@doctortimothymiller.com> wrote: > Hi, I do a fair amount of tedious data entry with my liveCode stacks. > > No

Re: Sample Hello World apps

2012-05-20 Thread Guglielmo Braguglia
Hi Jacque, all OSX .app have, more or less, the same structure (/... I have about 600 .app in my /Application folder/) ... ... as you already know, the .app, on OSX, it's a folder containing inside one principal folder 'Contents' which, in turn, contains some other folders and files. The mi

Re: insertion point glitch

2012-05-20 Thread Igor de Oliveira Couto
Dear Tim, I have experienced something similar - don't know if it's the same thing as you: On 21/05/2012, at 2:28 PM, Timothy Miller wrote: [...] > I have noticed that when a field is unresponsive to data entry, it is also > unresponsive to tabkey and returnkey (tab on return is set to true).

Re: insertion point glitch

2012-05-20 Thread Timothy Miller
Replying to myself, the OP, additional information about previous question. I added a button, with hilite turned off. "Answer the focusedOjbect" I click it when a field is unresponsive. It correctly provides the identity of unresponsive field. After I click on the "OK" button in the answer dialo

insertion point glitch

2012-05-20 Thread Timothy Miller
Hi, I do a fair amount of tedious data entry with my liveCode stacks. Now and then, a field's focus border is hilited, the cursor insertion point is blinking in the field, but the field is unresponsive to keyboard input. Clicking again in the field does not make a difference. The only way to mak

New Sandboxing Docs have been posted

2012-05-20 Thread Tim Jones
Hi Folks, If you haven't received the note from Apple yet, new docs for sandboxing have been posted along with some new entitlements: https://developer.apple.com/devcenter/mac/app-sandbox/ Tim ___ use-livecode mailing list use-livecode@lists

Re: Sample Hello World apps

2012-05-20 Thread Peter W A Wood
So just to confirm, you want a the .app folder of an OS X application and not an OS X command line application? On 21 May 2012, at 02:04, J. Landman Gay wrote: > I'm looking for compiled, short samples of apps written in other languages; > Lua, Corona, C++, anything. A quick "hello world" app

Re: Drag/Drop from a scrolling list to a text field

2012-05-20 Thread Peter Haworth
Just gave it a whirl and it worked fine after a slight tweak. The list is the same one that's the subject of the scrolling question, which alternatle expands/collpases an entry when it's clicked on so I couldn't ignore the processing of the line if it was the same line that was clicked. The fix w

Re: Drag/Drop from a scrolling list to a text field

2012-05-20 Thread J. Landman Gay
On 5/20/12 1:41 PM, Peter Haworth wrote: I have a need to allow the user to drag a line from a scrolling list field and drop it into wherever the insertion point is in a text field. I found a lengthy thread about this in the list archives back in 2005 at http://runtime-revolution.278305.n4.nabbl

Re: Sample Hello World apps

2012-05-20 Thread J. Landman Gay
On 5/20/12 1:47 PM, Pierre Sahores wrote: Hi Jacque, If you just wants to see how a GCC compiled app looks like, it's just binary code and to see how it looks, you just have to drag any app on TextWrangler or BBEdit (TextMate is too slow to open such files). Actually, I should have mentioned I

Re: Scrolling by script

2012-05-20 Thread Peter Haworth
That works as you said it would but if the selected line is not in the middle third of the lines, it's not visible. The following code seems to work: *i*f the hilitedline of me > 12 then set the vscroll of me to (word 2 of the selectedline of me - 12) * the textheight of me end if * * 12 is

Re: Sample Hello World apps

2012-05-20 Thread Pierre Sahores
Hi Jacque, If you just wants to see how a GCC compiled app looks like, it's just binary code and to see how it looks, you just have to drag any app on TextWrangler or BBEdit (TextMate is too slow to open such files). Kind regards, Le 20 mai 2012 à 20:04, J. Landman Gay a écrit : > I'm looking

Drag/Drop from a scrolling list to a text field

2012-05-20 Thread Peter Haworth
I have a need to allow the user to drag a line from a scrolling list field and drop it into wherever the insertion point is in a text field. I found a lengthy thread about this in the list archives back in 2005 at http://runtime-revolution.278305.n4.nabble.com/Dragging-from-a-list-field-td284292.h

Re: Blockly

2012-05-20 Thread Richmond
On 05/20/2012 08:34 PM, Mark Wieder wrote: Richmond- Saturday, May 19, 2012, 11:44:51 PM, you wrote: http://scratch.mit.edu/ Scratch was *very* present at the Maker Faire, making quite a splash in the educational building. They're quite similar outwardly, and aimed at the same sort of visual

Re: Scrolling by script

2012-05-20 Thread J. Landman Gay
On 5/20/12 1:19 PM, Peter Haworth wrote: That doesn't work. If I'm understanding it correctly, it scrolls so the the middle line in the total number of lines in the list is at the top of the list. What I need is for the selected line to be positioned in the middle of the VISIBLE lines in the li

Re: Scrolling by script

2012-05-20 Thread Peter Haworth
That doesn't work. If I'm understanding it correctly, it scrolls so the the middle line in the total number of lines in the list is at the top of the list. What I need is for the selected line to be positioned in the middle of the VISIBLE lines in the list, not the total lines. I should explain

Sample Hello World apps

2012-05-20 Thread J. Landman Gay
I'm looking for compiled, short samples of apps written in other languages; Lua, Corona, C++, anything. A quick "hello world" app is fine. If you've got something like that, it'd be great if you could send it to me off-list. I've found lots of source code on the net but no compiled apps. Thank

Re: Google alerts

2012-05-20 Thread Petrides, M.D. Marian
Well, then, I guess I'll just have to wait with bated breath. ;-) Actually, should come right about the time I'm going to be ready to settle down to some serious self-education about LC for mobile devices. On May 20, 2012, at 12:32 PM, Colin Holgate wrote: > Yes, I guess these are early days.

Sandboxing Mac Apps

2012-05-20 Thread Peter Haworth
Has anyone "sandboxed" a Livecode desktop app, as is required for any apps submitted to the App Store after June 1st? I'm partucularly interested in what specialFolderPath("Home") returns in a sandboxed app, or any of the other folder names that exist within the Home directory. Pete lcSQL Software

Re: Blockly

2012-05-20 Thread Mark Wieder
Richmond- Saturday, May 19, 2012, 11:44:51 PM, you wrote: > http://scratch.mit.edu/ Scratch was *very* present at the Maker Faire, making quite a splash in the educational building. They're quite similar outwardly, and aimed at the same sort of visual programming paradigm that makes it easy to g

Re: MPMoviePlayerController?

2012-05-20 Thread Pierre Sahores
Works there too against an iPod Touch but not under an Android Samsung Galaxy SII (LC 5.5.0 build 1479). Did i miss something ? The Android release notes seems to say that it should work. Regards, Le 19 mai 2012 à 19:05, Scott Rossi a écrit : > Recently, Colin Holgate wrote: > >> What codec

Re: Google alerts

2012-05-20 Thread Colin Holgate
Yes, I guess these are early days. The publisher hasn't even told me about the info pages being live. Google alerts beat them too! On May 20, 2012, at 11:36 AM, "Petrides, M.D. Marian" wrote: > >Looks great, Colin! I've bookmarked the site so I can get back to it when > >the book actually b

Re: Blockly

2012-05-20 Thread Richmond
On 05/20/2012 06:40 PM, Kee Nethery wrote: Scratch is open source and many other environments have used that UI for coding. My son who is now 10 has been coding in Scratch for 3 or 4 years. It is a very easy to learn environment and it supports message passing, objects, variables, etc. He's le

Re: Blockly

2012-05-20 Thread david j downs
Scratch is principally funded by a National Science Foundation grant. The expectation is that the results of projects funded by government grants are to be made freely available for public use. J. ___ use-livecode mailing list use-livecode@lists.runrev.c

Re: Blockly

2012-05-20 Thread Kee Nethery
Scratch is open source and many other environments have used that UI for coding. My son who is now 10 has been coding in Scratch for 3 or 4 years. It is a very easy to learn environment and it supports message passing, objects, variables, etc. He's learned some very high level concepts without k

Re: Google alerts

2012-05-20 Thread Petrides, M.D. Marian
Looks great, Colin! I've bookmarked the site so I can get back to it when the book actually becomes available in August. I assume the links to Amazon, etc. are not working because this is a preorder? On May 20, 2012, at 9:37 AM, Colin Holgate wrote: > Google have a thing they call "alerts".

RE: Google alerts

2012-05-20 Thread Lynn Fredricks
> This morning though I got one that was me, and as with the > last time it happened this alert was the first notice I got > of the thing being posted. As you check it out, you'll see > why I didn't put [OT] in the subject: > > http://www.packtpub.com/authors/profiles/colin-holgate Congratulat

Re: Google alerts

2012-05-20 Thread Richmond
On 05/20/2012 04:37 PM, Colin Holgate wrote: Google have a thing they call "alerts". With those you can set a search string, and how often to check, and if the string shows up anywhere online you get emailed about it. Quite a while ago I put my name in, to see what happened. Every now and then

Re: Help with Stop Record command on Win32 machines

2012-05-20 Thread Colin Holgate
Don't worry about the crash the test caused, I don't mind. My hope is that if something can be fixed to stop the entire Windows system from crashing, it might also fix your less extreme case. ___ use-livecode mailing list use-livecode@lists.runrev.com P

Google alerts

2012-05-20 Thread Colin Holgate
Google have a thing they call "alerts". With those you can set a search string, and how often to check, and if the string shows up anywhere online you get emailed about it. Quite a while ago I put my name in, to see what happened. Every now and then I get an email about some business chap in Au

Re: Help with Stop Record command on Win32 machines

2012-05-20 Thread William Ziegler
Sorry about that Colin, with the old rev player I circulate with the programs it just halts the program, gives an error message with a string of data pages and lets you quit. If you don't have an old player I pair one with all my education stacks at billzieger.com Hope to see you at the Live

[ANN] ChartMaker: Resource Centre support update

2012-05-20 Thread FlexibleLearning
ChartMaker's 'Resource Centre' support website has been updated. - A new Playground stack has been added ChartMaker Playground #10 How to include Horizontal and/or Vertical Marker Lines. Requires Build 57, the most recent release. Available from www.FlexibleLearning.com/chartmaker/cmrc - Cha