Re: Can't close windows

2011-03-24 Thread Joe Lewis Wilkins
Maybe it is disabled. Under Basic Properties for your stacks, check the "control" settings. Joe Lewis Wilkins Architect & Director of Product Development for GSI On Mar 24, 2011, at 10:29 PM, paul foraker wrote: > As of a few weeks ago, I can no longer close stacks by clicking their red > clo

Can't close windows

2011-03-24 Thread paul foraker
As of a few weeks ago, I can no longer close stacks by clicking their red close button (Mac OS 10.6.6, LC 4.0.0). I have to use File / Close (Cmd W). Any ideas what might be happening with that? -- Paul ___ use-livecode mailing list use-livecode@lists.r

Re: Urban Airship in LC

2011-03-24 Thread Peter W A Wood
Tom I think that Mark Smith has the answer for you - http://revonline2.runrev.com/stack/82/LibJson-1-0b Regards Peter On 25 Mar 2011, at 11:17, Thomas McGrath III wrote: > Has anyone used Urban Airship yet in LC for Push Notification? > > Where do we stand on encode and decode for JSON? (U.A

Re: RevIgniter - Loading Images

2011-03-24 Thread Web Admin Himalayan Academy
On 3/24/11 4:51 PM, Robert Mann wrote: "Robert, here is my simple function to drive a random selection from a folder of images, the image is loaded once on page load and does not change until next page load. this may not be what you want... " Many thanks its exactly what I was going to program

Re: iOS quit app message?

