![]()
How Can I Bind Dynamic Text In Flash Animation?
hey i want to create a flash animation for my site that can update its text every time i change the text in a .txt file how can i make this? Notice from m^e: Topic edited to reflect content more suitably
![]()
ActionScript: Flash Menus For Idiots
Flash menus NOT EDIBLE. Here you’ll learn to make a menu for your website using Macromedia Flash 1)First Way – get URL Method. 2)Create a new movie. 3)Insert a couple of buttons from the common libraries or make your own buttons. 4)Select this button get in to actions for this by pressing F9. Select this button get in to actions for this by pressing F9 Insert this script as it is [code]on (press, release) { getURL("sample.htm"); }[/code] Do the same for the other
![]()
Actionscript2.0 Tutorial For Beginners?
Does anyone here know of any good, free online resources for learning ActionScript2.0 from a beginner's standpoint? I really would like to learn it, but I just can't find anything that's helped me out at all. I need something that starts me at the beginning and explains what everything means. I've Googled and Yahoo'd my brains out. Can anyone help me out here? Thanks...
![]()
My friend and I are trying to find a way to load an .as file in a similar way to loading xml. The idea is to store an actionscript inside an xml file but it doesn't seem to work. I tried making an .as file and importing it to flash document the way it imports it is that it just places all the script in the actions panel. This is a flowchart of what we want to do: [make an external file which contains ACTIONSCRIPTS] | [make a script that loads external file w/o pasting code into panel]
![]()
Can I build a web music player or web video player with flash cs3? If so where can I find a good tutorials.
![]()
I get a security sandbox error in flash when i try and do a upload file or after closer investigation only when i try and type something in an input box through my upload function. I had this all working as you know previously. I am not sure why i get this. I don't get it when i browse for a file in my upload function but rather when i try and type something in on my input field text box for my "title" field. i have tried adding System.security.allowDomain("designercolin.com
![]()
Type Checking Not Work On For .. In Loop
It seems that the actionscript 2.0 type checking was not work as expected on some place. When variables was created on for .. in loop. It will allow any variable type to be used. Or it is default construt !? [code]var dayNames1:Array = ["Sunday", "Monday", "Tuesday", 5]; for (var dayName:String in dayNames1) { trace(dayNames1[dayName]); trace(typeof(dayNames1[dayName])); }[/code] [code]5 number Tues
![]()
Hi, I'am trying to use actionscipt to write a simple game. But I found tht if I use the Key's event system. It's a bit delay ... here is the code, [code]var o = new Object(); o.onKeyDown = function () { if (Key.getCode() == 40) { _parent.fire._y += 50; } }[/code] Key.addListener(o); how do I be able to reduce the delay when press key button on the keyboard ? Thank,
![]()
Changing Path Of Shared Object
Can anybody tell me how to change the path of shared object default path to any D or E drive.. E.g : Default path like C:\Documents and Settings\TempName\Application Data\Macromedia\Flash Player\#SharedObjects\D8F43EBD\localhost\Temp\Flash1.swf to D:\Sample Plse reply Thank you
![]()
Not sure if this is exactly the right place for this question, but I am very eager to find some learning material or tutorials/articles in creating games using Flash 8 (which uses ActionScript I believe?). The only thing I have really done in Flash so far is create a slide presentation with forward/back buttons that is a tutorial for Delphi that I put up on my site. I am looking for some basic flash game tutorials to get me started, so I can see some real code to play with, like uhh Snake, Tet
![]()
When I first decided to learn actionscript, I had no idea where to start. However, I had come across this website [url="http://www.gotoandlearn.com/"]http://www.gotoandlearn.com/[/url] It helped me in many ways, but mostly because I was trying to make a media player =P. Have a look at it on my old website: www.hondapv.zxq.net I think thats the url anyway, its in the videos section. Hope this helped some people.
![]()
Hi! I've recently started to try doing some flash stuff, and I've been having a couple of problems. 1. Last night I was trying to get a square to move around with the arrow keys, I got this to work, but then I wanted to try and make it so that if it runs into a wall, it stops. I tried heaps of things but I couldn't get it to work. The wall instance name is Wall1 and the square is Square1. Can anyone help me? 2. This morning I was playing around with it again, and I got this cir
![]()
Note: How To Retrieve Variables From Function To Another
I have been having troubles with this but I found out a solution to this. The problem is to declare variables inside a function and retrieve its value from another function--but that doesn't work. Here is an example of the wrong thing to do: [code] function firstFunc () { var aVariable = oneValue; } function getVariable () { trace (aVariable); } [/code] The trace would return (undefined) because it is undefined in that exact function. [b]Solution: [/b] do not
![]()
Flash9/as3 As Opposed To Flash8/as2?
I'm building the basic blocks for my first attempt at a Tower Defense type game, and it's going reasonable well. But there may become slightly heavier situations in the full game where performance could become a problem (mostly with many built towers on screen). Would my flash8/as2 project be mostly compatible and loadable in the new flash? and would the performance be worth the jump generally? Is there any major changes from Flash8 to Flash9 that anybody is aware of?
![]()
Where Can I Seek Help On Flash Coding ?
where I can speak about flash programing, because I have a few questions..?
![]()
Well Action Script can be a pain in the ass sometimes, especially if you have no clue about programming, or other languages. This tutorial will let you learn the speceific action script code you need for certain effects on your animations, without having to learn it all, but instead part by part depending on your needs. [url="http://www.actionscripts.org/tutorials.shtml"]http://www.actionscripts.org/tutorials.shtml[/url] You can even save yourself the reading time and download examples inste
![]()
Having Problems With Saving Xml File
Hi, I'm trying to make a guestbook using PHP and XML but I can't seem to save my XML when i try to save it. I use the XML.send() function to send the raw_post_data to be saved onto my guestbook.xml file. Somehow, it doesn't seem to save it. Can anyone help me? Here's the php code [code] <?php $filename = "guestbook.xml"; $raw_xml = file_get_contents("php://input"); print $raw_xml; $fp = fopen($filename, "w"
![]()
where can i get some good action script 2.0 toturials?
![]()
hello, i am new user of flash and action script. currently, i am using Flash MX 2004 and creating a checkbox.however,what should i do to trace whether the checkbox is checked or not...i tried to use getValue() but it seems to be malfunctional....does this function no longer exist in Flash MX 2004? is there any other way? please help, i have been trying to get the checkbox value for few days already but still fail to do that...
![]()