Re: How detect the object over other object is?

2010-12-19 Thread JosepM
Yes, but I need to check for each, isn't other way to do? Salut, Josep -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/How-detect-the-object-over-other-object-is-tp3094859p3095145.html Sent from the Revolution - User mailing list archive at Nabble.com. ___

[OT] Free 300 Windows Tips e-book

2010-12-19 Thread RunRevPlanet
Hi, Came across this link: and thought some Windows users may find it useful. -- Scott McDonald RunRevPlanet.com "Components, Stacks, Tools and Resources for LiveCode" __

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Robert Brenstein
On 19.12.2010 at 15:22 Uhr -0700 Mike Bonner apparently wrote: Here are some possible ways to do what you want. I'm sure there are more. Have a specific entry address just for you that grabs your ip and stuffs it in a file. Then all your other pages that log IP can reference the file to know wh

Re: Getting a public IP address when connected to a router

2010-12-19 Thread J. Landman Gay
On 12/19/10 6:50 PM, Mark Wieder wrote: Medard- Sunday, December 19, 2010, 2:04:04 PM, you wrote: * due to my ISP, Orange ;-) Well, there's the problem. You're trying to compare Apples and Oranges. Aw geez. You should be shot for that. -- Jacqueline Landman Gay | jac...@hype

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Mark Wieder
Medard- Sunday, December 19, 2010, 2:04:04 PM, you wrote: > * due to my ISP, Orange ;-) Well, there's the problem. You're trying to compare Apples and Oranges. -- -Mark Wieder mwie...@ahsoftware.net ___ use-livecode mailing list use-livecode@list

Re: How detect the object over other object is?

2010-12-19 Thread DunbarX
Easy. Read about the "intersect" function in the dictionary. Craig Newman ___ 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/mailm

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Keith Clarke
How about using a dynamic DNS service from dyndns.com, noip.com or similar to provide you with a fixed public host name with pseudo-fixed IP address? I use the free dyndns.com service to map a couple of host names to my home server, which sits behind a BT Home Hub router. The router contains a d

Re: closeField - Curious

2010-12-19 Thread Robert Brenstein
On 18.12.2010 at 23:02 Uhr -0600 J. Landman Gay apparently wrote: If you can't find the reason in your scripts, it might have to do with the message hierarchy. I've hit the same snag before and ended up adding a check for "the selectedfield" at the top of the button script that navigates. I.e.:

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Mike Bonner
Yeah, what mark said. Very similar ideas. On Sun, Dec 19, 2010 at 3:17 PM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Hi Medard, > > I'm sure there are many different ways to solve this little problem. For > instance, you can make a little faceless application, which uploads yo

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Mike Bonner
Here are some possible ways to do what you want. I'm sure there are more. Have a specific entry address just for you that grabs your ip and stuffs it in a file. Then all your other pages that log IP can reference the file to know what IP to ignore. Or set a special cookie for yourself that basic

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Mark Schonewille
Hi Medard, I'm sure there are many different ways to solve this little problem. For instance, you can make a little faceless application, which uploads your IP address to your server every time it changes. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Ho

Re: A little surprise with LiveCode and On-Rev

2010-12-19 Thread Robert Mann
Well.. I do the following : - write html and .irev files using on-rev editor (uses mac roman) - then edit the files with wrangler and saving the files using UTF8 no BOM - from then I can edit the html files on both (on-rev editor or wrangler) ==> no BOM is important otherwise you get a strange c

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Medard
Mark Schonewille wrote: > What's the problem, Medard? Just don't count your own IP address. > > if myIP is not "123.123.123.123" then... You're right, Mark... but a well known motto here in France is: "pourquoi faire simple, quand on peut faire compliqué" (what's the need to make things simple

How detect the object over other object is?

2010-12-19 Thread JosepM
Hi, I move a graphic over others graphics and I need to know the object ID or name over the moved object is. Like moving a chess pieces over the board. The user move one piece and I need to know over what is located. I see that I can check if the location of the moved piece is into the rect of t

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Mark Schonewille
What's the problem, Medard? Just don't count your own IP address. if myIP is not "123.123.123.123" then... -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 New: Dow

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Medard
Mark Schonewille wrote: > The RevServer should be able to do something like: > > put $_SERVER['REMOTE_ADDR'] into myRemoteIP Yes -- but no ;-) By doing this, you get the IP address of the person who accesses the page -- sometimes that's me ;-) So I want to exclude myself from the referrers...

A little surprise with LiveCode and On-Rev

2010-12-19 Thread Medard
Again, some musing with On-Rev ;-) I made a simple "blog" with my reading notes around the web [mostly in french] As for now I am putting together pieces to create one file, a head, a body, and a footer The body itself is made from concatenating ht

Re: closeField - Curious

2010-12-19 Thread Bill Vlahos
I agree completely. It would be good to have a message sent whenever the field changes for any reason. Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. On Dec 18, 2010, at 11:53 PM, p...@molly

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Mark Schonewille
Hi Medard, The RevServer should be able to do something like: put $_SERVER['REMOTE_ADDR'] into myRemoteIP -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 New: Dow

Re: closeField - Curious

2010-12-19 Thread Mike Kerner
Thanks for chiming in, everyone! Joe I don't want to bore everyone with the details, but this is exactly what I want - a generic closeField handler. Thanks for looking out for my well being, though! Jacqui, After fiddling around for hours and hours, this is what I suspect as well. I just haven't

Re: Getting a public IP address when connected to a router

2010-12-19 Thread Medard
Terry Judd wrote: > Does anyone have a LC routine (or tips on how to write one) that will enable > me to get a public IP address rather than the local one assigned by a > router? All the solutions given do work -- but think they will give a wrong one if they are NOT called locally i.e. in .irev

Re: cmd key modifier not working?

2010-12-19 Thread Peter Brigham MD
On 12/18/10 3:57 PM, Sivakatirswami wrote: OSX Livecode 4.5.2 I have this menu: Stop/1 Back Up/2 Forward/3 Resume/4 the menu appears with "cmd +1" as expected and I could have sworn that it used to work, but now when I hit the keys, nothing happens. The menu is OK.. if I go to the menu and

Re: iOS apps not getting past review due to crashing

2010-12-19 Thread Harald Müller
Thanks Jacqueline, Klaus and Mark! Today I won't do more than smile around the clock :) Best regards Harald. Am 19.12.2010 um 06:03 schrieb J. Landman Gay: > On 12/18/10 5:31 PM, Harald Müller wrote: >> And the second App is now also "ready for sale". After weeks of depression >> a breathless