Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
I found the other methods of custom cursors using the StartDrag command nice,
but when i made more complex move i needed this function for other purpose. My
way uses an alternative method with no downsides i know of, only positive
things.
Start a new movie and add a new layer named "Cursor"Inside this layer draw
the first frame of your cursor. Select all the contents you want to become the
cursor, select Modify>Convert to Symbol. Type that name as Cursor and make sure
its a Movie Clip. Now, go back to the main movie, right-click once on your
cursor movie clip, then select actions. In the window enter the folowing code:
The onClipEvent handler designates when the script will be ran. By entering
enterFrame, it tells flash to run that script every time it enters a new frame
(that means its always going). "this" tells it that its something about THIS
movie clip. _y/_x means the x or y coordinate. _xmouse means the mouse's current
x coordinate. Mouse.Hide tells it to hide that plain old windows cursor. So, in
all, it says each time flash enters a frame make this x position the same as the
mouse's x position and same with y and to hide the old cursor. Simple enough? ok
well if you need any help im free for emails.