versione italiana versione italiana
FlepStudio logo

Actionscript 3.0 Blog with Tutorials and free resources for Flash

>> Free Flash files

Events Scroller | Images Scroller | Multi FLV Player | Flash CS3 GuestBook | News Scroller | Tortillas - creator of simple graphs for statistical data | 3D images visualization free utility | Flash CS3 Uploader - free utility | Mini Gallery | Flash CS3 puzzle | Hit counter Flash CS3 + XML + PHP | Multi Audio Player | Newsletter module | Bluring Slide | Monthly Calendar | ShoutBox | StripGallery - Flash CS3 and XML gallery | Email Form PRO | MaskMenu | Elastic Gallery | PhotoNavigator | Pixellation - SlideShow | Email form | Analogue clock | FullScreen images gallery | Rotating header | Flash Portfolio | Polls System | Products Exhibitor | Mini Navigator | Drag Menu | Horizontal Menu | Quizzer | Mini Navigator 2 | Reflect Gallery | Events Scroller - version 2 | Rotating header 2 | Magnifying Glass | Zoomify | MenuVibration | Email form Flash CS3 and ColdFusion 8 | News Scroller 2 | Simple GuestBook | Captcha for Flash CS3 | Email form with pictures - Flash CS3 and PHP | FlepCharCode | Mac Menu | Header | Memory Game - Flash CS3 game | Flash CS3 CountDown | FLV Slide Show Videos | Illusion - images gallery | Tell A Friend | Flash RSS reader | ToolTip Flash CS3 - CS4 | Sliding Email Form | ComboMenuHeader | ComboMenuHeader PRO | Mac Front Row in Flash CS3 | FlaTwit - Flash and Twitter - twit this | Store Locator | Multi Video Player MAC style | Flash XML editor | BlurSlideShow | ImagesViewer | Video Gallery | Flash XML editor gallery 1 | 15 numbers game | Tipper vertical scroller with Iphone effect | YouTube Video Player by categories | GuestBook Flash CS4 | tweened menu | Twitter RSS reader | Xmas Flash header | Events Scroller - version 3 | TripleBox | BlackComboBox | Inertial Photo Portfolio | Fullscreen Background | Multi Categories Images Gallery | DropDown menu | CountDown version 2 | Advertising Flash banner | Quizzer version 2 | UEFA RSS reader | Flash Scrolling Portfolio | Video Player | Flash Gallery | Images Scroller version 2 | Images Scroller version 3 | Images Scroller version 4 | Europe map | Events slide show | Banner Rotator | Flash and Flickr image gallery | Flash and Picasa image gallery

Using Flash CS5 TLF ( Text Layout Framework ) with Actionscript 3.0

by admin September 1, 2010 Flash CS5

From Flash Professional CS5, you can add text to a FLA file using a new text engine called the Text Layout Framework (TLF). TLF supports a wide range of functions, layout and text formatting attributes. The text TLF gives you more control over text than the previous text engine, which is now called classic texts. [...]

Free Flash CS5 and Google Picasa gallery

by admin August 30, 2010 Flash CS5 utilities

FlepStudio has created a new free utility CS5 Flash and Actionscript 3.0. This is a Flash CS5 image gallery managed by Google Picasa. This gallery lodas RSS albums of a Google Picasa account. Just enter the URLs of feeds in the external XML file. The gallery will load all the feeds and display all the [...]

Flex 4 DateField component and XML

by admin August 9, 2010 Flex 4

Using DateField component of Flex 4 with MXML, Actionscript 3.0 and external XML file Main.mxml: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" addedToStage="init()" pageTitle="Flex 4 DateField Tutorial"> <fx:Script> <![CDATA[ import com.flepstudio.utils.*; import flash.events.*; import mx.collections.ArrayCollection; import mx.controls.*; import mx.events.*; private var XML_PATH:String="http://flepstudio.org/FlashBuilder/tut_5/XML/list.xml"; private var xmlLoader:XMLLoader; private var xmlData:XML; private var datefield:DateField; private var [...]

