-
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…
-
Clip „Follow Mouse“
Clip | Source
-
onUnload getURL
Experimental! An Example of the onUnload Eventhandler Source files
-
Flash UI Components Set 2 – Draggable Pane
Clip | Source ActionScript to Open and Close the Draggable Pane function closeMyDraggablePane() { // close pane (instantce is deleted) myDraggablePane.closePane(); } function openMyDraggablePane() { // close first (if already open) closeMyDraggablePane(); // create a new instance of the pane _root.attachMovie(„FDraggablePaneSymbol“,“myDraggablePane“,1000); // set properties myDraggablePane._x = 20; myDraggablePane._y = 60; myDraggablePane.setPaneSize(260, 140) ; myDraggablePane.setPaneTitle(„My Draggable…
-
Brownian Motion / Brownsche Bewegung
Clip | Source