-
Serial Load
Clip1 | Clip2 | Clip3 | Source
-
Mailto
Mailto and PHP-Mail with getURL() Clip | Source
-
ComboBox Calls loadMovie
Clip | Source
-
Bouncing Balls / Springende Bälle
Clip | Source
-
Press a Button to Move a Clip
Clip | Source
-
Fscommand
Open Explorer with Flash MX (Un)fortunately it is not possible to open an Explorer window directly from a Flash 6 movie. One has to use a Projector (EXE) and fscommand. Download a sample: Source
-
Drag ’n‘ Drop and Rotate Clips
Clip | Source
-
Flash Table
Clip | XML-1 | XML-2 | Source HTML UI Components – Ressources ActionScript.org XML-File for the table
-
Analog Clock
Original clip by FlashGuru with small modifications (-8 h timeshift and digital watch) by birdy1976. Clip | Source
-
Frame Based Auto Increment (Flash 5)
Clip | Source ActionScript for Flash MX // Replace with your frame numbers var intFirstFrame = 5; var intLastFrame = 170; // For calculation and display only var intCounter = 0; var strCounter = „0000“; _root.onEnterFrame = function() { intCounter = Math.round(1000*(_currentframe-intFirstFrame)/ (intLastFrame-intFirstFrame)); if (intCounter < 0) { intCounter = 0; } else if (intCounter…