Free Flash Whois

by admin August 5, 2010 Flash CS3 utilities

FlepStudio has created a new free utility CS3/CS4/CS5 Flash and Actionscript 3.0. I found this API: http://www.phpace.com/scripts/sams-whois/ and I decided to create a WHOIS tool developed with Flash and PHP. I custommed the PHP script by Sam Yapp to work with Flash. Whois is a query/response protocol that is widely used for querying databases in [...]

Embed SWF into HTML 5 pages and flashvars

by admin August 3, 2010 Mix

Version 5 of HTML supports the embed tag. This tag allows us to easily insert an SWF in our HTML5 page. Here is the code to insert a SWF. SWF with background <embed src="main.swf" width="550" height="400" /> SWF with tansparent background <embed src="main.swf" width="550" height="400" wmode="transparent" /> SWF with Flashvars <embed src="main.swf" width="550" height="400" flashvars="id=hello [...]

Free Flash and Flickr image gallery

by admin July 30, 2010 Flash CS3 utilities

FlepStudio has created a new free utility for Flash CS3 / CS4 / CS5 and Actionscript 3.0. This allows Flash to display photos of the feed of a Flickr account. It ‘s very easy to manage, just enter the url of the feed you want to see the Flickr pictures. The title is clickable and [...]

FlepStudio is looking for a talented web designer

by admin July 14, 2010 News

FlepStudio is looking for a Flash / Photoshop web designer for important collaborations. Requirements: Excellent knowledge of Adobe Photoshop Good knowledge of Adobe Flash ( no Actionscript required ) Very talented Knowledge is defined by the Oxford English Dictionary as expertise, and skills acquired by a person through experience or education. Anyone interested can contact [...]

Flash and Bit.ly free banners rotator

by admin July 12, 2010 Flash CS3 utilities

FlepStudio has created a new free utility for Flash and Actionscript 3.0. This Flash allows you to rotate banners. Banners are external images that are loaded. Each banner has a link destination and keeps track of links using bit.ly. Bit.ly is a service that allows you to create short URLs and trace traffic. To use [...]

Free slide show of events using Flash CS3- CS4 – CS5

by admin July 3, 2010 Flash CS3 utilities

FlepStudio has created a new free utility CS3/CS4/CS5 Flash and Actionscript 3.0. It is a little slide show of events and images. It loads data from an external XML file and descriptions of the images support the links in the text. The thumbnails of the images are clickable to view the image in original size. [...]

Using List and DataGrid components of Flex 4

by admin July 2, 2010 Flex 4

Using List and DataGrid components of Flex 4 with MXML, Actionscript 3.0 and external XML file. Main.mxml: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" addedToStage="init()" pageTitle="Flex 4 List and DataGrid Tutorial"> <fx:Script> <![CDATA[ import com.flepstudio.utils.*; import flash.events.*; import mx.collections.ArrayCollection; import mx.controls.*; import mx.events.*; import mx.validators.ValidationResult; private var XML_PATH:String="http://flepstudio.org/FlashBuilder/tut_4/XML/list.xml"; private var xmlLoader:XMLLoader; private var [...]

Free Flash Europe map

by admin June 24, 2010 Flash CS3 utilities

FlepStudio has created a new free utility with Actionscript 3.0 and Flash. It ‘s a Flash map of Europe. This map shows all the states in Europe and every state is selectable. From external XML file, you can configure several options: all colors of the map, all the colors of mouse states, nations toggle, add [...]

Free scroller images version 4 for Flash CS3/CS4/CS5

by admin June 16, 2010 Flash CS3 utilities

FlepStudio has created a new free utility for Flash and Actionscript 3.0. This is the fourth version of the scroller of images that you already know. It loads external images and displays them using a transition effect. To browse the images there are two buttons. The description of the images support HTML. You can change [...]

