Kategorie: Projekte

  • 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

  • Exchange Rate

    exchange-rate.php Aufgrund von Veränderungen bei Swissquote funktioniert dieses Skript nicht mehr. Ich bitte Sie um Verständnis dafür. Wenn es jemand anpasst -> bitte schicken! Mit dem PHP-Script „exchange-rate.php“ kann man einige jeweils aktuelle Wechselkurse von Swissquote zur Verwendung mit einem JavaScript (JS) extrahieren. Damit bei Ausfall von swissquote.ch oder birdy1976.com das JavaScript noch funktioniert, sollte…

  • Rating

    Sinn und Zweck Die Idee für dieses Skript kam am 2003/04/07 von Andreas Roellinghoff: Einleitung: Den Teilnehmern wird gesagt, der Server hätte zuwenig Platz, es könnten nur die 10 besten Objects übrig bleiben. Aufgabe: Bitte wählen Sie die 10 besten Objects aus. Begründen Sie, weshalb die Wahl auf diese Objekte fällt. Überarbeiteter und erweiterter Ablauf…

  • 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…