Actionscript
The Color object in flash
posted byjayanthiinActionscript
The color object in flash allows us to set RGB color value to movie clip symbols. They also help us retrieve the value once set
Reviews0
PriceFree
Views433
Mouse rollover photo effect
posted bykreso007inActionscript
Using this thoroughly explained, detailed flash lesson, you will see how to create simple mouse rollover photo effect.
Reviews0
PriceFree
Views1559
Mask dragging
posted byflashfridge.cominActionscript
This, step by step, detailed action script lesson, will show you how to create mask dragging using the mouse cursor.
Reviews0
PriceFree
Views470
Active image presentation using the mouse
posted byflashfridge.cominActionscript
This, step by step, detailed action script lesson, will show you how to create trendy image presentation using the mouse and action script code.
Reviews0
PriceFree
Views976
Moving letters with mouse
posted bykreso007inActionscript
This, step by step lesson, will show you how to create that every letters follow the mouse using the action script code.
Reviews0
PriceFree
Views772
Glow obejct Follow Mouse on click
posted byflashfridge.cominActionscript
In this thoroughly explained, detailed flash lesson, I will show you how to create that any object, follow the mouse on click using the Action Script 3.
Reviews0
PriceFree
Views666
Glow effect in flash using actionscript
posted byjayanthiinActionscript
In this tutorial, with the help of actionscript, we shall draw a star, fill color to it and provide outer glow to the same. We shall also include actionscript event to change glow color.
Reviews0
PriceFree
Views574
Drawing with actionscript
posted byjayanthiinActionscript
This tutorial will teach us on how to draw at runtime using actionscript code.
We will use 'drawing methods' of 'movieclip class' to draw shapes in the SWF file in response to events. The following are the movieclip class drawing methods
beginFill( )
beginGradientFill( )
clear( )
curveTo( )
endFill( )
lineTo( )
lineStyle( )
moveTo( )
Reviews0
PriceFree
Views781
Drawing shapes using the Action Script code
posted bykreso007inActionscript
In this thoroughly explained, detailed lesson, I will show you how to draw any shape using a little action script code.
Reviews0
PriceFree
Views792
Sound Controller
posted byjayanthiinActionscript
In this tutorial, we will learn,
To attach external .mp3 file to swf
To create preloader for sound file
To create play / stop button
Volume controller
Balance (Pan) controller
Reviews0
PriceFree
Views525
Apply Glow effect on image using the AS
posted bykreso007inActionscript
In this thoroughly explained, detailed lesson, I will show you how to apply Glow filter on any image using the AS code.
Reviews0
PriceFree
Views672
Image animation using the mouse click
posted bykreso007inActionscript
This, step by step action script lesson, will show you how to create image animation using the mouse click.
Reviews0
PriceFree
Views732
Blur circular animation using the AS
posted byflashfridge.cominActionscript
This, step by step, detailed action script lesson, will show you how to create circular animation. You can use this animation for some flash banner.
Reviews0
PriceFree
Views652
Orbiting animation using the AS
posted byvuletavinActionscript
Using this thoroughly explained, detailed and quickly flash lesson, I will explain to you how to create orbiting animation using a little AS code.
Reviews0
PriceFree
Views768
Zoom in Zoom out using the + and - buttons
posted byflashfridge.cominActionscript
Using this thoroughly explained, detailed flash lesson, I will explain to you how to zoom in, zoom out any object, image, movie... using the + and - buttons and a little action script code.
Reviews0
PriceFree
Views1796
Fading objects with actionscript code
posted byjayanthiinActionscript
While working with movie clips on stage, we you might want to fade the movie clip in or out instead of toggling its _visible property. There are two procedures to animate a movie clip
By using 'onEnterFrame' event handler
By using 'set interval()' function
Reviews0
PriceFree
Views887
Flash actionscript tutorial to create blur effect at runtime
posted byjayanthiinActionscript
BlurFilter (flash.filters.BlurFilter)
flash.filters package contains 'BlurFilter' class, which allows us to apply 'blur visual effect' to movie clips, text fields, and buttons at runtime.
Reviews0
PriceFree
Views541
Flash 8 actionscript tutorial to set volume of externally loaded mp3 file
posted byjayanthiinActionscript
In this tutorial, we will learn how to adjust volume of an externally loaded MP3 file in flash. As we all know, to get this done, we are basically revolving around sound object. The method used to adjust sound volume is setVolume() of sound object. Similarly we can even retrieve the already set volume by getVolume() method, getVolume() returns the sound volume level as an integer from 0 to 100, where 0 is off and 100 is full volume. The default setting is 100.
Reviews0
PriceFree
Views794
Preloading MP3 files
posted byjayanthiinActionscript
To preload MP3 file, we can use 'setinterval()' function to create polling mechanism that checks the bytes loaded for a Sound or NetStream object at predetermined intervals. We can use 'Sound.getBytesLoaded()' and 'Sound.getBytesTotal()' methods to track downloading progress of MP3 files.
Reviews0
PriceFree
Views524
Flash 8 Actionscript tutorial to load and use external mp3 files
posted byjayanthiinActionscript
To load external MP3 files at runtime, we need to use loadSound() method of Sound class. This method has 2 variable as shown below,
public loadSound(url:String, isStreaming:Boolean) : Void
The isStreaming parameter indicates whether the sound is an event or a streaming sound.
Reviews0
PriceFree
Views814