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:

Library symbols

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.

Clock face drop target

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).

Component parameters

Dropped instance on target positioned.

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.

link|improve this question
Excellent question. I decompiled a test SWF that contained a UIScrollBar component and there were no hints in there. I also renamed the fla to a zip to go through the makeup, did a search across all the code and only came up with the following in terms of the inspectable part of the UI component ' <property id="scrollTargetName"> <Inspectable name="scrollTargetName" variable="scrollTargetName" category="" verbose="0" defaultValue="" type="String"/> </property>' But doesn't say "how" it snaps. I hope someone knows the answetr to this ! – Chris Sep 24 '11 at 7:07
Also out of interest, would you accept an answer that uses JSFL? – Chris Sep 24 '11 at 7:28
@Chris - really appreciate the introspection from the compiler. I'll accept any answer that helps understand how this works. It would seem programmatic functionality opposed to how Flash Pro performs authoring. Thanks! – Jason Sturges Sep 24 '11 at 7:39
feedback

1 Answer

I read through this question twice, but it is late at night, so if I miss the mark, my apologies!

If you're just working with the Flash artboard, I would suggest relying on some good old math. The following is NOT code. Just use the equations to figure out where to place the hand (or whatever) in the center, by changing the X and Y properties in the Properties panel.

In this, c refers to clock face, and h refers to hand. I'm using dots just to make reading easier (c.width = clock width). Again, this is NOT CODE!

h.x = c.x + (c.width / 2)
h.y + (h.height / 2) = c.y + (c.height + 2)

The result of the following equations puts the hand's leftmost point at the center of the clock on the x axis, and the center point of the Y axis of the hand on the center of the clock.

In case it is confusing, the reason for (h.height / 2) is that it offsets so that you have the center left point, instead of the upper left point, of the hand centered on the clock.

You can modify this algorithm to place just about anything on the artboard.

I hope this helps!!

link|improve this answer
Thanks, but the issue is the DisplayObject does not accept x and y coordinates at all - it remains positioned at the upper left most corner, which is 0, 0 to the dropped target. – Jason Sturges Jan 2 at 19:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.