Flash CS3 IDE Scroll bar behavior

Hello,
This behavior was experienced on CS3 Flash, Photoshop,
Dreamweaver, at the same time. When I zoom in on anything, the
scroll bar forces the screen to the bottom (PSD) or to the far
right (FLA). If you attempt to pull the elevator box to the left,
it returns to the right, like a stubborn child. Next the program
crashes.
I've learned that the typical solution for Photoshop is to
reset the preferences, where you hold down the Shift+Ctrl+Alt. But
this does not have the same result with Flash nor Dreamweaver.
Is this a config problem? What can I do to correct it?
--GM

Thanks,
This method seems to work for Photoshop and Bridge only.
Do you know this will work for Flash? I've found no documentation in Adobe for refreshing preferences for Flash and Dreamweaver. When pressing Shift+Ctrl+Alt while launching Flash, I get a message about Blaze.
What is the file name I should search for to delete? I don't believe speed could be the issue, I'm very quick to press after hitting the prog start.

Similar Messages

  • AIR Intrinsic Classes-Tried and Proven Approach to building AIR applications   in the Flash CS3 IDE

    Hi everyone,
    For all of you out there who would like to develop AIR
    applications
    from the Flash CS3 IDE but aren't sure how to get those pesky
    intrinsic
    classes working, I have a technique that you can work with to
    create
    your classes and make fully functional AIR applications.
    First of all, those solutions out there that list
    "intrinsic" functions
    in their class definitions won't work. That keyword has been
    taken out
    and simply won't work. The "native" keyword also doesn't work
    because
    Flash will reject it. The solution is to do dynamic name
    resolution at
    runtime to get all the classes you need.
    Here's a sample class that returns references to the "File",
    "FileStream", and "FileMode" classes:
    package com.adobe{
    import flash.utils.*;
    import flash.display.*;
    public class AIR extends MovieClip {
    public static function get File():Class {
    try {
    var classRef:*=getDefinitionByName('flash.filesystem.File');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get File
    public static function get FileMode():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileMode');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileMode
    public static function get FileStream():Class {
    try {
    var
    classRef:*=getDefinitionByName('flash.filesystem.FileStream');
    } catch (err:ReferenceError) {
    return (null);
    }//catch
    return (classRef);
    }//get FileStream
    }//AIR class
    }//com.adobe package
    I've defined the package as com.adobe but you can call it
    whatever you
    like. You do, however, need to import "flash.utils.*" because
    this
    package contains the "getDefinitionByName" method. Here I'm
    also
    extending the MovieClip class so that I can use the extending
    class
    (shown next) as the main Document class in the Flash IDE.
    Again, this is
    entirely up to you. If you have another type of class that
    will extend
    this one, you can have this one extend Sprite, Math, or
    whatever else
    you need (or nothing if it's all the same to you).
    Now, in the extending class, the Document class of the FLA,
    here's the
    class that extends and uses it:
    package {
    import com.adobe.AIR;
    public class airtest extends AIR{
    public function airtest() {
    var field:TextField=new TextField();
    field.autoSize='left';
    this.addChild(field);
    field.text="Fileobject="+File;
    }//constructor
    }//airtest class
    }//package
    Here I'm just showing that the class actually exists but not
    doing much
    with it.
    If you run this in the Flash IDE, the text field will show
    "File
    object=null". This is because in the IDE, there really is no
    File
    object, it only exists when the SWF is running within the
    Integrated
    Runtime. However, when you run the SWF as an AIR application
    (using the
    adl.exe utility that comes with the SDK, for example), the
    text field
    will now show: "File object=[object File]". Using this
    reference, you
    can use all of the File methods directly (have a look here
    for all of
    them:
    http://livedocs.adobe.com/labs/flex/3/langref/flash/filesystem/File.html).
    For example, you can call:
    var appResource:File=File.applicationResourceDirectory;
    This particular method is static so you don't need an
    instance. If you
    do (such as when Flash tells you the property isn't static),
    simply
    create an instance like this:
    var fileInstace:File=new File();
    fileInstance.someMethod('abc'); //just an example...read the
    reference
    for actual function calls
    Because the getter function in the AIR class returns a Class
    reference,
    it allows you to perform all of these actions directly as
    though the
    File class is part of the built in class structure (which in
    the
    runtime, it is!).
    Using this technique, you can create references to literally
    *ALL* of
    the AIR classes and use them to build your AIR application.
    The beauty
    of this technique is its brevity. When you define the class
    reference,
    all of the methods and properties are automatically
    associated with it
    so you don't need reams of code to define each and every
    item.
    There's a bit more that can be done with this AIR class to
    make it
    friendlier and I'll be extending mine until all the AIR
    classes are
    available. If anyone's interested, feel free to drop me a
    line or drop
    by my site at
    http://www.baynewmedia.com
    where I'll be posting the
    completed class. I may also make it into a component if
    there's enough
    interest. To all of you who knew all this already, I hope I
    didn't waste
    your time.
    Happy coding,
    Patrick

    Wow, you're right. The content simply doesn't show up at all.
    No
    JavaScript or HTML parsing errors, apparently. But no IE7
    content.
    I'll definitely have to look into that. In the meantime, try
    FireFox :)
    I'm trying to develop a panel to output AIR applications from
    within the
    Flash IDE. GSkinner has one but I haven't been able to get it
    to work
    successfully. Mine has exported an AIR app already so that's
    a step in
    the right direction but JSFL is a tricky beast, especially
    when trying
    to integrate it using MMExecute strings.
    But, if you can, create AIR applications by hand. I haven't
    yet seen an
    application that allows you to change every single option
    like you can
    when you update the application.xml file yourself. Also, it's
    a great
    fallback skill to have.
    Let me know if you need some assistance with AIR exports.
    Once you've
    done it a couple of times, it becomes pretty straightforward.
    Patrick
    GWD wrote:
    > P.S. I've clicked on your link a few times over the last
    couple of days to
    > check it out but all I get is a black page with a BNM
    flash header and no way
    > to navigate to any content. Using IE7 if that's any
    help.
    >
    >
    >
    http://www.baynewmedia.com
    Faster, easier, better...ActionScript development taken to
    new heights.
    Download the BNMAPI today. You'll wonder how you ever did
    without it!
    Available for ActionScript 2.0/3.0.

  • CS3 Scroll Bar Behavior

    Hello,
    This behavior was experienced on Photoshop and Flash in CS3. When I zoom in on anything, the scroll bar forces the screen to the bottom (PSD) or to the far left (FLA). Next the program crashes.
    Restarting sometimes corrects it, but lately that is not working.
    I'm running WinXP on a new Lenovo T61p with 3 GB of RAM. I usually have Outlook2007 open along with Firefox 3.0.4.
    What can I do to correct it?
    --GM

    Thanks,
    This method seems to work for Photoshop and Bridge only.
    Do you know this will work for Flash? I've found no documentation in Adobe for refreshing preferences for Flash and Dreamweaver. When pressing Shift+Ctrl+Alt while launching Flash, I get a message about Blaze.
    What is the file name I should search for to delete? I don't believe speed could be the issue, I'm very quick to press after hitting the prog start.

  • Arrayfield Scroll bar behavior

    Is there a way to allow a scroll bar on an array field to keep scrolling if
    the
    user clicks-and-holds one of the arrow buttons. Currently, my users have
    to click an arrow button multiple times.
    Any ideas?
    TIA,
    Troy Burns
    Marriott Vacation Club Intl.
    E-mail: troy.burnsvacationclub.com
    Phone: (941) 688-7700 ext. 4408

    This behavior was present in RH7 and the Packager for AIR.  I have upgraded to RH8 and this behavior does not exhibit.

  • Flash mx -ScrollPane - scroll bar issue

    If we create some dynamic content and display it using
    scrollPane and if the width and height of the clip( the clip
    displayed in ScrollPane) changes dynamically by clicking on a
    button then refreshPane method does not work properly. We have to
    set original position of the clip to (0, 0) when scroll bar
    (vertical/ horizontal) disappears. I think this is not a good idea
    to work around with scrollPane.
    Let me know if there are any efficient methods with which we
    can handle dynamic data in scrollPane to display it properly.
    Thanks in advance,
    Shreeram

    Hi,
    Thanks for your co-operation. Please let me know if
    Macromedia Team fixes this bugs. Till then please let know about
    any methods or any solutions if you know.
    thanks
    Shreeram

  • Problem with actionscript window in Flash CS3 IDE

    The actionscript window doesn't open up for any frames on the
    timeline. When I press 'F9' or try to access via context menu the
    action window tab appears at the top in minimized form. No matter
    how many times I click on it or on the maximize button the window
    doesn't open up. I tried reinstalling Flash CS3 but it didn't help.
    Any help with this issue is appreciated.
    Thanks!

    Found a solution for this atlast ! Delete the Users/AppData
    folder for flash CS3 and things will be back to normal. It seems
    the Flash IDE screws somewhere while saving the local users
    settings. Clearing these settings restored my action window
    !

  • Flash CS3 Strange IDE Problem

    Hi --
    I am having a totally bizarre issue with the Flash CS3 IDE in
    that my
    "Output" window is always blank. This just started happening
    to me today. I
    have tried creating a new Flash movie and putting in a single
    line of
    Actionscript:
    trace("Hi")
    When I run the movie the Output window pops up but its blank.
    Any ideas?
    Thanks
    Rich

    Hi --
    It was the "filter level" setting. I changed it from "none"
    to "verbose" and
    all is good. I never even knew that setting existed so I have
    no idea how I
    changed it! Thank you so much.
    Rich
    "Noelbaland" <[email protected]> wrote in
    message
    news:g8t2nd$4nh$[email protected]..
    > Try this. Open your Output window and go to the options
    menu in the top
    > right
    > corner. In the menu go down to Filter Level and just
    check that None is
    > not
    > checked. If nothing is checked then choose Verbose
    >
    > Another thing you can check is in the Publish Settings
    under the Flash
    > tab.
    > See if the Omit trace actions has been checked - uncheck
    it if it has.
    >
    > Hope that helps!
    >

  • Flash CS3 hard crash on Debug Movie

    I've logged this bug but wanted to post it to the boards in
    case anyone else is having this same problem. It's been going on
    since I purchased Flash CS3 pro and has been really crippling my
    development workflow because I can only get the debugger to work
    maybe 1 in 4 times.
    I also tried reinstalling the latest Java hoping that might
    help as the bug referenced Java.
    ******BUG******
    Concise problem statement:
    Steps to reproduce bug:
    1. Debug Movie (Flash CS3 IDE) with licensed off-the-shelf
    Flash CS3 Pro.
    Notes: "About Flash" shows version as: 9.0
    C:\Program Files\Adobe\Adobe Flash CS3\Flash.exe properties
    shows version as 9.0.0.494
    http://www.adobe.com/support/flash/downloads.html
    "Adobe Flash Player Update for Flash CS3 Professional (9.0.2)"
    never seems to "take" no matter how many times I apply it and
    restart.
    Results: Immediate crash of Flash IDE
    And unable to re-open Flash IDE by clicking on an FLA file or
    Flash Shortcut, which give the message "Windows cannot find
    '[filename]' Make sure you typed the name correctly, and then try
    again. To search for a file, click the Start button, and then click
    Search." Must restart or logout in order to be able to open Flash
    again.
    Expected results:
    No crash, debugger should work.
    Below is text from generated error log:
    # An unexpected error has been detected by HotSpot Virtual
    Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xc483ffff,
    pid=544, tid=3152
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_09-b01 mixed
    mode)
    # Problematic frame:
    # C 0xc483ffff
    --------------- T H R E A D ---------------
    Current thread (0x1515a7a8): JavaThread "FdbThread"
    [_thread_in_native, id=3152]
    siginfo: ExceptionCode=0xc0000005, reading address 0xc483ffff
    Registers:
    EAX=0xc483ffff, EBX=0x1e9af99c, ECX=0x015af42c,
    EDX=0x00710073
    ESP=0x1e9af918, EBP=0x0000000a, ESI=0x10b3011c,
    EDI=0x1513bd78
    EIP=0xc483ffff, EFLAGS=0x00010246
    Top of Stack: (sp=0x1e9af918)
    0x1e9af918: 0071bc58 108a6b68 524852f7 1515a868
    0x1e9af928: 108a6b78 1e9afbe4 010e5c48 ffffffff
    0x1e9af938: 0071edf5 1513bd78 1e9af91c 00000000
    0x1e9af948: 1515a7a8 1a7099a0 1e9af988 1a7099a0
    0x1e9af958: 1266832f 1515a868 1e9af9a0 1e9af99c
    0x1e9af968: 00000000 1e9af96c 00000000 1e9af9a0
    0x1e9af978: 1a70d938 00000000 1a7099a0 1e9af998
    0x1e9af988: 1e9af9c0 126629e3 00000000 12666509
    Instructions: (pc=0xc483ffff)
    0xc483ffef:
    [error occurred during error reporting, step 100, id
    0xc0000005]
    Stack: [0x1e8b0000,0x1e9b0000), sp=0x1e9af918, free
    space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM
    code, C=native code)
    C 0xc483ffff
    [error occurred during error reporting, step 120, id
    0xc0000005]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM
    code)
    j com.adobe.authoring.debug.AuthDebugMgr.nativeNotify([BI)V+0
    j
    com.adobe.authoring.debug.AuthDebugMgr.notify(Ljava/lang/String;I)V+10
    j
    com.adobe.authoring.debug.AuthDebugMgr.notifyTraceEvent(Lflash/tools/debugger/events/Trac eEvent;)V+6
    j
    com.adobe.authoring.debug.model.AuthDebugTarget$FdbThread.handleTraceEvent(Lflash/tools/d ebugger/events/TraceEvent;)V+4
    j
    com.adobe.authoring.debug.model.AuthDebugTarget$FdbThread.processEvents()V+45
    j
    com.adobe.authoring.debug.model.AuthDebugTarget$FdbThread.runInner()V+28
    j
    com.adobe.authoring.debug.model.AuthDebugTarget$FdbThread.eventLoop()V+1
    j
    com.adobe.authoring.debug.model.AuthDebugTarget$FdbThread.run()V+1
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x1515a7a8 JavaThread "FdbThread" [_thread_in_native,
    id=3152]
    0x14e92680 JavaThread "SWF/SWD reader" daemon
    [_thread_blocked, id=1920]
    0x15116088 JavaThread "DJAPI message listener" daemon
    [_thread_in_native, id=3376]
    0x14f7d5b0 JavaThread "DJAPI StreamListener" daemon
    [_thread_in_native, id=3276]
    0x151435d8 JavaThread "DJAPI StreamListener" daemon
    [_thread_in_native, id=2812]
    0x06a37560 JavaThread "Low Memory Detector" daemon
    [_thread_blocked, id=920]
    0x06a36300 JavaThread "CompilerThread0" daemon
    [_thread_blocked, id=1976]
    0x06a35710 JavaThread "Signal Dispatcher" daemon
    [_thread_blocked, id=2784]
    0x06a2bad8 JavaThread "Finalizer" daemon [_thread_blocked,
    id=652]
    0x06a2b050 JavaThread "Reference Handler" daemon
    [_thread_blocked, id=672]
    0x06963dd8 JavaThread "main" [_thread_in_native, id=3056]
    Other Threads:
    0x069e1dc8 VMThread [id=3388]
    0x06a354e0 WatcherThread [id=3104]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 1088K, used 204K [0x160a0000,
    0x161c0000, 0x16580000)
    eden space 1024K, 13% used [0x160a0000, 0x160c3298,
    0x161a0000)
    from space 64K, 100% used [0x161a0000, 0x161b0000,
    0x161b0000)
    to space 64K, 0% used [0x161b0000, 0x161b0000, 0x161c0000)
    tenured generation total 13224K, used 8156K [0x16580000,
    0x1726a000, 0x1a0a0000)
    the space 13224K, 61% used [0x16580000, 0x16d77190,
    0x16d77200, 0x1726a000)
    compacting perm gen total 8192K, used 7267K [0x1a0a0000,
    0x1a8a0000, 0x1e0a0000)
    the space 8192K, 88% used [0x1a0a0000, 0x1a7b8f40,
    0x1a7b9000, 0x1a8a0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0177d000 C:\PROGRA~1\Adobe\ADOBEF~2\Flash.exe
    0x7c900000 - 0x7c9b0000 C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000 C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000 C:\WINDOWS\system32\RPCRT4.dll
    0x77f10000 - 0x77f57000 C:\WINDOWS\system32\GDI32.dll
    0x7e410000 - 0x7e4a0000 C:\WINDOWS\system32\USER32.dll
    0x7c9c0000 - 0x7d1d7000 C:\WINDOWS\system32\SHELL32.dll
    0x77c10000 - 0x77c68000 C:\WINDOWS\system32\msvcrt.dll
    0x77f60000 - 0x77fd6000 C:\WINDOWS\system32\SHLWAPI.dll
    0x763b0000 - 0x763f9000 C:\WINDOWS\system32\comdlg32.dll
    0x773d0000 - 0x774d3000
    C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x- ww_ac3f9c03\COMCTL32.dll
    0x77c00000 - 0x77c08000 C:\WINDOWS\system32\VERSION.dll
    0x76b40000 - 0x76b6d000 C:\WINDOWS\system32\WINMM.dll
    0x73b50000 - 0x73b67000 C:\WINDOWS\system32\AVIFIL32.dll
    0x774e0000 - 0x7761d000 C:\WINDOWS\system32\ole32.dll
    0x77be0000 - 0x77bf5000 C:\WINDOWS\system32\MSACM32.dll
    0x75a70000 - 0x75a91000 C:\WINDOWS\system32\MSVFW32.dll
    0x76bf0000 - 0x76bfb000 C:\WINDOWS\system32\PSAPI.DLL
    0x76390000 - 0x763ad000 C:\WINDOWS\system32\IMM32.dll
    0x71ab0000 - 0x71ac7000 C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000 C:\WINDOWS\system32\WS2HELP.dll
    0x42c10000 - 0x42cdf000 C:\WINDOWS\system32\WININET.dll
    0x00340000 - 0x00349000 C:\WINDOWS\system32\Normaliz.dll
    0x42990000 - 0x429d5000 C:\WINDOWS\system32\iertutil.dll
    0x71ad0000 - 0x71ad9000 C:\WINDOWS\system32\WSOCK32.dll
    0x10000000 - 0x103b0000 C:\PROGRA~1\Adobe\ADOBEF~2\Flash
    Video Extension.dll
    0x76380000 - 0x76385000 C:\WINDOWS\system32\MSIMG32.dll
    0x73000000 - 0x73026000 C:\WINDOWS\system32\WINSPOOL.DRV
    0x77120000 - 0x771ab000 C:\WINDOWS\system32\OLEAUT32.dll
    0x12000000 - 0x121ca000
    C:\PROGRA~1\Adobe\ADOBEF~2\xerces-c_2_6.dll
    0x78130000 - 0x781cb000
    C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSV CR80.dll
    0x7df70000 - 0x7df92000 C:\WINDOWS\system32\oledlg.dll
    0x4ec50000 - 0x4edf3000
    C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9 f82\gdiplus.dll
    0x5b860000 - 0x5b8b4000 C:\WINDOWS\system32\NETAPI32.dll
    0x01780000 - 0x01851000
    C:\PROGRA~1\Adobe\ADOBEF~2\LIBEAY32.dll
    0x00370000 - 0x00397000
    C:\PROGRA~1\Adobe\ADOBEF~2\SSLEAY32.dll
    0x5ad70000 - 0x5ada8000 C:\WINDOWS\system32\uxtheme.dll
    0x021c0000 - 0x0287b000
    C:\PROGRA~1\Adobe\ADOBEF~2\en\Configuration\FlashResources.dll
    0x74c80000 - 0x74cac000 C:\WINDOWS\system32\OLEACC.dll
    0x76080000 - 0x760e5000 C:\WINDOWS\system32\MSVCP60.dll
    0x74720000 - 0x7476b000 C:\WINDOWS\system32\MSCTF.dll
    0x77b40000 - 0x77b62000 C:\WINDOWS\system32\apphelp.dll
    0x755c0000 - 0x755ee000 C:\WINDOWS\system32\msctfime.ime
    0x02a00000 - 0x02a37000
    C:\PROGRA~1\Adobe\ADOBEF~2\adobe_caps.dll
    0x7c420000 - 0x7c4a7000
    C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSV CP80.dll
    0x77920000 - 0x77a13000 C:\WINDOWS\system32\SETUPAPI.dll
    <snip>
    0x6d4c0000 - 0x6d4d3000 C:\Program Files\Adobe\Adobe Flash
    CS3\JVM\bin\net.dll
    VM Arguments:
    jvm_args:
    -Djava.library.path=C:\PROGRA~1\Adobe\ADOBEF~2\JVM\bin
    -Djava.Home=C:\PROGRA~1\Adobe\ADOBEF~2\JVM
    -Xbootclasspath/a:;.;C:\Program
    Files\Java\jre1.6.0_01\lib\ext\QTJava.zip
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=.;C:\Program
    Files\Java\jre1.6.0_01\lib\ext\QTJava.zip
    PATH=C:\Program Files\Macromedia\Flash
    8\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program
    Files\IDM Computer Solutions\UltraEdit-32;C:\Program Files\Common
    Files\Adobe\AGL;C:\Program Files\Unifier;C:\Program
    Files\QuickTime\QTSystem\
    USERNAME=jason
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 6,
    GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 (cores per cpu 2, threads per core 1) family 6
    model 15 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2097151k(1814488k free), swap
    3952772k(3364372k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_09-b01) for
    windows-x86, built on Sep 7 2006 13:59:31 by "java_re" with MS VC++
    6.0

    It's been a year since, still not solution!?
    I am having similar problem for the last 6 months!!

  • Text doesn't show, scroll bar does? using Flash CS3 Please help!

    A little background:  I made text box, typed some text, converted it to a movie clip, named etc.  Used a purchased and proven scroller component ... followed directions to the letter, including referencing/linking the files. However, when I tried to test the scroll bar .... the scroll bar appears, scrolls and works perfectly except the text does not appear.  I have tried making a scroll bar with the UIscrollbar same thing happens. I made an other attempt and put pics along with the text in the movie clip ... this time the pics appeared and scrolled, but the text still would not appear.  PLEASE HELP. I am on a deadline and can't get past this scroll bar issue. THANK YOU!

    Hi
    Thanks for the tip. I did embed the text, but still not showing. Currently, I have the text  box set to the following: Dynamic Text, Multiline, Border Around text, Anti-Alias for Animation (but I have tried all choices and embed the text each time).
    Here are the original instructions with the FTscrollbar which I followed exactly.
    1. Drag the component (FTscrollbar) from the components panel to the stage.
    2. Create a new movie clip to be scrolled:
         a. create a textfield on the scene and type in a few lines of text
         b. select the text fields and covert them to a move clip symbol having the registration point top left. (I did top right since my scroll bar is on the right).
         c. give the new movie clip an name in properties panel.
    3.Select the component of the stage and configure its parameters in the parameters panel or component inspector panel.
         a. Instruc the component to scroll the new created movie clip as the targetMovieClip
         b. Set the viewAreaHeight and viewAreaWidth
         c. set snapMode to snapToView value
         d. leave rest of parameters unchanged unless you want to adjust.
    4. Test Movie (contol/test movie)
    On the FTscrollbar, I have the targetMovieClip set to the movieclips name the only other parameters the instructions said to change were veiwAreaHeight=100 veiwAreaWidth=150 which were the defaults.  When I change this numbers the scroll bar goes away and the text still doesn't appear?  The scroll bar is 16 x 140, the text box to be scrolled is 130 x 143 and the entire flash page is 500 x 550. I am not sure what the viewAreaHeight and viewAreaWidth are for ... or if that could be the problem?  I have never had problems with scrollers but I used MX. I just recently purchased the CS3 and I am not sure what I am not selecting or not selecting but if feel it's probably something simple I am overlooking.  So any more ideas are MOST APPRECIATED. If you need more info from me to help solve, please feel free to ask. THANKS!

  • Right side scroll bar disapears after I have applied a flash object

    Right hand side scroll bar dispears after I have embedded a
    flash object on the page, I have no idea why?. Here is an example;
    http://www.ldnwrestling.com/profiles/Johnathan%20Hartwick/LDNJohnathan%20Hartswick.html
    And I have also copied and pasted the code.
    Any ideas anyone?

    I found a resolution for this - remove the
    overflow: hidden;
    then it works :-)

  • Flash Player Picture goes Zig-zag when scroll bar used in Explorer 11

    Have a Gallery slideshow using Flash Player on our website but when you use the scroll bar it goes Zig-Zag.

    Okay, this is the most interesting problem I've seen today.  It looks like a bug, but we're going to have to reproduce it to fix it.
    The following basics would be very helpful in this regard:
    Read Before Posting: How To Get A Useful Answer To Your Question
    At that point I can get a bug filed for you.

  • I have had elements 10 for a long time but recently the scroll bar for the fonts has disappeared. any ideas?

    I have had elements 10 for a long time but recently the scroll bar for the fonts has disappeared. any ideas?

    First try resetting the tool by clicking the tiny arrow at the far left end of the options bar and choosing reset tool.
    But you should be able to use the arrow keys to navigate through the fonts, too.

  • Scrolling Flash Content With Mouse Scroll Bar

    I created a custom scroll bar in AS2.0 and it works great.
    But now I would like the content to scroll with the mouse scroll
    wheel. Any ideas?

    Anyone know how to fix this on Mac Osx, it works in preview
    but not in safari. Any pointers?
    var mouseListener:Object = new Object ();
    mouseListener.onMouseWheel = function (delta)
    //contentMain._y += delta;
    scrollFace._y -= delta;
    if (scrollFace._y >= bottom)
    scrollFace._y = bottom;
    if (scrollFace._y <= top)
    scrollFace._y = top;
    updateContentPos ();
    Mouse.addListener (mouseListener);
    function updateContentPos ()
    var onePercent = (bottom - top) / 100;
    var scrollPerc = Math.floor ((scrollFace._y / onePercent) -
    37);
    var contentNewY = (contentMain._height * scrollPerc) / 100;
    //trace (scrollPerc + " " + contentNewY)
    contentMain._y = -contentNewY;
    }

  • My scrolling bar stopped working when I updated to firefox 3.6.9 and adobe flash 10.1

    Never had a problem before, but when I just updated to Firefox 3.6.9 my scrolling bar stopped working. It still works in vistas explorer and wordperfect, just not firefox.
    At the same time I updated to adobe flash 10.1 (I think). Whatever the latest version is.
    thnaks

    I have the same problem. I have never had a problem with Firefox before, and use it as my main browser. However recently, after updating to 3.6.8, its been crashing all the time. Up to 20 times an hour. Usually it occurs when I click a link from a Google search, or in Yahoo. Even if I send in a crash report and restart Firefox, it crashes as soon as the same page is brought back up, or the same link is clicked. I have also had it crash when completely idle. Its very frustrating as it is my favorite browser. I've resorted to using Google Chrome for the time being.

  • Pls help - how to create a navigator scroll bar in full flash site

    hi to all,
    good day! i'm norman of RP this s for all d flash master, i'm
    beginner only in flash and i want to create a full flash website
    but i didn't know on how to put a navigational scroll bar. is der
    anybody can help me to give me a simple code of it or a link?
    i appreciate any help from all of u. I nid it badly to my
    project.
    many tnx an advns
    - normz - RP -

    hi,
    use this below div tag to the table:
    <div style="overflow: auto; width: 480px; height: 100px; border-left: 1px gray solid; border-bottom: 1px gray solid; padding:0px; margin: 0px;">
    <table>
    </tabe>
    </div

Maybe you are looking for