Jump to content
xisto Community

flash4satheesh

Members
  • Content Count

    17
  • Joined

  • Last visited

About flash4satheesh

  • Rank
    Newbie [Level 1]
  • Birthday 05/08/1993

Contact Methods

  • Website URL
    http://

Profile Information

  • Location
    India
  • Interests
    Flash,Java And PHP.
  1. It is my Fav Game.I love this game.
  2. Load a another swf movie into Flash player.Create an empty flash document as you like.Save and publish it.Create a 2nd flash document as you like.Save and publish it.Note: Both are in same directory.Open a first empty flash document.Select the first frame and Press F9.Copy the code below and paste it.loadMovie("Your 2nd flash file name .swf", this);Save and run it.
  3. Macromedia Flash 8 for Create a Flash.Macromedia Dreamweaver 8 for Coding.wamp server for test my PHP on Local Computer.FileZilla for upload a file to server.
  4. Which one is best to connect the phone?Bluetooth or USB Cable.
  5. Best Phone Company?Sony EricssonorNokiaorMotorolaorOtherI think best phone company:Sony Erisson and Motorola.
  6. Movie Clip 1.Create a Movie Clip and draw a Rectangle or your design in the Movie Clip. 2.Come Back to Scene 1. 3.Select the Movie Clip and set them instance name = movie. 4.Select the first Frame. 5.Press F9 and Copy Code Below and paste it. setInterval(function () { if (Key.isDown(Key.RIGHT)) { setDirection(0); _root.movie._x += 3; } if (Key.isDown(Key.LEFT)) { setDirection(1); _root.movie._x -= 3; } if (Key.isDown(Key.DOWN)) { _root.movie._y += 3; } if (Key.isDown(Key.UP)) { _root.movie._y -= 3; } updateAfterEvent();}, 10); Demo:http://forums.xisto.com/no_longer_exists/404.png
  7. Digital Time 1.Create a Text Field and Create set them instance name = time. 2.Select the first Frame. 3.Press F9 and Copy Code Below and paste it. _root.onEnterFrame = function() { var time:Date = new Date(); hour = (time.getHours()<=12) ? time.getHours() : (time.getHours()-12); hour = (hour<10) ? ["0"+hour] : hour; second = time.getSeconds(); second = (second<10) ? ["0"+second] : second; Minutes = time.getMinutes(); Minutes = (Minutes<10) ? ["0"+Minutes] : Minutes; _root.time.text = [hour+"."+Minutes+"."+second];};
  8. What desktop resolution are you using?I am using 800x600 80 Hz.
  9. I am using Motorola Ming(A1200).It is Linux Based mobile.
  10. I am using Flock.It is best for me,because it have more features than other.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.