Combining Papervision3D and AS3DMod library, I was experimenting if it is possible to create a curvy display like what Top Sites in Safari was doing. Performance wise was mediocre, as I pump up the segments in Plane, the framerate drops like crazy. I will release the code source when I clean it up. Inside’s a bit messy now.
Archive for the ‘Experiment’ Category
[Tips] AS3 User location/country detector based on IP
I have wrote a script that automates the process of your project in detecting the user location based on their current IP address via maxmind’s Javascript API. What you will need to do is to
- See the demo below
- Get the source code
- Read the comment inside the FLA and start using it
What is this?
A simplified script that detects the visitor’s country and other details such as latitude/longtitude based on their current IP address.
Why is this necessary?
I felt that there is a need sometimes for us to automate the language selection or region selection process in some major big site that helps in cutting down user frustration through multiple clicks before going into the site. I figured this could be useful.
How to use it?
What you will need to do is to wait until the loading listener is completed before using it. Sample usage :
var userCountry:String = getCountryName();
Where to get the files?
View the demo (SWF)
[Flash] Chopping 3D Meshes in Papervision
So actually it’s kind of possible to chop it like watermelon. Did some experimentation @ wonderfl.net. The codes are shared under MIT license. Enjoy using it. Explore possibilities.
[Tips] Using PHPlist with Flash Actionscript 3.0
Will add more description on this post soon, enjoy for now. PHPlist is a powerful mailing list management tool, however the downturn came when there’s very little support in porting this to other type of output i.e. Flash. Thanks to the guys from phplist forums.
function submitRegister():void {
var fieldName:String = inputName.text; // your text field on the stage
var fieldEmail:String = inputEmail.text;// your text field on the stage
var formVariables:URLVariables = new URLVariables();
formVariables.attribute1 = fieldName; // the attributes are according to the form's input field
// anything below is a must to have, do not remove it, but you can modify it //
formVariables.name = "subscribeform";
formVariables.subscribe = "Subscribe";
formVariables.email = fieldEmail;
formVariables.emailconfirm = fieldEmail;
formVariables.htmlemail = 1;
formVariables["list[1]"] = "signup";
formVariables["listname[1]"] = "Your MailingList Name";
var formRequest:URLRequest = new URLRequest();
formRequest.url = "http://www.yourwebsite.com/lists/?p=subscribe&id=1"; // url of where your form/subscribe page resides
formRequest.method = URLRequestMethod.POST;
formRequest.data = formVariables;
var formLoader:URLLoader = new URLLoader();
formLoader.addEventListener(Event.COMPLETE, registerComplete);
formLoader.addEventListener(IOErrorEvent.IO_ERROR, registerError);
formLoader.load(formRequest);
}
function registerComplete(e:Event):void {
}
function registerError(e:IOErrorEvent):void {
}

