Developing custom components within Flash Professional CS5.5, I am attempting to implement functionality similar to the way a UIScrollBar can be dropped on a TextArea to bind functionally.
- Place a TextArea on the artboard.
- Drop a UIScrollBar on to the TextArea.
The UIScrollBar will auto-position itself against the TextArea, and if instance names are not defined, the TextArea will receive a name such as ‘InstanceName_0’ and the UIScrollBar’s scrollTargetName will set to match.
For those familiar with Flashblocks Flash CMS, this functionality is replicated using their Editblock component. The Editblock can be dropped on a component, automatically position itself, and bind instance names.
Following threads and examples, I see mostly historical implementations citing _targetInstanceName and scrollTarget.
Are there more current examples / tutorials that anyone could cite?
Please understand that I am not talking about drag-and-drop during runtime. I am speaking about authoring using Flash Professional, dropping components on to each other from Flash Pro’s artboard.
UPDATE 2011-10-21
I've gotten part of this to work; although, I still cannot place the dropped instance to a desired coordinate. It always positions itself on the top-left.
To put this in context, I'll use a clock face and clock hand. For this example, I have two symbols in my library:

Placed on the stage, the clock face will be the DisplayObject instance used as the drop target. No instance name is specified in Flash Professional.

With defined Component Definition, programmatic implementation resides in the object to be dropped. Hand symbol defines:
package com.jasonsturges.labs.stackoverflow
{
import flash.display.DisplayObject;
import flash.display.MovieClip;
public class Hand extends MovieClip
{
/** drop target DisplayObject instance */
private var _scrollTarget:DisplayObject;
public function set scrollTarget(value:DisplayObject):void
{
_scrollTarget = value;
}
public function get scrollTarget():DisplayObject
{
return _scrollTarget;
}
[Inspectable()]
/** instance name of the drop target DisplayObject */
public function get scrollTargetName():String
{
return _scrollTarget.name;
}
public function set scrollTargetName(target:String):void
{
// set scrolltarget, referenced by name
scrollTarget = parent.getChildByName(target);
}
public function Hand()
{
super();
}
}
}
Now, when I select the Hand component from the library, and drop it on an object such as the clock MovieClip in Flash Pro's artboard, the following happens:
- Drop target (clock) is given an instance name: "InstanceName_1".
- Dropped instance (hand) "scrollTargetName" property is set to the drop target (clock) instance name: "InstanceName_1".
- Dropped instance (hand) is positioned in the upper-left corner of the target (clock).


The most critical question that remains is how can I position the dropped instance? I'd like to programmatically position it against the target, and not at the upper-left corner.
Is this a special property of "scrollTargetName", or can this functionality be implemented with different property names?
Have I correctly implemented this functionality per Adobe's intention of authoring on the artboard?
UPDATE 2012-01-05
My remaining issue is getting the dropped component to position itself. Regardless of x and y positioning, the DisplayObject remains at 0x0 upper-left corner. I know this must be possible as a scroll-bar can change its position when dropped on a text area.