Draggable and Resizable Movie Clip
I have a movieClip (timeline_mc) which is behind a mask and is scrollable (in Left/Right dir only) using two buttons.
I dynamically add movieClips (MyEvent_mc) on timeline_mc (using attachMovie) so that the added clips moves with timeline_mc.
I allowed dragging the child movie clips using startDrag() on timeline_mc only.
I am showing a tooltip (another movieclip with dynamic text - showing current position of MyEvent_mc on timeline_mc) on rollOver of child movieclips.
ToolTips are visible during drag and i reposition them thru tooltip.onMouseMove
Everything's working fine and neat (upto here).
Now, I need the child moviclips (MyEvent_mc) to be resizable (ony widthwise).
I managed to display a small black box (Dragger_mc) on right border of child movieClip as well (used same RollOver function as for tooltip)
Now, I need to apply startDrag on the black box (Dragger_mc) and with its drag, need to resize (MyEvent_mc) accordingly.
Question is : How?
When I take my mouse over the Dragger_mc, both, the tooltip_mc & dragger_mc, starts flickering.
Note: I see a similar question was asked at http://forums.adobe.com/message/514740, but the code suggested is not visible.
Thanks.