flash
Flash/Flex Tutorial
Using External Call from HTML to Flash
http://blog.circlecube.com/2008/02/tutorial/actionscript-javascript-communication/
Flash MMO Server
These was some of my research on how to create Flash MMO Server:
MMO Server
http://www.smartfoxserver.com/products/basic.php
MMO Server with Flash Component/Editor
http://www.openspace-engine.com
MMO Flash API
http://www.nonoba.com/developers/multiplayerapi/overview
Chat room kind of flash
Custom Cursor for AS3
http://www.actionscript.org/forums/showthread.php3?t=154644
As conclusion
var cursor:MovieClip;
function initializeMovie ():void
{
cursor = new Cursor();
addChild (cursor);
cursor.enabled = false;
Mouse.hide ();
stage.addEventListener (MouseEvent.MOUSE_MOVE, dragCursor);
}
function dragCursor (event:MouseEvent):void
{
cursor.x = this.mouseX;
cursor.y = this.mouseY;
}
initializeMovie ();
Casting String to Number and Vise Versa
Hi,
Today i encounter a problem in AS3 where i want to cast a string to become a number and otherwise. So i googled and found 1 related article: http://www.wuup.co.uk/as3-quick-tips-string-to-number-conversion-and-vice-versa/
As summary:
// string to number var myString:String = "5"; var myNumber:Number = Number(myString);// number to string var myNumber:Number= 5; var myString:String= String(myNumber);// string to int (integer) var myString:String = "5"; var myInt:int = int(myString);
Flash MySQL
Comment: Simple and basic tutorial on saving user data to databasefor AS2
Comment: This one combines AS3->Flex->PHP
However i still don’t see how a game can use it as standalone without flex.
http://www.ultrashock.com/forums/actionscript/sendandload-data-91833.html
