Halo Scroll Actionscript

Hello, I am having a small problem with the Halo scroll bar.
I am using this code(below) to controll the scrolling. The
scrollbar graphic is going beyond the track mc on the "up" press
and not going to the end of the track on the "down" press. Any help
would be greatly appreciated. Thank you
on (keyPress "<Up>") {
theText.scroll--;
scrollAmt = (theText.scroll-1)/theText.maxscroll;
scrollHeight = sb_mc.track_mc._height -
sb_mc.thumb_mc._height;
sb_mc.thumb_mc._y = int(scrollHeight*scrollAmt);
on (keyPress "<Down>") {
theText.scroll++;
scrollAmt = (theText.scroll-1)/theText.maxscroll;
scrollHeight = sb_mc.track_mc._height -
sb_mc.thumb_mc._height;
sb_mc.thumb_mc._y = int(scrollHeight *scrollAmt);

Actually, I'm getting the following errors. I tried changing
0 to NaN. Didn't work. Any other ideas?
Thanks for your help!.
**Error** Symbol=scroll down button, layer=Layer 1,
frame=1:Line 3: Unexpected '.' encountered
../:loopEnabled = 0;
**Error** Symbol=scroll down button, layer=Layer 1,
frame=1:Line 4: Statement must appear within on handler
tellTarget ("../") {
**Error** Symbol=scroll down button, layer=Layer 1,
frame=1:Line 7: Unexpected '}' encountered
**Error** Symbol=scroll up button, layer=Layer 1,
frame=1:Line 3: Unexpected '.' encountered
../:loopEnabled = 0;
**Error** Symbol=scroll up button, layer=Layer 1,
frame=1:Line 4: Statement must appear within on handler
tellTarget ("../") {
**Error** Symbol=scroll up button, layer=Layer 1,
frame=1:Line 7: Unexpected '}' encountered
**Error** Symbol=clip scroll knob, layer=Layer 1,
frame=1:Line 2: Operator '+' must be followed by an operand
startDrag("", false, getProperty("", _x),
Number(getProperty("../scroll_track",
_y))+Number(../:scrollTrackPadding), getProperty("", _x),
Number(Number(getProperty("../scroll_track",
_y))+Number(../:scrollTrackPadding))+Number(../:travelLength));
**Error** Symbol=clip scroll knob, layer=Layer 1,
frame=1:Line 3: ')' or ',' expected
tellTarget ("../") {
**Error** Symbol=clip scroll knob, layer=Layer 1,
frame=1:Line 6: Unexpected '}' encountered
Total ActionScript Errors: 9 Reported Errors: 9

Similar Messages

  • Scroller fixed at bottom

    I am having a RichEditableText field fich gets filled with text dynamically. There is a vertical scroller attached to it which should behave exactly the opposite way as it does.
    I need to have it to stick to the bottom the field, displaying the last line. However this does not work.
    My setup is as follows:
    I am having a text input field to enter text.
    I am having the RichEditableText field surrounded by the <s:scroller> control.
    And I set the VerticalScrollPosition of the scroller to the RichEditableText content.height.
    Now this is what is happening and it is really weird:
    When entering text it gets displayed properly. When I have entered a few lines the vertical scroll bar appears as intended. But then the scrollbar does no longer get updated with every new line entered. In fact it only gets updated every 3 new line. Then it stick to the bottom for 1 input and then it pauses for 3 more inputs. It is very weird.
    When I set it to listen to the updateCompete event of the RichEditableText field and set the VerticalScrollPosition of the scroller to the RichEditableText content.height it works as intended and the scrollbar remains at the bottom. However now scrolling is no longer possible as every attempt to scroll causes the update event to get fired, thus bouncing the scrollbar back to the content height value.
    So it seems that one solution could be to find another event that is fired when the RichEditableText field has been updated, but does not fire when the scrollbar is the reason for updating, or to prevent the updateCancel Event to fire when the field has been updated due to scrolling.
    Or there is a totally different approach to get this working. But I was not able to get it working the way I need it yet. Any help or hints would be appreciated.
    Here is the code of what I am doing:
    MXML part:
    <s:Scroller id="vscroller" width="100%" height="100%" horizontalScrollPolicy="off">
    <s:RichEditableText height="100%" width="100%" id="ret" updateComplete="ret.verticalScrollPosition=ret.contentHeight;"/>
    </s:Scroller>
    Actionscript part:
    flow = TextConverter.importToFlow(message, TextConverter.TEXT_FIELD_HTML_FORMAT) as TextFlow;
    paragraph = flow.getChildAt(0) as ParagraphElement;
    ret.textFlow.addChild(paragraph);
    ret.textFlow.flowComposer.updateAllControllers();

    if anyone still need a solution:
    you should attach event listener to RichEditableElement before adding new text line, then catch event and update scroller.verticalScrollBar.value to it's maximum. the reason is you update scroll position before text area changed and completely updated, but you should do this after. example follows:
         chatTextArea.addEventListener(mx.events.FlexEvent.UPDATE_COMPLETE, onChatTextAreaChanged);
         chatTextArea.textFlow.addChild(line);
    public function onChatTextAreaChanged(event:*):void {
         chatTextArea.removeEventListener(mx.events.FlexEvent.UPDATE_COMPLETE, onChatTextAreaChanged);
         chatTextScroller.verticalScrollBar.value = chatTextScroller.verticalScrollBar.maximum;

  • How do I build a Scroller in Actionscript?

    I need to build a Scroller / Group / RichEditableText set of components using only Actionscript, since I need to create (perhaps) many of these, skinned on-the-fly as a result of download from the server.
    Can anyone provide a working example?  I can see how to do it using MXML, but I'm a programmer at heart...  Only actionscript?  I've tried but I'm having trouble getting the pieces to play together (scroll bars, mouse wheel, etc.)
    Or is there a way to create multiple instances of a set of components defined in MXML?  That might do it too.
    Thanks.
    Oz

    I have a very dynamic application:  the windows and components come and go, and I don't know in advance how many there will be, what the styles will be, etc.
    So I want to create all components with Actionscript classes.
    This is the MXML code that creates what I want.. This works fine, scrolls, mouse-wheel, all controls are effective.
    <s:Scroller id="myScrollerA" width="300" height="100">
        <s:Group id="myGroupA">
            <s:RichEditableText id="myTextA" paddingTop="20">
                <s:textFlow>
                    <s:TextFlow>
                        <s:p fontWeight="bold">This is paragraph 1.</s:p>
                        <s:p>This is paragraph 2.</s:p>
                        <s:p>This is paragraph another.</s:p>
                        ... more code here with more text
                        </s:TextFlow>
                </s:textFlow>
            </s:RichEditableText>
        </s:Group>
    </s:Scroller>  
    This is the Actionscript I'm starting with, but the linking between the vertical scroll bar and the text scrolling is not functioning, and there are various surprises.
                  sxText is an instance of my custom class which subclasses RichEditableText, with more text than will fit into the scroller.
                group = new Group();
                group.addElement(sxText);
                group.setContentSize(sxText.contentWidth,sxText.contentHeight);
                scroller = new Scroller();
                scroller.setStyle("horizontalScrollPolicy","off");
                scroller.setStyle("verticalScrollPolicy","on");   
                scroller.viewport = group;
                scroller.addEventListener(MouseEvent.MOUSE_WHEEL,scrollWheelEvent);
    The scroll bar does scroll the content area, but NOT the text -- the text disappears off the top, but the revealed area at the bottom is background color: no text content.
    Mouse wheel on the text area functions, but the scrolling is not reflected in the scroll bar.
    Also puzzling:  the thumb component of the scroll bar changes to a large vertical size, on first click into any scroll bar component.
    What else do I need to do to tightly couple the scrolling of the text area and the use of the vertical scroll bar?  Am I missing some skinning methods?
    Thanks for your attention.

  • How do I build a Scroller from scratch in Actionscript?

    I have a hierarchy of objects in my Actionscript.  I use Actionscript because all objects are dynamic, built at run-time on the basis of data from the server.
         Scroller
              Group
                   SxText (my class) is a subclass of RichEditableText which implements IViewPort
    Typical code is:
    public class SxText extends RichEditableText
                sxText = new sxText(....);
                scroller = new Scroller();
                scroller.setStyle("horizontalScrollPolicy","off");
                scroller.setStyle("verticalScrollPolicy","on");  
                group = new Group();
                group.addElement(sxText);
                scroller.viewport = group;
    It looks great and I can control location and size, as well as detect the events that I'm interested in.
    But, the scroll bar thumb fills the vertical space of the bar.
    I've tried many methods to enable or to set viewport content size, but the following code has no effect.
                scrollerSkin = ScrollerSkin(scroller.skin);
                scrollBar = scrollerSkin.verticalScrollBar;
                vbarSkin = VScrollBarSkin(scrollBar.skin);
                thumb = vbarSkin.thumb;
                vbarSkin.addEventListener(MouseEvent.CLICK,scrollBarEvent);
                vbarSkin.setContentSize(sxText.width,sxText.height);
    I'm guessing that I'm missing the one method that will do it.  Thanks.

    After posting, I kept trying.  This works, making the thumb usable.
    This code is called in an event handler of the scroller for UPDATE_COMPLETE
                group.setContentSize( good values for dx and dy );
    Thanks for listening.

  • Actionscript for a scroller

    Hi,
    I have followed a tutorial step by step to make my own
    scroller with a text. Have I missed something vital from the code
    (which I have compared with their numerous times) or is it
    something as simple as not naming one of my items?
    Alternatively does anyone know of a tutorial that is
    reliable?
    var scrollUpper:Number = 31.4;
    var scrollLower:Number = 356.4;
    var textLower:Number = 37.5
    var textUpper:Number = -173.6;
    var scrollRange:Number = scrollLower - scrollUpper;
    var textRange:Number = textLower - textUpper;
    var startY:Number = text_mc._y;
    function scroll(){
    var moved:Number = scroller_mc._y - scrollUpper;
    var pctMoved:Number = moved/scrollRange;
    var textMove:Number = pctMoved*textRange;
    text_mc._y = textLower - textMove;
    scroller_mc.onPress = function(){
    this.startDrag(false,this._x,scrollUpper,this._x,scrollLower);
    this.onMouseMove = scroll;
    scroller_mc.onRelease = scroller_mc.onReleaseOutside =
    function(){
    this.stopDrag();
    this.onMouseMove = null;

    I guess I was hoping not only to have the document open but
    to print it and close out as well. so the button would open the doc
    file send the doc to print...and then close it.
    I have seen the jstart app that helps with this, and it seems
    they have some sort of exe file code that refrences the ini file to
    open and print and close.
    Unless there is another way to do this all with javascript
    actionscript in flash, I am kind of lost.

  • Scroll Bar actionScript 

    For some reason the following scroll bar actionScript does
    not work when published as actionScript 2.0. I really need it as
    2.0 player 8.
    Can someone take a look at the link below? Thanks.
    http://www.ctvdesigns.com/scrollbar.zip

    Actually, I'm getting the following errors. I tried changing
    0 to NaN. Didn't work. Any other ideas?
    Thanks for your help!.
    **Error** Symbol=scroll down button, layer=Layer 1,
    frame=1:Line 3: Unexpected '.' encountered
    ../:loopEnabled = 0;
    **Error** Symbol=scroll down button, layer=Layer 1,
    frame=1:Line 4: Statement must appear within on handler
    tellTarget ("../") {
    **Error** Symbol=scroll down button, layer=Layer 1,
    frame=1:Line 7: Unexpected '}' encountered
    **Error** Symbol=scroll up button, layer=Layer 1,
    frame=1:Line 3: Unexpected '.' encountered
    ../:loopEnabled = 0;
    **Error** Symbol=scroll up button, layer=Layer 1,
    frame=1:Line 4: Statement must appear within on handler
    tellTarget ("../") {
    **Error** Symbol=scroll up button, layer=Layer 1,
    frame=1:Line 7: Unexpected '}' encountered
    **Error** Symbol=clip scroll knob, layer=Layer 1,
    frame=1:Line 2: Operator '+' must be followed by an operand
    startDrag("", false, getProperty("", _x),
    Number(getProperty("../scroll_track",
    _y))+Number(../:scrollTrackPadding), getProperty("", _x),
    Number(Number(getProperty("../scroll_track",
    _y))+Number(../:scrollTrackPadding))+Number(../:travelLength));
    **Error** Symbol=clip scroll knob, layer=Layer 1,
    frame=1:Line 3: ')' or ',' expected
    tellTarget ("../") {
    **Error** Symbol=clip scroll knob, layer=Layer 1,
    frame=1:Line 6: Unexpected '}' encountered
    Total ActionScript Errors: 9 Reported Errors: 9

  • How would i go about making a paralax scroller in actionscript 3.0?

    i have a page with too much information on it i wanted to do something that was origanal to my site.  so i picked a paralax scroller  so that windows with different  conetent on them and make a movie clip out of each perhapps in an embedded movie clip and as i scroll change the "y" axis to move the movie clips and not change the actual page itself i would imagine it would be an event listener for a mouse scroll, but what about a scroll box? if i want a scroll box on the side as well as the event listner to create the paralax scroller?

    Can you explain what about your intentions relates the term "paralax"? 
    What directions are things going to be scrolling, vertically or horizontally?  Saying you will change the y axis isn't clear to me, since an axis is normally fixed to a location. 
    Also, what are you calling a "scroll box"? 

  • Image Gallery & Scroll Bar

    Just exploring flash as a beginner, still.
    I've come across this website:
    http://www.jeremiahshoaf.com/
    I'm a fan of the scrolling portfolio idea the designer has used in the centre of the website's front page.
    Any ideas how this is produced?
    My presumption would be a MovieClip with images various other MovieClips inside (holding images etc) and then a scrollbar controlling how far across the screen the images are shown with actionscript?
    Knowing me I'm wrong, but any ideas would help me out to explore and learn further.
    Thanks for your great advice, as always.
    .. Also, I wondered if this could be produced, and as well as the scrollbar, the ability to add scrolling with the keyboard, left and right keys? Again, only a presumption, but I was thinking this might be simple with actionscript? Simply a piece of code to tell the scrollbar to move to the next MovieClip, if my initial presumption was correct.
    The above is only a small side note for those who feel they can assist - but thanks again for any help you can provide!
    This forum has been a huge help to me, in learning Flash so far.
    Thanks a lot.

    Well first you need a really long MovieClip with some graphics inside on it. That should be simple enough to do. Then you need a scrollbar. Just a rectangle should do for now. On this MovieClip give it a MOUSE_DOWN event listener and on that event use the "startDrag" function to add dragging functionality. Add a MOUSE_UP event listener to the stage and when that happens call "stopDrag" on the scroll bar clip. Then you can have an ENTER_FRAME event that actually updates the scrolling. On this event, check the scrollbar's x position and do some math to figure out the percentage you have scrolled. It might look like this:
    var percent:Number = scrollbar.x / (stage.width - scrollbar.width);
    Then update the main image container by the percent:
    var minPosition:Number = -500;
    bigImage.x = percent * minPosition;
    Hopefully that should be enough info to get you started.

  • Space appears after text when you scroll to the bottom

    i am a newbie flash designer. a client has asked me to make modifications in a flash file used on his website. it is flash 8 actionscript. i am currently working on the same and would appreciate your help. the client has given me 'divisions.swf' file which i decompiled using sothink decompiler 4.5 build 90120 to '~divisions original.fla'. the xml folder resides in the same folder as ~divisions original.fla. it contains divisions.xml. you can download these files at http://rapidshare.com/files/257100523/space_after_text_when_scroll_to_bottom.zip
    i discovered a problem - if you view 'divisions.swf' - when you click on 'retail visual solutions'and scroll to the bottom, you can see that there is no space after the text. the end of the text aligns with the end of the scrollbar. but when you click on eyesite, and scroll to the bottom, you can see that there is space after the text. the end of the text does not align with the end of the scrollbar.
    please help me to resolve this problem.
    my additional questions are:
    has the creator of the swf file used some unique scrollbar code or is this scrollbar provided in flash itself. in this case, i can read a tutorial to understand it better.
    i have given 'is correct - no space at bottom of text.jpg' and 'is incorrect - space at bottom of text.jpg' to further explain my query.
    please tell me if i have explained my problem properly or further clarifications are needed.

    Try changing the code in frame 16 to be:
    stop ();
    var tString = xmlObj.Options.Option[2]._value;
    tString = tString.split("\r\n").join("\r").split("\n\r").join("\r");
    txt3.htmlText = tString;
    The scrollbar is a component that may or may not have been concocted by the original designer.  In any case it does utilize the FScrollbar feature of Flash.  You can read about it via the link below:
    http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dic tionary303.html.

  • [svn] 4634: First part of glue code for allowing Halo components to use the new Text Layout Framework , in order to get functionality such as bidirectional text.

    Revision: 4634
    Author:   [email protected]
    Date:     2009-01-22 17:38:56 -0800 (Thu, 22 Jan 2009)
    Log Message:
    First part of glue code for allowing Halo components to use the new Text Layout Framework, in order to get functionality such as bidirectional text.
    Background:
    TLF is making this possible by implementing a TLFTextField class. It is a Sprite that uses TLF to implement the same properties and methods as the legacy TextField class in the Player. Thanks to the createInFontContext() bottleneck method in UIComponent, it can be used by a properly-written Halo component (such as those in Flex 3) without any modifications to the component.
    Note: Text should render similarly -- but is unlikely to render identically -- when a component uses TLFTextField vs. TextField. The width and height may be different, affecting layout; text could wrap differently; etc. This is a fact-of-life based on the fact that TLF/FTE and TextField are completely different text engines.
    Whether a Halo component uses TLF or not to render text will be determined in Flex 4 by a new style, textFieldClass. (Gumbo components always use TLF.)
    TLFTextField is currently only partially implemented. It does not yet support scrolling, selection, editing, multiple formats, or htmlText. Therefore it can only be used for simple display text, such as a Button label.
    Details:
    The TextStyles.as bucket 'o text styles now includes a non-inheriting textFieldClass style. It can be set to either mx.core.UITextField or mx.core.UITLFTextField. These are the Flex framework's wrapper classes around the lower-level classes flash.text.TextField (in the Player) and its TLF-based workalike, flashx.textLayout.controls.TLFTextField.
    The global selector in defaults.css currently sets it to mx.core.UITextField using a ClassReference directive. For the time being, all Halo components will continue to use the "real" TextField.
    The new UITLFTextField is a copy of UITextField, except that it extends TLFTextField instead of TextField. This class has been added to FrameworkClasses.as because no classes in framework.swc have a dependency on it. It will get soft-linked into applcations via the textFieldClass style.
    The TLFTextField class currently lives in a fourth TLF SWC, textLayout_textField.swc. This SWC has been added to various build scripts. The external-library-path for building framework.swc now includes all four TLF SWCs, because UITLFTextField can't be compiled and linked without them. However, since they are external they aren't linked into framework.swc.
    Properly-written Halo UIComponents access their text fields only through the IUITextField interface, and they create text fields like this:
    textField = IUITextField(createInFontContext(UITextField));
    (The reason for using createInFontContext() is to support embedded fonts that are embedded in a different SWF.)
    The createInFontContext() method of UIComponent has been modified to use the textFieldClass style to determine whether to create a UITextField or a UITLFTextField.
    With these changes, you can now write code like
    to get two Buttons, the first of which uses UITextField (because this is the value of textFieldClass in the global selector) and the second of which uses UITLFTextField. They look very similar, which is good!
    Currently, both Buttons are being measured by using an offscreen TextField. A subsequent checkin will make components rendering using UITLFTextField measure themselves using an offscreen TLFTextField so that measurement and rendering are consistent.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Deepa
    Modified Paths:
        flex/sdk/trunk/asdoc/build.xml
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/frameworks/projects/framework/build.xml
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/metadata/TextStyles.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UITLFTextField.as

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

  • How to avoid blinking / moving of rows in a data grid when you restore the scroll positions

    By Default when an update is made on a data grid, it scrolls to top row. To avoid this when we save the vertical and horizontal scroll
    positions and restore the scroll positions after the update, it causes a blink in the grid (or moving / jumping) of rows. Is there a way to
    avoid this jumping of rows?
    In JavaScript this can be achieved by overriding the scrollToTop / OnLoad methods of datagrid to directly scroll to current scroll
    positions instead of top row. Is there a way to achieve similar feature in flex / actionscript?

    I am calling validateNow().. Also, using verticalScrollPosition to restore the scroller as in the link that you posted.. Reposition is working fine, But the bug filed is regarding BLINKING / JUMPING when this happens (i.e. this blinking is caused because after datagrid edit, during reload the scroller tries to move to  the top by default, then it repositions itself to current edited row as the verticalScrollPosition property is overridden ).. I have to get rid of this blinking.
    In Javascript it is dealt by overriding OnLoad method of datagrid to directly scroll to current scroll position instead of top row during reload so that there is no blinking.
    http://www.sencha.com/forum/showthread.php?13898-Is-there-any-way-to-keep-scroll-position- of-Grid-on-load
    Is there a way to achieve similar feature in flex?
    I am not sure what flex datagrid method to override.. Theres no method like load? What is the datagrid method that is called by default during reload (after datagrid edit) that causes the scroller to go to top?

  • Input text in scrolling area

    I am working on a site in Flash and the content is within a
    scrolling area. On one of the pages I am making a form using input
    text but when I publish the file you are not able to type anything
    in the input boxes. Does anyone have any idea why this could be
    happening? You can preview the file online at
    http://www.creativeradiocontent.com/test/index2.htm
    and the form is on the Contact Us page. Sorry if I posted this in
    the wrong area, but I think it may be a problem with
    ActionScript.

    I am working on a site in Flash and the content is within a
    scrolling area. On one of the pages I am making a form using input
    text but when I publish the file you are not able to type anything
    in the input boxes. Does anyone have any idea why this could be
    happening? You can preview the file online at
    http://www.creativeradiocontent.com/test/index2.htm
    and the form is on the Contact Us page. Sorry if I posted this in
    the wrong area, but I think it may be a problem with
    ActionScript.

  • Adding scroll bar to a text box

    Is there a way to add a scroll bar to a text box? I am designing a website using ID (in the web view) which I am then giving to a web person to implement. I have one page that is longer than the others, where I would like to be able to scroll the text. I would really appreciate a step by step instruction on how to add a scroll bar to this text box.
    Thank you so much.

    The point is that exporting to Flash makes creating the webpage in ID seamless.  I am not familiar with a
    way to import an ID file into a Dreamweaver HTML.  ID relies on pages that get converted to
    frames on the Flash timeline which makes switching between pages, if you know enough ActionScript, a breeze.
    However I did find this link which outlines some compatibility between ID and DW:
    http://livedocs.adobe.com/en_US/InDesign/5.0/help.html?content=WS82C401A9-E844-40d5-B9B4-5 40CA374B0C6.html
    Message was edited by: markerline

  • Dynamic content in scroll pane component

    As far as I can see, the contentPath for a scroll pane
    component can only point to a movie clip in the library, not to an
    instance on stage. Does this mean that the content can only be
    something created during authoring with no possibility of modifying
    it in Actionscript?

    No, I had no reply and eventually wrote my own scroll pane
    solution which allows me to directly modify the pane's content with
    ActionScript and update the scroll bar to reflect any change in the
    content's size. I'm puzzled by the help file's example in
    ScrollPane.refreshPane() because it describes a senario where:
    "for example, you've loaded a form into a scroll pane and an
    input property (for example, a text field) has been changed by
    ActionScript. In this case, you would call refreshPane() to reload
    the same form with the new values for the input properties."
    Which implies that you can use ActionScript to change the
    content then reload it. The help file on ScrollPane.contentPath is
    not very clear about what content can be used but appears to say
    that the only content types allowed are: a SWF or JPEG loaded via
    its URL or a symbol in the current library. I don't see how you
    could use ActionScript to change any of these. I've tried
    specifying an on-stage instance as the content but that
    fails.

  • How to make a scroll Bar with buttons

    Hi all,
    I am using Flash cs6 on an iMAC running 10.7.2
    I would like to know if anyone could please point me to a tutorial, showing "how to create a scroll bar with buttons". I am having a heck of a time finding a tutorial.
    Many thanks in advance.
    regards,
    DH

    http://learnola.com/2008/10/27/flash-tutorial-create-a-custom-scrollbar-with-actionscript/

Maybe you are looking for

  • I've followed all the steps to uploading photos, none are displayed on ipod

    I went through the process of selecting my photos many times over again. Looked at the steps as outlined in the tutorial. Also tried resetting my ipod. No pictures show up when i go under photos, just blank white squares. Also no album art is display

  • Best practice in using Macs in Windows environment and Keychain

    Keychain is giving us a major headache as it keeps hold of prior windows network passwords. Looking for any advice on how to control/configure Keychain for macintosh computers in a windows environment. Thanks JTS

  • Itunes wont download because Apple Mobile Support Device cannot be removed

    I had an older version of itunes but an update came up. It said in order to download the update i had to uninstall the older version of itunes. I did but once i tried to upload the newer version, the installer said it could not be installed because t

  • Stuck in recovery ... can't erase ... now what?

    Okay, I've tried it all! Now what? Is it worth taking to a Mac fixer or should I pitch it and buy new. My son has had his Nano 2nd generation for 3 years with no problems. BTW: I've updated to 7.7, I've set the ipod to disk mode, I've left it chargin

  • Creating dynamic storage bins

    When you define a movement type, you can set up the system to create dynamic storage bins in the assigned interim storage area. In this case, the system uses the document number which triggered the stock movement as the coordinates for the interim st