Content

Flash dictionary overview

Themes

_global
_root
ActionScript Dictionary
ActiveX
Array
buttons
classes
Colors
components
constructor
ContextMenu
create
Data Binding Class
drawing with Flash
drawing with FlashActionScript
drawing with Freehand
email
event methods
Flash Article
Flash Books
Flash Extension
Flash JavaScript
Flash Lite 1.1
Flash Player Detection
Flash Remoting
Flash TechNote
Fonts
FSCommand
FScrollBar
Fullscreen Flash Website
Functions
Games
Getting started with Flash
HTML Tag for Flash
Imported Images and Video
Load Movies
Load Variables
Macromedia Flash Developer Center
Macromedia Flash Learning Guides
Mouse
MovieClip
object
objects
PHP and Flash
Publishing and Exporting
SampleFiles
scene
Screens
SharedObject
Sound
Stage
styles
Support
Symbols and Interactivity
System
Test Movie mode
TextField
Tweening
Using Actionscript
Using cookies with Flash
Using the keys
wp-cumulus
XML

Flash Weblinks

www.wikiflash.de

Flash Foren

www.flashforum.de
www.ultrashock.com
www.flashhilfe.de

Flash Tools

www.powerflasher.de
www.swift-tools.net
www.wondertouch.com

Toon Boom
finalToon

swfmill

Flash Websites

osflash.org
stranger.per.sg

Flash Blogrole

The Flash Blog
Inan Olcer
nick velloff

ActionScript compiler

MTASC

Script editor (for Flash)

SE|PY ActionScript Editor
FlashDevelop
SciTE|Flash

Microsoft .NET Framework
dotNETFramework

Text editor

UltraEdit

Desktop Video Capture Tools

SnagIt Screen Capture
Camtasia Studio

Flash video tools

www.multidmedia.com

Flash Tutotrials

www.uncontrol.com
www.trickundtronic.at
www.actionscript.org
www.kirupa.com
www.flashkit.com
www.flashworker.de
Cleopatra Art Group

www.flashcomponents.net

ActionScript Tutotrials

- www.person13.com
- www.debreuil.com
- flash MX OOP tutorial
- O'Reilly Network Introduction to OOP in Flash and ActionScript, Part 1
- Introduction ActionScript 2.0 by Joey Lott

Self HTML

.htaccess - Example
CSS Schriftformatierung
i-frames
(JAVASCRIPT) MM_controlShockwave Flash steuern aus html mit frames

VirenTools

Antivir

PHP

php.net
PHP Documentation:
german
english

PHPmyadmin
PHPBB.de
PHPBB.com

Zend Studio™

Foxserv Project
PHPTriad

MySQL

mysql notes
mysql.de
mysql.com
MySQL-Handbuch auf deutsch
MySQL-Referenzhandbuch
MySQL Documentation
MySQL Manual

MySQL Tools

mysqlfront

Valid HTML 4.01 Transitional

Google News Flash

Flash

expand Symbolic operators

expand Macromedia Links

expand HTML Tag for Flash

expand ActiveX

expand Flash Player Detection

expand Sample Files

expand Support

expand Flash Books

expand Flash Extension

expand Flash Lite 1.1

expand Getting started with Flash

expand Games

expand Tweening

expand Imported Images and Video

expand Fullscreen Flash Website

expand Publishing and Exporting

expand FSCommand

expand scene

expand Screens

expand Fonts

expand Array

expand System

expand Stage

expand _global

expand _root

expand ContextMenu

expand TextField

expand MovieClip

expand Colors

Using the Color object: Dynamically changing the color of movie clips in Flash 5

How to create a color fade effect in Flash
How to convert a decimal value to a hexadecimal value

Color (object)
Color.setRGB
Color.getRGB
Color.setTransform
Color.getTransform

expand Mouse

expand email

expand event methods

expand Symbols and Interactivity

expand buttons

expand Flash & JavaScript

Can JavaScript resources help in learning Flash 5?
Scripting with Flash 5 Flash Methods
JavaScript controles Flash - Example Example

<script language="JavaScript" type="text/JavaScript">
function MM_controlShockwave4(objStr,x,cmdName,frameNum) { //v3.0
var obj=window.document[objStr];
if (obj) eval('obj.'+cmdName+'('+((cmdName=='GotoFrame')?frameNum:'')+')');
}
//-->
</script>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" name="test" width="400" height="100" id="test">
<param name="movie" value="flash.swf">
<param name="quality" value="high">
<embed src="flash.swf" width="400" height="100" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="test"></embed>
</object>

<a href="#" onClick=
"MM_controlShockwave4('test','','StopPlay')">Film stoppen</a> <br>
<a href="#" onClick=
"MM_controlShockwave4('test','','Play')">Film spielen</a> </p>


An example of communication between JavaScript and Macromedia Flash
An example of communication between Macromedia Flash movies
How to create pop-up browser windows in Flash
Using the Get URL Action to target a named anchor fails across framesets

