Re: [Flashcoders] Grab IP address

2006-05-30 Thread Tom Rhodes
i don't see what this has got to do with IP addresses :P have a look at marmalade media's FlashAmp, swiftMp3(if it's still around), failing that use AS3... MetaArt wrote: I want to develop a little Flash widget, with a character that 'read' some news. The news are loaded dynamically, like .mp

Re: [Flashcoders] Grab IP address

2006-05-30 Thread MetaArt
I want to develop a little Flash widget, with a character that 'read' some news. The news are loaded dynamically, like .mp3 files, and are 'generated' by a RSS feed, so they change continuously. The question is: given that I want provide the character with a simple lips move, there is a way to obta

Re: [Flashcoders] Grab IP address

2006-05-15 Thread MetaArt
thanx 2 all for suggestions and comments... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or s

Re: [Flashcoders] Grab IP address

2006-05-15 Thread Bernard Poulin
user to download the code at all, if his ip was already banned, seems good to me too:). grtz H > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of MetaArt > Sent: Monday, May 15, 2006 1:21 PM > To: Flashcoders mailing list > Subject:

RE: [Flashcoders] Grab IP address

2006-05-15 Thread j.c.wichman
, if his ip was already banned, seems good to me too:). grtz H > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of MetaArt > Sent: Monday, May 15, 2006 1:21 PM > To: Flashcoders mailing list > Subject: Re: [Flashcoders] Grab I

Re: [Flashcoders] Grab IP address

2006-05-15 Thread MetaArt
Well, controversies apart, the Google search don't match good result... apparently, JavaScript IP grab can be done only on Mozilla, and with Java enabled, and this isn't good for my goal. I'm developing a widget, and I need a way to check the owner IP, to ban a self, improper, use. Cause the way th

Re: [Flashcoders] Grab IP address

2006-05-15 Thread Nicholas Chhabra
And you bothered answering the question in the first place, why? ... Steven Sacks wrote: Do a little research before you answer questions, vampire. ;) It doesn't matter if that link works or not. I dind't care to verify and I wasn't providing a solution. The point is there are tons of

RE: [Flashcoders] Grab IP address

2006-05-15 Thread Mike Mountain
x27;Flashcoders mailing list' > Subject: RE: [Flashcoders] Grab IP address > > > Do a little research before you answer questions, vampire. ;) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Grab IP address

2006-05-15 Thread Johannes Nel
problem with the webservice from as is that the sandbox will kick in. it has to be proxied via the server (which then makes the java sollution valid) or you have too hope that they have a crossdomain policy file. On 5/15/06, Jim Tann <[EMAIL PROTECTED]> wrote: This looks like what you might be

RE: [Flashcoders] Grab IP address

2006-05-15 Thread Steven Sacks
> Do a little research before you answer questions, vampire. ;) It doesn't matter if that link works or not. I dind't care to verify and I wasn't providing a solution. The point is there are tons of other links that point towards the solution with one google search. Be a little more resourcefu

RE: [Flashcoders] Grab IP address

2006-05-15 Thread Jim Tann
This looks like what you might be looking for, I havnt tested it (or even read passed the first page :) but I think that your best be t is to find a free web service that you can access with actionscript. http://www.strikeiron.com/ProductDetail.aspx?p=149 Jim -Original Message- From: [E

RE: [Flashcoders] Grab IP address

2006-05-15 Thread Jim Tann
Did you actually try this solution? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: 15 May 2006 10:19 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Grab IP address Come the f**k on. I googled "get ip

Re: [Flashcoders] Grab IP address

2006-05-15 Thread Nicolas Cannasse
> Come the f**k on. I googled "get ip with javascript" > > First result: > http://www.rgagnon.com/jsdetails/js-0019.html > > > var ip = new java.net.InetAddress.getLocalHost(); > var ipStr = new java.lang.String(ip); > document.writeln(ipStr.substring(ipStr.indexOf("/")+1)); > Pretty funny th

RE: [Flashcoders] Grab IP address

2006-05-15 Thread Steven Sacks
Come the f**k on. I googled "get ip with javascript" First result: http://www.rgagnon.com/jsdetails/js-0019.html var ip = new java.net.InetAddress.getLocalHost(); var ipStr = new java.lang.String(ip); document.writeln(ipStr.substring(ipStr.indexOf("/")+1)); Do a little research before you a