How much you know your Flash. Do you know some actionscript?
If you don't know, then i suggest You to learn some actionscript.
Actionscript tutorials
Anyway here's some answers to your quetions:
A1: Sry, but dont know what you are exactly meaning.
A2: Here's a tutorial how to make an arrow(aka cursor) Tutorial
here
A3: Here's a little tutorial, it's too small however
Link
And i suggest you to read more basic tutorials from
actionscript.org
And if you you now learn something. Then i just say, that i use "_level0."'s and "enterFrame"'s with my movieclips.
A4: To make a bar with items, you again have to learn "enterFrame" and "_level0" stuff. Also you need to know "dragging".
Here's the code, i use to drag items:
PHP Code:
on (release) {
thisX = getProperty(this, _x);
thisY = getProperty(this, _y);
startDrag(this, true);
}
on (press, releaseOutside) {
if (_root.tv.hitTest(this))
{
//do something
setProperty(this, _x, thisX);
setProperty(this, _y, thisY);
stopDrag();
}
else
{
setProperty(this, _x, thisX);
setProperty(this, _y, thisY);
stopDrag();
}
}
P.S after "//" are comments.
Oh, and sry about the typos. And it's hard to explain if i don't know what you already know. I hope this at least gives you a some kind of view