expand Using Actionscript

expand ActionScript Dictionary

expand Macromedia Flash Developer Center

expand Flash Article

expand Macromedia Flash Learning Guides

expand Flash TechNote

expand Functions

expand objects

expand object

expand constructor

expand classes

expand Data Binding Class

expand components

Flash Extension - Flash MX Components for Flash MX 2004, V1.5.0
Building and Testing Components in Macromedia Flash MX 2004
Creating components in Macromedia Flash MX
Extending Components in Macromedia Flash MX
Components dictionary overview Flash livedocs
Working with components overview Flash livedocs
Types of components Flash livedocs
Adding components to the stage using ActionScript

Button component About component events Flash livedocs
About handling component events Flash livedocs
Accordion component (Flash Professional only) Flash livedocs
Using listeners to handle events Flash livedocs
About the event object Flash livedocs
About scope in listeners Flash livedocs
Using listener objects Flash livedocs
Using component event listeners Flash livedocs
Button for Fullscreen Download

ActionScript :
listenerObject = new Object();
listenerObject.click = function(evt) {
	//trace("The "+evt.type+" event was broadcast");
	getURL('javascript:var objekt=window.open(\"index.php",
	 \"newwindow\",\"width=\" + (screen.availWidth-10) + 
	 \",height=\" + (screen.availHeight-30) + \", menubar=no,
	 resizable=no, screenX=0, screenY=0, locationbar=no, statusbar=no,
	 fullscreen=yes\")');
};
this.button.addEventListener("click", listenerObject);
_parent works only for Firefox !

Button Component with TextField Download


ActionScript :
form = new Object();
form.click = function(evt){
myText.text = evt.target;
trace("The "+ evt.type+" event was broadcast"); 
} 
button.addEventListener("click", form);
// returnes : The click event was broadcast 

Using the Button component Flash livedocs Download

Example for toggle

ActionScrtip :
clippyListener = new Object();
clippyListener.click = function(evt) {
	clippyHelper._visible = evt.target.selected;
};
helpBtn.addEventListener("click", clippyListener);
clippyHelper._visible = 0;
button settings

Macromedia Flash MX Components Overview

Customizing the Flash 5 Menu Smart Clip
Using the checkbox smart clip
Using the radio button smart clip

Using external data to customize the Flash 5 Menu smart clip - Example Example
Customizing the Flash 5 Menu Smart Clip - Example Example

Smart ComboBox Contents
Using the Smart ComboBox component
Configure the combo box
Combo box key selection not functioning with RecordSet

Using Flash MX components in Macromedia Flash MX 2004
Customizing the Menu component (Flash Professional only) Flash livedocs

Using listener functions Flash livedocs - Example Example

List.change Flash livedocs
List.scroll Flash livedocs
List.selectedItem Flash livedocs

Setting styles on a component instance Flash livedocs
UIObject.getStyle() Flash livedocs

CheckBox.click Flash livedocs
CheckBox.selected Flash livedocs

SimpleButton.click Flash livedocs

ComboBox.change Flash livedocs



MenuBar class (Flash Professional only) Flash livedocs
About menu item types (Flash Professional only) Flash livedocs
Menu.rollOut Flash livedocs
Menu.change Flash livedocs


Creating components in Macromedia Flash MX



Building and Testing Components in Macromedia Flash MX 2004
Stepping into the New Macromedia Flash MX 2004 Component Structure

What's new in v2 components Flash livedocs

Defining nonvisual components Flash livedocs

Supported styles Flash livedocs
Using styles to customize component color and text Flash livedocs
Creating new styles with ActionScript Flash livedocs
Using styles with the TextArea component Flash livedocs
Using skins with the TextArea component Flash livedocs

Customizing the FocusManager Flash livedocs

DRK: DevNet Resource Kit component compatibility for Macromedia Flash MX 2004

FCheckBox(component)
FCheckBox.getValue
FCheckBox.setValue
Creating forms with UI components in Macromedia Flash MX

expand FScrollBar

expand styles

expand Flash Remoting

expand drawing with Flash

expand drawing with Freehand

expand drawing with FlashActionScript

Introduction to Macromedia Flash MX Drawing Methods
Advanced drawing methods in Macromedia Flash MX
SVG Definitions of Vector Graphics
Creating a Whiteboard Application with Macromedia Flash Communication Server MX
Scrolling_starfield - Using ActionScript event methods
Making and Playing Asteroids with Macromedia Flash MX Draw an Asteroid

Flash MX Sample Files Feature Highlight Drawing API

Creating 3D Classes with ActionScript 2.0


Path object Flash livedocs

expand create

expand Sound

expand Using the keys

expand mask

expand Load Movies Load Movie Object

expand Load Variables

expand Test Movie mode

expand Using cookies with Flash

expand PHP and Flash

expand Wordpress wp-cumulus

expand XML

expand SharedObject

Delicious Flash feed Delicious rss icon

»

Tags: