Flash 8 Tools Window Shortcuts

Tools Window buttons Short Keys: Selection tool-V Sub selection tool- A Free transform tool-Q Gradient transform tool-F Line tool-N Lasso tool-L Pen tool-P Text tool-T Oval tool – O Rectangle tool – R Pencil tool-Y Brush tool- Ink bottle tool- Paint bucket tool- Eye dropper tool- Eraser tool- Hand ...
Advanced drag and drop using a button
Drag and Drop a button in flash
Explanation of custom mouse script

Here’s the explanation of the custom mouse script. onClipEvent (load) { Mouse.hide(); } onClipEvent (mouseMove) { _x = _root._xmouse; _Y = _root._ymouse; updateafterevent(); } The line Mouse.hide(); makes your ordinary mouse to hide The line _x = _root._xmouse; _Y = _root._ymouse; makes your custom to move according the co-ordinates ...