ActionScript 2.0 :: Programming With Flash MX?
Dec 6, 2009How can you create a car driving game or a man running. I would like some tutorials so I could get use to flash mx.
View 1 RepliesHow can you create a car driving game or a man running. I would like some tutorials so I could get use to flash mx.
View 1 Repliesis there any decent tutorial for flash programming on iphone?
View 2 Replieswhat i mean is, is there a way in AS3, or in programming in general(php, js etc) to make an event fire/activate "WHEN" something does something, as oppose to an if/else if / else statements ? for example, say i want to make an event fire /activate ONLY when a frame label is hit, and thereafter , do something else etc, essentially making it do things one by one down the line according to WHEN certain objectives are met.is there a "when" type of statement etc that will do this as oppose to if/else if etc???
for example, using the above example, instead of me doing something like this:
[Code]...
So I am trying to get better at putting all my code within one action layer and there is a bit of button code that seems to be confusing me.
Whenever I program a button I use the following code:
PHP Code:
on (press){
} on (release, releaseOutside ) {
}
Now I know programming the on(press) command is done like this:
PHP Code:
btnName.onPress = function() {
}
However I am having a hard time with the on (release, releaseOutside ) code. The only way I have been able to do it is like this:
PHP Code:
btnName.onRelease = function() {
} btnName.onReleaseOutside= function() {
}
My question is, is there any way to combine the two onRelease commands?
I am new to Flash and AS-3.0. I am using Flash-CS3 as IDE and AS3 for programming/coding.I have created a ScrollPane component using the following sample AS3 code, which is a sample user-defined function written in ActionScript 3.0:
Code:var sp:ScrollPane = new ScrollPane();
var myClip:MovieClip;
var boxXLoc:int = 0;
var boxYLoc:int = 0;
var boxWidth:int = 140;
[Code]...
Any pointers where i could start learning flash programming. Also i would be really grateful if you could point me to place where i could get free templates for the programming
View 2 RepliesI've got in over my head trying to learn programming, but love it.How would you teach a designer to migrate from design to object oriented programming?
My interest is AS3 in Flash IDE, but any advice is welcome. Looking for a full explanation.
how to programming for Apple GameCenter by Flash ?
View 1 RepliesWas wondering if anyone know of a chat dedicated for flash programming.
View 5 Replieshow to develop a touch screen application using flash action script. It is a kiosk type application.
View 4 Repliesam working on developing and programming for games, having 2+ years experience. Now I want to learn more about Flash Lite and 3D Graohics Programming. me some of the best sites I can check and especially some offline resources/trainings
View 1 RepliesI am trying to program a Flash Game that utilizes all four directions to move the character. (i.e. Pressing up moves the character north, down - south, etc.) The character in the game does not actually move, but the background moves to simulate movement. I need to figure out how to go about programming the walls, though. I have code that recognizes collision, but what is the best way to do it? This is my code:
stage.addEventListener(Event.ENTER_FRAME,handleCollision);
function handleCollision( e:Event ):void{
if(hero.hitTestObject(wall))
{
[Code].....
What programming tests do company's give Flash developers?
I would like to level the playing field for developers and recruiters.
I've heard companies give debugging tests with broken documents you have to fix. Flash developers could include Flash IDE users and actionscript programmers.
Everyone would like to know what to expect and understand some of the blind spots we face. A rundown on "what to be prepared for" may be a right answer. Best anecdote or inside scoop on major companies is good too (don't have to use real names, it's up to you). Perhaps you have an opinion of what is fair or reasonable, I'd like to know.
I was just wondering if there are any good books/resources out there that helped someone out that is pretty terrible when it comes to Math when programming in actionscript, or I guess programming in general. I guess I'm after some sort of resource where it had basic problems which would involve a bit of math, then went through the problem in a detailed way solving the problem but at the same time explained what was going on so I would learn the math and also solve the problem using code.
I don't want to just be told how to do it with a bunch of code I don't understand. Really hoping there is some awesome book out there called '101 guide to maths in programming' or something like this, (hopefully more geared towards flash/actioncsript)
I recently read some forum thread and article talking about Data Oriented Programming. This think seem realy interesting. I tryed to find some exemple, but i did not find any one using ActionScript. I would like to know if it is a good thing to use DOP with AS3 and how exactly this could be done?
View 14 RepliesI wish to program a Pacman game, only it's designed with perspective (3d-like). Since the vertical lines are diagonal, I would think the best way to approach this would be to draw the maze with simple line shapes, then restrict the movement of all objects to those lines (let's call it "thePath"). The movement of objects would be determined by the angle of each segment of thePath. This gets complicated once I need the computer-generated enemies to both move along thePath, and to determine the shortest path to the Pacman.
View 1 RepliesI have been trying to make a tic tac toe game in F8.The code has gone too long,it has repeated many times,hopelessly.
How can I apply OOP(Object Oriented Programming) in flash actionscript like as in Java?[code]...
Any good video courses to learn Flash programming? (Actually action script).
View 3 RepliesIm trying to convert a flash binary-decimal converter to another programming language (TI-Basic). I've got all of it down except one key part. I've got a solid backing of actionscript understanding but find myself unable to understand the following statement:
if (iNumber%2) { bin = "1"+bin; }
from this tutorial
I realize that inumber%2 will return a value being the remainder of inumber divided by 2, but how can this be a conditional? "if (2) { }" doesn't work for conditonals im used to. Or if your a TI-Basic wiz
p.s. how do you wrap actionscript tags around content in a post on the forum?
I just discovered impure.com and was very impressed by what can be achieved in terms of visualizing data using their workspace. Although the platform is free to use, but not open source yet. This causes a few problems because the API section works with .com sites for eg. for ebay, so I cannot visualize ebay listings for regional sites such as ebay.in because the link to ebay.com is hardcoded.I searched around, but didn't find other projects that offer a similar way to work with site APIs and other data sources with the kind of user interface and detail that impure.com does in a realtime way within a browser window.This brings me to the questions:
-What technologies would be involved in creating a similar kind of project
-What are the open source tools that can help develop a fullscreen UI to render the workspace. Are there any alternatives to flash for this, and how do they compare
The goal would be to use standard python data structures, python scripts to do some processing on these data structures, scripts to gather data from csv, json and API sources such as google yahoo, wikipedia and flickr, and scripts to render graphs, tag clouds, network visualizations etc. Then bring them all together into a visual interface that supports drag drop and simple type checking.How would the python backend integrate with the UI.
I want to create a simple game (Adobe Air) based on 2 players using ActionScript 3.Let's assume I want to create online chess game.So that I can play with my friend at work, at home, from anywhere via internet.Should I use flash server? Or something similar for this purpose, or there is simpler way to connect 2 players and make fully functional interaction between them?
View 2 Repliese4x programming extension is native to Actionscript and makes sense to use it over Xpath or any other DOM interfaces. I would like to know from flex community if they had any bad experiences like performance, etc, or any other gotchas.
View 1 RepliesI haven't programmed in a while, and have kind of lost interest, but I want to get back, and I've enjoyed C# the most, a lot more than objective-c and visual basic. So I want to make some games that me and my friends will be able to play next school year. So basically something you can play on the web.
What programming languages deploy to the web?If c# is possible, and a mac with safari/firefox would be able to use it (I can't install plugins, and I don't want to get in trouble for making myself admin again)Flash, Java, etc. If java does, I'd like that most since it's most like c#. Then what libraries/engines would I use? I want to do 2d. And then what IDE would I use?
I don't seem to find any decent AS3 book for learning Object Oriented Design.
I checked several ones but most assume that you are an intermediate or advanced AS3 developer.One like AS3 Design & Patterns is good but starts simple and get really complicated quickly. Another 2 are Object Oriented AS3 and Advanced AS3 with design patterns is TOO ADVANCED. Now we have OOP books but not for the little guy with limited programming experience like me. What are my alternatives? A friend of mine told me get Head First Java and learn from there it explain Java but especially OOP for beginners. What do you guys think I should do? I feel it is a shame that I need to go to Java to learn OOP because AS3 books are not for beginners.
Can u recommend me a good book/e-book/tutorial to network programming in as 3.0 ? I'd like to create a multiplayer game.
View 0 RepliesLet me sum up the game the best I can real quick and then get to the problem. I cannot upload any code because I am under contract. I also know the code is working 100% correct. The game I am working on will have "X" number of large images. The "X" images will then be broken down into smaller images. I have around 3,000 images, all in the Flash Library, classes are named correctly, the files are named and sized correctly, etc. The game works perfectly on images 1-66. When I get to image number 67, the game SWF starts flickering from scene 1 to scene 2 and then back to scene 1 for a non-stop loop. No matter what image I use for #67, the swf flickers. My FLA is around 300MB and my SWF is 102MB.
So, does anyone have any ideas on why adding a 67th image would make the SWF freak out? Could it be some type of file size issue, graphics card issue, virus, etc? I've tried it on multiple computers both PC and MAC.
I'm looking at purchasing a couple of new AS3.0 books, I would say my skill level is basic to intermidiate, and I'd like to push my skills to at least near or at pro levels, what would you recommend?
View 5 RepliesFrom what I understand, ActionScript (.as files) and Action Panel (F9 embedded in Flash) are completely different. If so, which one is better used for game programming and which one is more powerful? Can ActionScript do everything that the Actions Panel can do?
View 1 RepliesIf u have any tutorials, books or links related to this type of code, please forward me for this or my mail id - swamy.webdesigner at gmail.
View 1 RepliesI just read a good tutorial at [URL] about creating simple apps with AIR/FLEX. What are some similar pages and/or good books that I can read to move from "beginner" to "novice"?
View 2 Replies