Images Scroller version 3 Flash CS3 – CS4 – CS5

by admin June 9, 2010 Flash CS3 utilities

FlepStudio has created a new free utility for Flash and Actionscript 3.0. This is the third version of the scroller of images that you already know. It loads external images and displays them using a transition effect. To browse the images there are two buttons. The description of the images support HTML. You can change [...]

Free Flash Images Scroller Actionscript 3.0

by admin June 1, 2010 Flash CS3 utilities

FlepStudio has created a new free utility for Flash and Actionscript 3.0. This is the second version of the scroller of images that you already know. It loads external images and displays them using a scrollbar. The description of the images support HTML. You can change the MovieClip in the library of the FLA to [...]

Flex 4 ComboBox MXML and external XML

by admin May 31, 2010 Flex 4

Using Flex 4 ComboBox with MXML, Actionscript 3.0 and external XML file. Main.mxml: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" addedToStage="init()" pageTitle="Flex 4 ComboBox Tutorial"> <fx:Script> <![CDATA[ import com.flepstudio.utils.*; import flash.events.*; import mx.collections.ArrayCollection; import mx.controls.*; import mx.events.*; private var XML_PATH:String="http://flepstudio.org/FlashBuilder/tut_3/XML/list.xml"; private var xmlLoader:XMLLoader; private var xmlData:XML; private var combobox:ComboBox; private var label:Label; private [...]

Flash gallery unlimited categories

by admin May 26, 2010 Flash CS3 utilities

FlepStudio has created a new free utility for Flash CS3/CS4 and Actionscript 3.0. This is an image gallery with unlimited categories. It loads data from an external XML file and descriptions of the images support hyperlinks in the text. Fullscreen option available. It is also possible to associate a date and a title to each [...]

Using DataChooser component of Flex 4

by admin May 24, 2010 Flex 4

Using DataChooser component of Flex 4 with MXML, Actionscript 3.0 and external XML file. Main.mxml: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" addedToStage="init()" pageTitle="Flex 4 DataChooser Tutorial"> <fx:Script> <![CDATA[ import com.flepstudio.utils.*; import flash.events.*; import mx.controls.*; import mx.events.*; private var XML_PATH:String="http://flepstudio.org/FlashBuilder/tut_2/XML/list.xml"; private var xmlLoader:XMLLoader; private var xmlData:XML; private var date_chooser:DateChooser; private var label:Label; private [...]

Flex 4 DataGrid using MXML, Actionscript and external XML file

by admin May 22, 2010 Flex 4

How to populate a DataGrid component for Flex 4 with MXML, Actionscript 3.0 and external XML file. Main.mxml: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" addedToStage="init()"> <fx:Script> <![CDATA[ import com.flepstudio.utils.*; import flash.events.*; import mx.controls.*; import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn; import mx.events.*; private var XML_PATH:String="http://flepstudio.org/FlashBuilder/tut_1/XML/list.xml"; private var xmlLoader:XMLLoader; private var xmlData:XML; private var label:Label; private var datagrid:DataGrid; [...]

Connecting Flex 4 and Zend using Flash Builder 4

by admin May 20, 2010 Flex 4

With the release of Flash Builder 4, Adobe and Zend have greatly improved the integration between Flex and the Zend PHP framework. The primary key of this collaboration is the integration of Action Message Format (AMF) supported by Zend Framework. AMF is an open format, high-speed rail that allows the Flash Player (Flash, Flex, Air) [...]

Free Flash Video Player

by admin May 19, 2010 Flash CS4 utilities

FlepStudio has created a new free utility for Flash and Actionscript 3.0. thanks to 365psd This is a video player. It loads external videos and it is designed to work with Flash CS4 and Flash CS5. Can be used from HTML as a widget. Supports all video formats available through the Adobe Flash platform: MOV, [...]