ActionScript 3.0 :: Get Client IP And Mac Address?
Jan 11, 2011I want to get client IP and mac address,can as3 do it? Which class can I use?
View 2 RepliesI want to get client IP and mac address,can as3 do it? Which class can I use?
View 2 RepliesI want to get ip address of client (Browser) on which flash player is playing.
so how can i get ip address of client in as3, without any server side interaction ?
Is there anyway to get the client's ip address when running PyAMF via the WSGI gateway interface (Apache)?
View 1 RepliesI am using blazeDS remote object. I need to get a client ip address from clien request. Is it any way to get ip address and system information in blazeDS java.
View 1 RepliesI'm trying to find the IP address of a client when they make a particular LCDS service call. Understanding all the issues of getting a "real" IP address and privacy concerns and so on, it is possible to find the client's IP address?
View 3 Repliesi am new on steaming & flash server; when we try to use RTMP over HTTP the outside client gets the internal IP address of the FMS server instead of the NAT one or public IP address, how can we solve this.
View 1 Replieshow to get your logo to appear next to the address of your web site when your website address is typed in,
for example if you look at the website address at the top of the screen you see (logo) [URL]
how can I find on fms server that client disconnected if if client disconnected due to power cut off. I client manually close the application then onDisconnect on server is called but if due to power cut off it does not called.
View 1 RepliesCan we perform client to client file transfer, client to server can be done by FileReference. but how do we do client to client transfer, for example if a user wants to send file to another user to whom he is chatting online.
View 3 RepliesHow do I check if email address is a legitimate email address? Is there any possibility in that?
View 7 RepliesI am trying to build a client-to-client streaming program - client 1 has a webcam and client 2 will connect to client 1 and be able to view the webcam. Is this possible using 2 swf clients? Can someone point me in the right direction as to what commands would be used to connect the two clients. I have tried: binary sockets Connect() where each clients points to the other and they both time-out NetConnection to try to point each client to one another to establish a connection, but no luck with that either; this seems more oriented towards streaming content to a flash media server rather than to another flash client.
View 1 RepliesWe're writing a flash application that can download a MP3 file, convert it to a Sound object, get the raw data and make some processing (like adding sounds, change octaves). After the processing, we want to send the data back to the server in chunks, so the server will be able to glue the data together and recover the new generated file. The problem is: if we send to the server "wav" pieces of sound, we are able to glue them together without any problem in the generated file. However, if we convert each wav piece to a mp3 file (so we can send a smaller file to the server) and join the mp3 files at the server, the result is a sound with some problems at the merge point.
This is how we load the mp3 file from the server:
sourceSnd.load(new URLRequest("sample url to mp3"));
sourceSnd.addEventListener(Event.COMPLETE, carregou);
This is how we convert each piece of mp3 to bytearray and wav:
[Code]....
I got a problem,how can i get the addressof my pic??
imgLoader.load(new URLRequest("abc.jpg"));
for example, address fo "abc.jpg" is D:work_folderabc.jpg
how can I trace this information??
How can I have actionscript read the URL that is in the address bar?
I have an if statement that needs to compare the url in browser to a variable.
Code:
if(!pagesURL! == aLink) {
this.onpagebg._visible = true;
} else {
this.onpagebg._visible = false;
}
I would like to use a flash interface to display a list of 10. IP Address's and have a constant Ping on them, thenbe able to print out a report. The interface I can handel, is there a way to have Flash (Via PHP or XML) ping an IP address?
View 7 RepliesI was asked to create a banner in flash.how do I include the 'location' name or the user's IP address in the banner?
View 1 RepliesHow do I get the IP address of a certain website using Flex 4 via an AIR application? I know that this is do-able using ping but how can I replicate the same only this time, using AS3 in Flex 4 and as an AIR application.
View 1 RepliesI need to find the IP Address of the system my AIR App is running. I found a similar question here. But the solution is with SDK version higher than 3.5 it seems. Can this be done using Flex 3?
View 3 RepliesIi am trying to find the ip addres by using as3 in adobe Flash professional cs5. I don't how to do this. Is it possible to find the Ip address using as3?
View 1 RepliesAnybody know of a way to get the IP Address of a SWF's user? Almost every solution I've seen involves some kind of special install, ie SSI or java.net... I need a solution that works on a plain vanilla IIS webserver.
If there's no way in Flash, I'd settle for a javascript method, so I could then just pass it into Flash in some way.
I would like to make a website in which I can pass variables from the Address Bar to the Flash movie such as the website URL...What is the best way to pass variables the same way they are passed with the forces site?
View 3 RepliesIs there a way to get the address of object? Or some kind of Flash resource identifier for the object? I'm having an issue where certain fields in an object are different from the original object, but I'm not sure whether the object is the original object I expect it to be.
View 0 Replieshow can i address my movieclip like this
for (var i:Number = 1; i<=3 ; i++){
this("row"+i+"_mc").x +=10;
}
Basically I guess it is a reference problem I do have. (1120: Access of undefined property images)
For an image gallery I also do have a few text sprites which may have to much text for one side to display. Therefore I do have a scrollbar placed next to the text which should be able to move my text sprite within its mask.
My .fla at one point adds an InfoText (InfoText.as, extends Sprite) to an already existing sprite "images".
imageHolderArray[i]=new InfoText (xmlName)
images.addChild(imageHolderArray[i])
imageHolderArray[i].name=xmlName;
[Code]...
I have an eventListener called Update, in an action script file called "game". Whilst on the timeline of my fla I would like to to remove the eventlistener that's located in the as. file. What I'm looking for is how to address the eventlistener from the fla.
View 0 Repliestutorial on deep linking or using swf address.Also my site uses currMovie for it's page transitions. I've noticed the examples seem to have all their pages on the main timeline. Is it possible to deep link with external swf's?
View 2 Repliesmy english is very poor,but i searched for it many times,no results!
View 4 RepliesHow do I read the url address i currently am in, using AS? I want to be able to read the variables passed and display different things each time. I've seen that before, searched this site for that, but nothing... I'm a little dizzy with the work and all.
View 7 RepliesIs there any way to get the address of a variable etc like in c/c++?
Like:
var someRef = &_root.as['someVar'];
or
function whatnot( var *someVar ) { ... }
My initial tests shows that flash makes copies of everything, even selfsefined objects! Surely there must be support for something else...
i am trying to get a flash ".swf" file to set a variable for the url that the file is embedded on. i know there has to be a way! I am using the " this._url; " to get the url, but all it gives me is the url to that swf file. I want the entire page's address to be my variable, not the swf url. I am trying to send that variable over to a php page to write it to mysql, but i can't get it to give me the right variable.
lvOut.address = this._url; //this sends the variable to php it does send the variable, but the variable is not the full url to the page it is loaded on, it is the url to the flash file