ActionScript 3.0 :: Using Flash For Making Animations And Small Simple Applications?
Jun 18, 2010
I have posted the following in the Adobe forums a couple of days ago. I didn't get a respond and I also think I accidentally posted it in the wrong forum. So here's the post:Let me introduce myself. My name is Wisse and I have been working with Adobe products since I was a child at the age of 8 (10 years ago). Well, then it was called Macromedia Flash but you understand what I mean. I have always been using flash for making animations and small simple applications (for presentations and games) in my spare time. I also use photoshop and dreamweaver for making sites and other things. So I will soon order the new CS5 web design collection.
I have a big (biggest so far) project coming up and before I really started I thought it'd be best to orient on what Flash application(s) to use and how I will make this project. So here is the plan:I am making a dutch driving exam site where people can take practice exams for a small text message fee. The application will have to look slick and work smoothly. I made this to clarify what the application has to do.I have never worked with Flash Builder and Catalyst but I kind of like the idea of making nice looking interfaces using Catalyst and then export them to Flash Builder. But as I just said, I have never worked with Flash builder and so I don't know whether I will be able to make this on Flash Builder (due to it's complexity). Flash builder also has some nice options for accessing external data (the XML, HTTP API and PHP in this case). Catalyst's data list designer and transition animator will save a lot of time and effort when compared to doing it manually in Flash Pro. The big issue here is that I have no idea how to script the rest in Flash builder. but I want to make to be sure that Builder is the best way to go before doing so.But on the other hand, I am quite familiar with flash and that could also save time. Flash is a bit harder to use when I want to make a good UI and Flash builder wins when you look at the server communication and the debugging tools.
View 5 Replies
Similar Posts:
Oct 13, 2011
I'm making a small Flash game, which is rotating rings in an image to create a coherent picture. Think of the puzzles in Assassins Creed.I have three scenes set up, one with the puzzle, one with a fade to white transition, and one with a congratulatory screen.
I have this code to check if the orientation of the rings match, but I'm really new to actionscript so I'm not sure if it's right or not.
function orientationCheck()
{
if (center.orientation == 0 && ring1.orientation == 0 && ring2.orientation == 0 && ring3.orientation == 0 && ring4.orientation == 0)
[code]....
Unfortunately it keeps playing through the movie and not giving the player time to solve the puzzle.
View 9 Replies
Apr 23, 2007
Just wondering where to get the info and help to start creating applications for Apollo??
View 11 Replies
Jan 4, 2006
i've been trying to code a small variation into the normal roll over roll out animations... i want the animation to stay on the last frame once i click the button. but when i put the code in it dosent even bother playing the rollover/out animations it just goes to the end frame...
Code:
stop();
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
[code]....
View 2 Replies
Feb 9, 2009
I've been learning actionscript 3 for the past few days and really enjoying it. However I've spent hours trying to find out how to do something very simple in HTML. Say I have a form like this...
<form id="form1" name="form1" method="post" action="http://website.com/form">
<input type="text" name="your-name" id="your-name" />
<input type="text" name="email" id="email" />
<input type="submit" name="submit" id="submit" value="Submit" />
</form>
How do I make it in Actionscript 3?
View 6 Replies
Apr 28, 2009
I am trying to program a simple chat program. I have looked all over the net for an easy to use tutorial for exchanging information between Flash 5 and a MySQL database. The reason this is so hard is because I just started PHP and MySQL last week.
A. Sending 1 line of text to a table in a MySQL database via PHP.
B. Allow flash to retrieve the latest line of text from a table.
View 6 Replies
Apr 17, 2011
Is there a really simple way of creating a Flash time/date signature? I did a couple videos in sort of a surveilance camera style. So I was hoping to do an overlay with the date and have the time going up in seconds.
[URL]
I can think of some tedious long ways of doing it, just wondering if there's an easy way to do it in AS3
View 1 Replies
Jun 3, 2010
I am trying to make the SIMPLEST POSSIBLE MP# player using the player component preinstalled in flash.It is very simple, the code is as follows:
Code:
on (release) {
player.contentPath ="Song.mp3"
player.play()
}
("player" is the mp3 component)
This works if I want a single track to be selected and played.Now, I need it to AUTOMATICALLY LOAD THE NEXT TRACK, which I will input in the code.I am thinking something like this:
Code:
player.onSoundComplete = function() {
player.contentPath ="Song.mp3"
player.play()
};
But this is not working.
PS: I know an XML file would be the best here, but I don't want to use it. I just want to enter the next track's code inside the swf.
View 2 Replies
Mar 29, 2009
I started creating a simple navigation bar: [URL]
But decided to make individual buttons: [URL]
As you can see the latter repeats, however the code (after about an hour checking it seems to be identical:
Actions for frame one:
_root.buy_mc.onEnterFrame = function() {
if (mouse_over_buy_mc) {
_root.buy_mc.nextFrame();
} else {
_root.buy_mc.prevFrame();
}};
Actions for invisible button:
on (rollOver) {
_root.mouse_over_buy_mc = true;
} on (rollOut) {
_root.mouse_over_buy_mc = fstartlse;
}on (release){
getURL("[URL]");
}
View 7 Replies
Jul 14, 2009
I was wondering how would i go about making a simple application that can be run on a website that can:
-show a opening page that will stay for 5 seconds (for advertisments)
-show random pictures (well they will only be text)
-can change slide by clicking on screen.
View 1 Replies
Dec 22, 2006
making Guestbook and text-chat application over LAN connection. Are php and mySQL required? and about the chat, how do we really use the flashcomm?
View 7 Replies
Apr 29, 2011
I'm trying to practice making a simple video phone app so I'm trying to make a program to send a video and recieve a video using Cirrus from Adobe. I'm having trouble recieving the stream though. Here is the cod that I'm using:
[code]...
Inside of the getVideoReveiver() function I'm getting the flag to go off from writeText("flag") then I get and output in the text box of:
NetStream.Play.Reset
NetStream.Play.Start
from the netStreamHandler, but the video never shows up in the receiving video element.I'm running this is two different videos of the same computer and taking the nearID from one stream and pasting it into the textInput theirID. I'm not sure what to try next?
View 1 Replies
Dec 16, 2009
How do i use the on(dragover), becuase i am making a simple randomness game,(to start off) because i have something that you can drag, and i want to make it if you drag the thing over it it takes you to a new keyframe.Here is the movie clip i want to be drug on: (nothing happens)
Code:
on(dragOver) {
gotoAndStop(3)
}
Heres the code that you can drag the item(works)
Code:
on(press) {
startDrag(this)[code].....
View 1 Replies
May 20, 2011
how to respond when a rectangle hits another rectangle? I already know how to detect the collision, I just don't know how to respond to it. I'm just trying making a simple side-scrolling platform game where I have platforms I can walk on and bump against on all sides.
View 9 Replies
Nov 24, 2010
making my image gallery, but it only works as each image in the array is clicked. Now I am trying to make the gallery move automatically to the next image in the array every 5 seconds while still giving the user the ability to click on an image to view the one that they want.Here is my code so far (like i said it works great, but only as a click-able gallery):
import flash.display.Loader;
import flash.net.URLRequest;
import flash.events.Event;
import flash.display.Sprite;
[code].....
View 1 Replies
Nov 18, 2010
making a simple game with video stills matching a running audio track.my audio is an MP3 i built in GarageBand. all works well in flash, but when rendered to QT, the audio and video go out of sync, and some video drops out too.have put all audios on their own layer and streamed them all too, set settings in Publish to 64, but still have same problem
View 1 Replies
Aug 20, 2011
converting my swf to exe and app. I know that there are several options available. My application will be frequently updated so update feature is essentions for me.
p.s. As another option, I can make app and exe out of a loader app that will load main application module every time it is updated.
my main concern is about build in update feature inside projector eg. Mac app will be able to check for new version of my app automatically...
View 4 Replies
Jun 28, 2010
Flash seems to crash/freeze when clicking through to other applications.
i cant get any work done because its crashign all the time.
View 2 Replies
Mar 21, 2012
I'm having trouble with building iOS applications in flash. I just bought an iPad and want to start building apps for it. I hav done simple apps for iPhone before but nothing too fancy. The problem is, I can build it and compile it fine but when I try to install on my device it comes up with the error saying:
"ITunes: 'APPNAME' failed to install." I can compile it as an iPhone app and it works fine. I'm pretty sure I've got my provisioning right because I have both my iPhone and iPad devices added. Anyone got any ideas of why my apps only work while I compile them as iPhone apps?
View 3 Replies
Dec 30, 2009
flashwatir appears to be dead.is there anyway I can interact with objects in flash apps ?ike clicking button and such from a gui-less linux server ?likeflashapp.button.click("flash button")puts flashapp.button.text # returns the text label of flash button
View 2 Replies
May 14, 2011
When I'm making projects with Flex (or Flash Builer) the end result usually performs much better than a similar level project made with the Flash authoring tool. I know Flash IDE is rather for animations and design heavy works so you can't really compare these 2 tools, but this question is bugging me for a long time.If apps made with Flex (or Flash Builder) are really faster and less CPU intensive - why is that?
View 1 Replies
Mar 16, 2011
I have a problem with Developing iOS Applications on Windows with using Adobe CS5.
I have developed an applicaition with flash. There is a PROBLEM about loading external swf. If there is any actionscript code on external swf, the application does not run on my ipad. When I delete the script, It works properly.
View 1 Replies
Jun 21, 2011
Is there a nice way to integrate several air apps into one Showcase Application, without having to modify the original Air App Code to fit into the Showcase ?Without necessary modifcations it would be possible to easy update the containtng app.
View 2 Replies
Feb 25, 2010
how do i save a symbol ive made in the common library, or somewhere so that i can use the same symbol in all my flash applications
View 1 Replies
Oct 15, 2009
What would be the best way to secure .net web services used by a flex application (both desktop and browser) that requires login? I thought about requesting the user and password in every method of the web service, and having them stored as variables in the flex app, but I don't feel like this is the most elegant way.
View 2 Replies
Jan 22, 2010
What would be the best for developing rich internet applications? FLASH or Microsoft Silverlight?
View 7 Replies
Mar 9, 2011
From what i have googled out so far, it seems that we will have to host the flash file(swf) in a website and load the html page in the application in a webview... Is'nt there any other way to do it ?? Is there any library or something to integrate them ? Flash lite ?
View 2 Replies
Feb 6, 2012
Are flash applications forced to use a browser's set proxy.
Such as a proxy that has been set on foxy proxy.Or will it be treated as a separate application that can see the user's real IP address.
View 1 Replies
May 9, 2005
I saw this program 'asap' (i think it's called, will try and get more info about it) but it's flash that uses the Flash player settings screen to setup a way of capturing the users desktop or any application currently running.
How can this be done? I thought that the only limitation in flash is to not interact with the users machine (writing files etc) because this is a security risk.
View 1 Replies
Aug 25, 2010
a good framework for developing Flash AS3 applications? I have worked on two Flash frameworks till date: GAIA and PureMVC. While GAIA is more focused on Website development and I find PureMVC a bit complex as I was not able to find anywhere the best approach to use the framework efficiently.
View 4 Replies