Want to hire a development team?
Search Filter
Search Filter
Sort Listings By
Show Only
By Customer Review
Licence Type

Actionscript

Results 1-20 of 324
Table Engine in ActionScript 3
Table Enigne for easy making of data forms, data view, grids and tables in easy use like Tables in HTML that can contains any type of Flash DisplayObject. Written in ActionScript 3.
(0 ratings)
Reviews0
PriceFree
Views638
Flash AS3 Wave Player
In my attempt to dynamically create musical instrument sounds in Flash, I have created this wave player. The idea was to draw out waves manually, to get an idea of what they sounded like. It's somewhat processor heavy.
(0 ratings)
Reviews0
PriceFree
Views527
Bomb Roller
Collect as many stars as you can before the bomb explodes Bomb Roller is an optimized game for mobile devices. Control bomb by using accelerometer of the device. Bomb Roller supports multiple devices, This game automatically changes its controls according to the presence of accelerometer in the device. It has two control modes Mouse and Accelerometer. If the device does not have accelerometer in it then the game switches controls to mouse. Bomb Roller is optimized for low processor speed and memory consumption which makes it suitable for many mobile devices. The game can easily be ported to many platforms like android etc.
(0 ratings)
Reviews0
PriceUSD 10.00
Views454
Flash / ActionScript class for Scroll text
A Flash / ActionScript class that you can use it to add text into a text field with buttons and a Scroll bar, in your Flash presentation. The text can be loaded from an external file or added directly in the script.
(0 ratings)
Reviews0
PriceFree
Views593
File Browser App in Flash: Wrapping Up
Have you ever wondered how you could create a file browser in Flash? Well, if yes, or you are just eager to learn new stuff including working with Flash and PHP , then this tutorial is just what you need. We won’t just be creating a File browser, we’ll be building an entire custom UI. Additionally, we’ll be writing several classes, such as code for selecting multiple files and detailed explanation for creating a flexible dialog box class that can be used in other projects.
(0 ratings)
Reviews0
PriceUSD 4.00
Views489
File Browser App in Flash: UI and File Management
Have you ever wondered how you could create a file browser in Flash? Well, if yes, or you are just eager to learn new stuff including working with Flash and PHP , then this tutorial is just what you need. We won’t just be creating a File browser, we’ll be building an entire custom UI. Additionally, we’ll be writing several classes, such as code for selecting multiple files and detailed explanation for creating a flexible dialog box class that can be used in other projects.
(0 ratings)
Reviews0
PriceUSD 4.00
Views472
AS3 Switch Case
The AS3 Switch Case compares a value against a number of other values, executing code dependent on the matching value. The AS3 Switch Case can be used with Flash, Flex, or AIR as all of these are programmed with Actionscript 3.
(0 ratings)
Reviews0
PriceFree
Views414
Create a simple scroller with Flash and as3
This is a basic tutorial, that will match your creativity using OOP to scroll anything in Flash.
(0 ratings)
Reviews0
PriceUSD 1.00
Views425
How to print movieclips using PrintJob in as3
Printing something in Flash isn’t really rocket science, but there are a couple of details that will make your job easier as well as improve the quality of the end result. Today you will learn how to print movieclips using PrintJob in AS3 and Adobe Flash.
(0 ratings)
Reviews0
PriceUSD 1.00
Views390
ClassPaths and Packages in Adobe Flash Cs5
Learn how to work with ClassPaths and Packages in Adobe Flash Cs5
(0 ratings)
Reviews0
PriceUSD 1.00
Views392
Yahoo Weather App in Flash
In this tutorial I’m gonna show you how to create your own Yahoo Weather App in Flash, using AS 3.0 and Adobe Flash.
(0 ratings)
Reviews0
PriceUSD 1.00
Views438
Manipulating a loaded image with BitmapData in AS3
It’s very useful to work with external files and load them in Flash, using a preloader for example or adding some nice effects. Let’s see how to manipulate a loaded image with BitmapData in AS3 using few lines of code.
(0 ratings)
Reviews0
PriceUSD 1.00
Views430
Actionscript (as3) Javascript Communication
Often we need to have different parts of a website talk to each other. This can get tricky when we are using multiple technologies and need the communication in real-time. Going from flash to html is done through javascript on the browser side and in actionscript we use something called ExternalInterface. The ExternalInterface class is an application programming interface that enables straightforward communication between ActionScript and the SWF container– for example, an HTML page with JavaScript or a desktop application that uses Flash Player to display a SWF file. We can send things form actionscript to javascript as well as from the html and javascript into flash and actionscript.
(0 ratings)
Reviews0
PriceFree
Views510
Actionscript Drag & Drop Tutorial | Vertical and Horizontal Flash Sliders
A specific use of drag and drop which is a bit more complicated than your average drag & drop needs is a slider. You can use components, but I usually prefer using my own graphics and code, partly because the components tend to bloat the filesize of the swf and partly because that’s just how I am, I like to make it myself.
(0 ratings)
Reviews0
PriceFree
Views498
ColorTransform | RGB, Hex and random colors | Actionscript Color Tutorial
I’ve put together this flash to show how to set a movieclip to a certain color, I’ve had to do this at runtime and had to go by different values such as a hex number, rgb values and have even wanted to just set a random color, so this example does them all! It’s even nice for translating a Hexadecimal color into RGB color. Flash uses a Transform object to control certain properties of movie clips. To set color we need to use a Transform object as well as a ColorTransform object. ColorTransform objets are used to, you guessed it, tell the Transform object what color we want to set our clip to. It was a little unintuitive for me to learn, but now it makes sense, or at least enough sense to use.
(0 ratings)
Reviews0
PriceFree
Views441
Actionscript Key Listener Tutorial AS3
Allowing users to use the keyboard as well as the mouse is a great way to incite interaction with your flash. This tutorial will show how to code it and what you can do with some keyboard events. This changed with actionscript 3, note this tutorial is AS3. altKey (Boolean) Indicates whether the Alt key is active (true) or inactive (false). charCode (uint) Contains the character code value of the key pressed or released. ctrlKey (Boolean) Indicates whether the Control key is active (true) or inactive (false). keyCode (uint) The key code value of the key pressed or released. KeyboardEvent keyLocation (uint) Indicates the location of the key on the keyboard. KeyboardEvent shiftKey (Boolean) Indicates whether the Shift key modifier is active (true) or inactive (false).
(0 ratings)
Reviews0
PriceFree
Views528
Get Current URL and Query String Parameters to Flash
This tutorial / how to / example will show how to get the current url from the browser to flash, and even how to get the query string parameters from the url into actionscript using ExternalInterface.
(0 ratings)
Reviews0
PriceFree
Views409
Get current url to Flash swf using an External Interface call
Many have struggled with the task of getting you swf to read or get the current url showing in the browser, the html page the browser is at which has the swf embedded. Not to be confused with the _root._url which returns the path of the swf file. This would be helpful to know if someone is embedding your swfs on their site, or even customize your swf depending on which page it resides on. There is a pretty simple, yet virtually undocumented way to do this. We have to use javascript by calling External Interface and get the url from the DOM. Window.location.href. Then we must call the toString() function only because ExternalInterface.call requires a function rather than only reading a static property.
(0 ratings)
Reviews0
PriceFree
Views503
Actionscript Javascript Communication
Using ExternalInterface.addCallback() we can expose an actionscript function and make it available to javascript. This would be helpful to have your webpage with embedded flash communicate to your flash swf file and even control it with javascript! Say we wanted to have buttons in the html page that would control an object in the flash. Communication is a two-way road so wouldn’t it be great to be able to go the other way as well, you can! That is the main function of ExternalInterface! In this example/tutorial I will explain both directions of communication with flash and javascript!
(0 ratings)
Reviews0
PriceFree
Views446
How to as3 resize a movieClip and constrain proportions
This is more than just setting the width and height of an object, because that way the image is easily skewed and the natural proportions are messed up. If you want to just use scale you need to know the dimensions of the image being resized, and that’s just not scalable (no pun intended).
(0 ratings)
Reviews0
PriceFree
Views454
Results 1-20 of 324