2011-03-24 Thread Scott Morrow
Hello Gerry and Jacqueline, I'm interested in this as well. I haven't been successful at catching the "shutdown" message and ended up needing to add "save" routines in some places I would rather not have. (Though saving seems to happen very fast.) Scott Morrow Elementary Software (Now with 20

Re: iOS quit app message?

2011-03-24 Thread J. Landman Gay
On 3/24/11 4:29 PM, Gerry wrote: Hi all Is there any way to detect the closing of an iOS app? As far as I can tell closestack and suspendstack don't work. Does the shutdown message get sent? I haven't tried it but it sounds logical. -- Jacqueline Landman Gay | jac...@hyperactive

Urban Airship in LC

2011-03-24 Thread Thomas McGrath III
Has anyone used Urban Airship yet in LC for Push Notification? Where do we stand on encode and decode for JSON? (U.A. says "Every language under the sun has libraries to encode and decode JSON.") This is fairly new to me but I am jumping in so any help is appreciated. >From Urban Airship: "Java

Re: RevIgniter - Loading Images

2011-03-24 Thread Robert Mann
"Robert, here is my simple function to drive a random selection from a folder of images, the image is loaded once on page load and does not change until next page load. this may not be what you want... " Many thanks its exactly what I was going to program : a random selection of an image for ea

Re: RevIgniter is Fabulous!

2011-03-24 Thread -=>JB<=-
I am not using revigniter yet but I downloaded it and have been reading since your post. I am really new to web programming and irev has very little info unless they wrote documentation I don't know about so I have been learning web basics from other sources. Thanks for the reply and the offer to

Live LiveCode event #16

2011-03-24 Thread Björnke von Gierke
Hi from the sun The sun compels you to watch the following presentations: Keith Clarke is a system admin and will show how to set up revServer, a few pitfalls regarding server LiveCoding, Mac OS X server and Linux VPS. http://livecode.tv/keith/ After that, Colin Holgate, who is a mentor of a ro

iOS quit app message?

2011-03-24 Thread Gerry
Hi all Is there any way to detect the closing of an iOS app? As far as I can tell closestack and suspendstack don't work. Cheers Gerry -- photo site: http://gerryorkin.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit th

RevIgniter - Loading Images

2011-03-24 Thread Sivakatirswami
Robert I changed the thread title since we are on now from kudos to implementation On 3/23/11 11:19 PM, Robert Mann wrote: I too found revIGniter a fantastic working work! and pointed that out several time. My first site using that though has to be reworked from a speed point of view because

Re: RevIgniter is Fabulous!

2011-03-24 Thread Sivakatirswami
On 3/23/11 7:05 PM, -=>JB<=- wrote: That looks very nice. Was everything made with Revigniter? -=>JB>= http://dev.himalayanacademy.com/books When you say "everything made with" depends what you mean. The navigation menus at the top are pure simple CSS. I use John Alsop's Style Master for C

Re: Delete element of an array

2011-03-24 Thread David Bovill
- delete variable array [someKey] - delete local array [someKey] - delete global array [someKey] On 24 March 2011 18:24, Bob Sneidar wrote: > I hope I am not having another brain fart. I cannot find ANYWHERE how to > delete an element of an array. I cannot just put empty into it, and

Delete element of an array

2011-03-24 Thread Bob Sneidar
DOH! Belay my last it was indeed a brain fart. Delete variable aMyArray[3] Bob > I hope I am not having another brain fart. I cannot find ANYWHERE how to > delete an element of an array. I cannot just put empty into it, and delete > element isn't valid. I thought there was a Livecode lesson on

Delete element of an array

2011-03-24 Thread Bob Sneidar
I hope I am not having another brain fart. I cannot find ANYWHERE how to delete an element of an array. I cannot just put empty into it, and delete element isn't valid. I thought there was a Livecode lesson on Working with Arrays, but I cannot find it. Bob __

Re: Progress Indicator Revisited

2011-03-24 Thread Bob Sneidar
That worked a peach. Thanks. Since I am only updating my SQL tables when something has changed I can optimize my speed by putting the wait command right after the code that actually writes to the SQL database. Bob On Mar 24, 2011, at 9:47 AM, Scott Rossi wrote: > Recently, Bob Sneidar wrote:

Re: MySQL error on startup

2011-03-24 Thread Bob Sneidar
Googled it. First hit was this: I experienced the same minutes ago and this is what I found in Console All Messages: /System/Library/CoreServices/SecurityFixer.app/Contents/MacOS/SecurityFixer617 "/Library/StartupItems/MySQLCOM" failed security check: not owned by GID 0 So what I did was: sud

Re: Progress Indicator Revisited

2011-03-24 Thread Scott Rossi
Recently, Bob Sneidar wrote: > I know this has been hashed out before, but what did we decide? I am going > through 3 nested loops, each of which puts some text into a field to indicate > how far along in the process I am. Trouble is, nothing shows up in the field > until everything is done. > >

MySQL error on startup

2011-03-24 Thread Peter Haworth
I've been playing around with mySQL for a couple of weeks now and generally getting to grips with it. All seems to be working well but every time I start up my Mac, I get this error: Insecure Startup Item Disabled. /Library/StartupItems/mySQLCOM has not been started because it does not have th

Progress Indicator Revisited

2011-03-24 Thread Bob Sneidar
I know this has been hashed out before, but what did we decide? I am going through 3 nested loops, each of which puts some text into a field to indicate how far along in the process I am. Trouble is, nothing shows up in the field until everything is done. Is there a way to force the screen to

Re: Datagrid question

2011-03-24 Thread Klaus on-rev
Hi Bob, > Store the currently "selected" object in a property of the datagrid, and > every time the selection changes, set the property. wonderful, works great! Thanks a lot! > Bob Best Klaus -- Klaus Major http://www.major-k.de kl...@major.on-rev.com _

Re: Datagrid question

2011-03-24 Thread Bob Sneidar
Store the currently "selected" object in a property of the datagrid, and every time the selection changes, set the property. Bob On Mar 24, 2011, at 8:52 AM, Klaus on-rev wrote: > But I have ni idea how to "unhilite" the last "cell" when the user click into > another row!? > Know what I mean

Re: Datagrid question

2011-03-24 Thread Klaus on-rev
Hi Zryip, > On Wed, Mar 23, 2011 at 8:58 PM, Klaus on-rev wrote: >> Hi friends, > Hi Klaus, >> is it possible to create a datagrid FORM that can act like 2 or more >> independant "clickable" "Cells?" (separate row "wannabees") in one row? > Yes >> Know what I mean? Something like this mockup: >>

Re: About That revBrowser

2011-03-24 Thread Klaus on-rev
Hi William, > Hi All, > Has anyone, requested a native object revBrowser > or heard of a revBrowser "in work", which can exist as multiple objects > on a card or more than one card? > Whereby each would and could run independantly of other > revBrowsers. > Currently am having to undergo tremendous

About That revBrowser

2011-03-24 Thread William Moseid
tion from ESET Smart Security, version of virus signature database 5982 (20110324) __ The message was checked by ESET Smart Security. http://www.eset.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscr

Re: Determining which UITextField sent a message

2011-03-24 Thread Björnke von Gierke
Obviously, asking for the name of an object, when you know that the name is not different between the actual objects, will not give you anything meaningful. But you are wrong in assuming the target can only ever give you the name of an object. So the target works just fine, for example: on mous

Re: RevIgniter is Fabulous!

2011-03-24 Thread Robert Mann
I too found revIGniter a fantastic working work! and pointed that out several time. My first site using that though has to be reworked from a speed point of view because I chose to view pictures with a javascript gallery module that loads every files at start up... and that also made the cache fu