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

From the category archives:

Mix

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 [...]

Loading multiple images with partial preloader using Actionscript 3.0

by admin February 22, 2010 Mix

Suppose we want to create an images gallery using Flash CS3 or CS4. One of the first things you should consider is whether to load all the images right away or to load one at a time requested by the user. If we want to load them all right away, here’s a method to show [...]

Using textures with Flash and Actionscript 3.0

by admin February 16, 2010 Mix

You know that in HTML sites often use textures (those square images of approximately 100×100)? Have you ever tried to use it with Flash? They are very beautiful especially if used in a Flash site that is shown at 100%. In this case we have to deal even with the resizing of the browser, in [...]

Scale video or image proportionally to stage and resolution

by admin February 15, 2010 Mix

I my last job I had to resize a background video without having stretching it. In practice, the Flash site to which I was working had a video in streaming as background. This video is displayed at 100% and then I had to create a script that resizes the video according to the resolution of [...]

Using Flash cu3er tutorial

by admin December 14, 2009 Mix

var flashvars = {}; flashvars.xml = “http://flepstudio.org/swf/cu3er/config.xml”; flashvars.font = “font.swf”; var attributes = {}; attributes.wmode = “transparent”; attributes.id = “slider”; swfobject.embedSWF(“http://flepstudio.org/swf/cu3er/cu3er.swf”, “cu3er-container”, “576″, “216″, “9″, “expressInstall.swf”, flashvars, attributes); #cu3er-container {width:576px;} Progressivered.com has created a free Flash tool to create 3D slideshows of images. This tool is Flash cu3er. This article explains how to set and [...]

Flash CS4 and ThickBox

by admin November 26, 2009 Mix

Do you want work with Flash CS4 and ThickBox ? Here is a couple of examples that show how to call ThickBox using Actionscript 3.0 . >> VIEW THE DEMO The SWF with two buttons is embed in a html file with the following code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> [...]

Embedding SWF with valid W3C HTML code

by admin October 16, 2009 Mix

If you always try to create websites that are validated according to W3C specifics and royalty-written code semantically correct, sometimes you will ever have problems with validating the code to insert the SWF in your pages. The code of the HTML file that creates Flash, or even one that creates Dreamweaver or other HTML editors, [...]

Resizing SWF at real time

by admin November 28, 2008 Flash CS3

Not everyone knows that you can change the size of a SWF in real time, at runtime. When Flash CS3 came out many of us hoped that the new version of Actionscript allowed to set the size of the stage so that we could change the size of the SWF embedded in html page. We [...]

Using PrintJob class of Actionscript 3.0

by admin November 19, 2008 Flash CS3

Sometimes happen to have to print the contents of our SWF in paper or PDF. The right Actionscript 3.0 class to do that is is the PrintJob! It happened just yesterday to me with a client who I made a small application. This application displays images with descriptions and the client has asked me to [...]

Scaling an image – resizing a Bitmap

by admin November 7, 2008 Flash CS3

When a bitmap (image) is reduced by using the methods scaleX and scaleY or width and height, the same bitmap seems to have changed but the size really does not. This is because the BitmapData of the image has remained the same, then the weight and memory are same even if we had scaled down [...]

Creating an Email form using Flash CS3

by admin October 28, 2008 Flash CS3

Who uses Flash to create Web sites knows that the contact form (form of sending email) is one of the most used up. I received many e-mails by users who demanded a tutorial explaining how to build one. What I will explain then describes step by step how to create a basic form of sending [...]

Working with Flash CS3 and HTML frames

by admin August 25, 2008 Flash CS3

Here is a tutorial that many of you will find very useful. I have received several private messages on the forum with requests for help on how to work with a Flash CS3 menu and frames in HTML. With Actionscript 2.0 worked fine using the method getURL (); With Actionscript 3.0 will have many problems. [...]

Over shadow your content with Flash CS3

by admin July 15, 2008 Flash CS3

Often I have received requests in which they asked some tips on how to overshadow all the contents of the SWF by clicking a button and then bring up a popup ( always inside Flash) or anything like that. So I decided to create a couple of examples. The first is whether all content is [...]

Tweener caurina by Zeh Fernando example 2

by admin June 23, 2008 Flash CS3

After seeing how to use Tweener Caurina of Zeh Fernando in the first tutorial by FlepStudio, here is the second example. This time I simulated the creation of a website in Flash CS3, with colored background that changes according to the section, menus and content all simulated using the tweener caurina. I would like to [...]

Caurina Tweener by Zeh Fernando example 1

by admin December 13, 2007 Flash CS3

Hi! You certainly have realised that more then once, I used some Tweeners which are not implemented by default in Flash CS3. For this reason, I would like to introduce you this: caurina di Zeh Fernando. Personally, I find it very useful and well done. Manageable, easy to use and with very elegant effects. In [...]

mailTo method

by admin November 20, 2007 Flash CS3

Do you remember the old method mailto of Actionscript 2.0 used together with getURL that allowed to open the mail client of the user? Do you think that with Actionscript 3.0, it is not possible anymore? Wrong! Even with the third version of Actionscript it is possible to use this command. It simply needs to [...]

Javascript calls Actionscript

by admin November 7, 2007 Flash CS3

Buenas dias ! Did you read the article actionscript calls Javascript ? In that case, Flash (via the ExternalInterface class) was calling a function Javascript to create a popup in runtime. This tutorial is the second part and we will see how to do the opposite. This time, it will be Javascript to call Actionscript. [...]

Creating a menu and manage the different sections

by admin November 5, 2007 Flash CS3

Hello! Did you ever wanted to create a menu in Flash which can manage the different sections of your site? I see that lots of Flash designers and webmasters with a minimal notion of Actionscript, has problems to control the events of a menu associated to different MovieClip nested in the main timeline. I make [...]

Actionscript calls Javascript ExternalInterface class

by admin October 22, 2007 Flash CS3

We saw how to open a popup using actionscript and Javascript . The technique is the same, only the Actionscript 3.0 syntax is changed using the method navigateToUrl instead of getURL. In this case, I thought about it after having read a few questions posted by a user on the forum, this post to be [...]

Working with Cascading Style Sheet CSS

by admin October 17, 2007 Flash CS3

We saw how to assign an HTML text to a text field in Flash and how to do it also from an XML file. With this article, I would like to take a look at the use of the CSS style sheet with Flash. We know that we can assign an HTML text to a [...]