Using boundingBox in flash CS3 to use it in Flex

I am stuck with my Banner design in Flash CS3. I some
animation which is coming outsied of my scene to the scene. But
whenever I am using this swf in flex it is also showing the outside
of the screen material. I know I have to use boundinBox. I am doing
it But still it is not working. Is there any to help me out.

Yes...It worked .Thanks a lot for your help.

Similar Messages

  • Can I use AS2 in Flash CS3 ?

    Is it possible to use in Flash Cs3 the AS2 and not just AS3 ?
    I am only trying to do a web link from a button to some web
    site.....
    I wrote
    on (release) {
    getURL ("
    http://www.yahoo.com", "_blank");
    and nothing happen....some women here asked same question a
    month ago...people told her it is different from the AS2.....still
    I cant used AS2 in falsh cs3 ?
    or can I ?

    you can mix as1 and as2 in an swf created in flash cs3 or you
    can use as3 in a swf created in flash cs3. but you cannot mix as3
    with either of the other two languages.
    use the publish settings to choose which language you want to
    use in your swf.

  • Using Vcam with Flash CS3

    I installed the adobe vcam extension in my Flash CS3 (Mac)
    and it all works
    ok except that the vcam frame comes in with a crosshairs
    located on the
    upper left hand corner of the frame and no matter what I do I
    cant get it to
    set the crosshairs on the center of the frame.
    When I go to use it and test the movie, the vcam action keeps
    giving me a
    lot of extra white space to the top and left of the screen
    rather than show
    me the actual frame area that I want to see and zoom into.
    Can anyone please tell me how the crosshairs of the vcam
    frame can be set to
    the center of the frame so that what I really want to frame
    and zoom on
    actually shows up in the rendered movie? Or is there another
    way to make the
    vcam frame include the areas that I want instead of giving me
    all the
    unweanted extra white space?
    Thanks a lot for any advice.

    I installed the adobe vcam extension in my Flash CS3 (Mac)
    and it all works
    ok except that the vcam frame comes in with a crosshairs
    located on the
    upper left hand corner of the frame and no matter what I do I
    cant get it to
    set the crosshairs on the center of the frame.
    When I go to use it and test the movie, the vcam action keeps
    giving me a
    lot of extra white space to the top and left of the screen
    rather than show
    me the actual frame area that I want to see and zoom into.
    Can anyone please tell me how the crosshairs of the vcam
    frame can be set to
    the center of the frame so that what I really want to frame
    and zoom on
    actually shows up in the rendered movie? Or is there another
    way to make the
    vcam frame include the areas that I want instead of giving me
    all the
    unweanted extra white space?
    Thanks a lot for any advice.

  • How to use as3 in flash cs3 to add dynamic text from a text file into a flash file

    let me start out by saying today is my first day of scripting
    in flash.
    I have a text file text.txt
    it contains
    text1=hello world
    can someone please show me how to display this text in a
    flash file
    i have been searching for this for hours and there are
    solutions with flash mx and actionscript 2.0 but i would like to
    see how to do this in as3.
    just a simple frame that loads that file and displays it when
    you test run the program
    much apreciated
    RC

    I'm not up on AS3 yet, but many things are still similar. You
    need to use the LoadVars class to accomplish this, You can find
    information this in Flahs Help>Actionscript>Actionscript
    Language Reference>Actionscript classes.
    rem: the text.txt file and the text.fla file must be in the
    same directory.
    The code will look something like this:

  • How do I use a Flex swc in Flash CS3?

    My engineering team has used Flex to create a nice little swc
    for me to use inside of Flash CS3, but now I'm having trouble
    finding any documentation on how to actually import it. Placing it
    in the Components folder doesn't work, as it's not recognized by
    the Components window (either as an AS2 or AS3 swc). Is it even
    possible to use swcs from Flex in Flash? Thank you very much for
    the help.
    -- Jeremy

    Use these links
    Modular Applications
    http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7f22.html
    Creating Flex Libraries
    http://help.adobe.com/en_US/Flex/4.0/UsingFlashBuilder/WS6f97d7caa66ef6eb1e63e3d11b6c4d0d2 1-7fe6.html
    -Pramod
    http://www.flexmycode.com

  • How to use Text Layout Framework in Flash CS3?

    Hi,
    I perferctly now how to get TLF to work in CS4.
    As far as I know, the the base code is in AS3 so I should be able to locate the classes in CS3 and use it in Flash CS3.
    I appreciate if there is anyone who can help me with this?

    I'm not that knowledgeable about Flash Pro, however, I'd be quite surprised if you could make this work.  CS4 added Flash Player 10 support.  That includes a compiler update for Vector - a new AS3 feature.  Minimally you'll have to get Flash CS3 to generate FP10 level content and compile with the playerglobals.swc from FP10.  If you can get that far than adding textLayout.swc to your project should be straightforward.
    Maybe someone else has an idea.
    Hope that helps,
    Richard

  • Flash CS3 and Javascript

    A couple of weeks ago, I wrote in another thread about how
    Flash CS3 (using AS3) can directly handle javascript. I must tell
    you that this direct handling is limited. You cannot call custom
    javascript functions from html this way. If you need to call
    function in your html, you must still use ExternalInterface.
    Flash CS3 has a new function called navigateToURL().
    navigateToURL() is part of the flash.net package and is
    asynchronous (does not return any kind of value).
    Let's say you want to throw a simple javascript alert message
    to a user. You need to first make a call to the URLRequest
    constructor and pass it a string value that uses javascript
    protocol. In the alert example, you'll be calling the string
    "javascript:alert('Your first AS3 javascript call');" To those
    familiar with HTML, this will look very very familiar. All put
    together, it looks something like the code below....
    This idea can be expanded on and added to custom event
    handlers in classes for buttons and other things in your projects.
    Remember though that you must call the javascript code as it
    appears in the javascript protocol. So to open a popup window,
    you'd need to use window.open( blah, blah, blah ). Personally, I
    still use ExternalInterface to call my Javascript functions (if I
    need them at all). The only reason I use navigateToURL is when the
    browser I'm using does not support ExternalInterface.
    Anyhow, the code for the above example is down below. If you
    have questions, post them here.

    k,
    my post 2+ weeks ago was adrenaline driven and premature. the
    example I just gave was the code I was talking about. Why I ever
    posted that URLLoader was capable of javascript interaction is
    beyond me. I know better. The purpose of my post was simply to
    answer questions I've been getting in my e-mail and to clarify my
    original post 2 weeks ago.
    As I stated, navigateToURL is meant for specific scenarios
    just as getURL was in AS1 and 2 which was replaced by navigateToURL
    in AS3. This would be more for the Linux users and the a-typical
    O/S users where ExternalInterface is not supported by the browsers
    on those operating systems. I do not condone using navigateToURL or
    getURL. I will always recommend external javascript files and
    ExternalInterface. My apologies for leading anyone on with my
    premature run-off of the typing finger.

  • Flash CS3 9.0.124 Players update not working

    I downloaded and followed the instruction for updating the
    players for Flash CS3 so that it publishes 9.0.124 flavours:
    http://www.adobe.com/go/kb403415
    However, when tracing out the Capabilities.version from
    within the Flash IDE (control+enter) it still shows WIN 9,0,115,0
    rather than WIN 9,0,124,0. I'm presuming that the update hasn;t
    worked. Does anyone know if there is some other players directory
    stashed away somewhere that I need to update, or some preferences
    file I need to delete to force flash to use the newly added
    players?
    tech article link
    I'm using windows XP, Flash CS3 9.0.2 with AIR update

    I can't get past this error message in Leopard 10.5.3 or 10.5.4 either.

  • Adobe Flash CS3 Professional with Windows8

    Can't download Adobe Flash CS3 Professional using Windows 8. Help!!
    Adobe Flash CS3 Professional

    if you follow all 7 steps you can directly download a trial here:  http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html
    and activate with your serial number.
    if you have a problem downloading, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com

  • Can Adobe Flash CS3 Pro Convert Powerpoint To Flash

    I have Adobe CS3 Pro & desperately need to convert
    Powerpoint files ACURATELY to flash. I've tried:
    - PresentationPro/PowerConverter
    - Articulate
    - Flash Paper 2 (Can't get to work on my PC)
    - Geo - Presentation to Video
    ...And none converts ACCURATELY. Can I convert using my Adobe
    Flash CS3 Pro???
    HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    My conversion is done with a tool called
    PPT2Flash
    Professional
    Supproted PowerPoint Elements includes
    1. 170+ animations in PowerPoint
    2. all transtions PowerPoint
    3. inserted audio/music
    4. inserted video
    5. inserted flash
    6. rehearse timings
    7. notes
    8. attachemnts
    9. hyperlinks, headers and footers, text placeholders,
    superscipt and subscript and etc
    10. compatible with
    PowerPoint 2007
    You may like to have a look at a demo
    here
    As my comments, I would like to say this tool has the most
    comprehensive features compared with many highly priced products.
    If you are looking for a simple conversion tool without
    advanced editing features, you can try
    PPT2Flash
    Standard

  • Flash CS3 debugger window background color

    Is there any way to get Flash CS3 to use the same background
    color from your actionscript settings in the debugger? It's always
    light gray--I like to use a black background for my actionscript,
    but now I'm probably going to have to change to gray since it
    appears the debugger ALWAYS uses a gray background regardless of
    your settings? (My text is white and I can't see it against the
    debugger background)
    Is there any way to change this?

    if you're wanting to look at the contents of variables,
    unlike the AS2 debugger, the movie needs to be paused, for example
    at a breakpoint. Once the movie's paused variables will appear in
    the 'Variables' window.

  • Flash CS3 now crashes randomly after 0-30 minutes

    Hello,
    I've been using flash CS3 for years without problem.
    Since the beginning of nov.2010, it crashes after some time of use. More precisely the toolbar disappears, then reappears, some GUI elements blink. It's not related to a specific user action. When this happens, closing flash is difficult (the window remains here). When switching to another app, some Flash parts remains. The graphical memory seems saturated. Launching another app is met with a window error message. A windows restarts becomes necessary.
    This problem arises only in Flash, and with no other apps from CS3 suite.
    2 colleagues of mine has the same issue, also in the last weeks (= nov 2010). We work in separate places. We didn't exchange files.
    We are on Win XP Home Edition, Dell computer.
    They have more recent PCs than mine (which clearly meets the CS3 requirements), with enough memory,etc..
    One colleague has reinstalled winXP. The problem arised again, but I don't know when. He also tried CS4 and CS5 and had the same problem.
    Today he un-installed all Adobe products with this utility: http://www.adobe.com/support/contact/cs5clean.html.
    After this hour of uninstall process, he reinstalled Flash CS3 and used it without network/internet (no funky updates): The problem was still here.
    Does anyone has an idea?

    After desinstalling Avira Antivir (and installing another antivirus software), the problem disappeared.
    Just disabling Antivir is not enough.
    Check this post on Avira forum (in french) for more info from Avira.

  • Using Flex SWC in Flash CS3 (ADOBE EXPERT NEEDED)

    I've searched everywhere, and there is not one good answer to
    the question: "How do I use a Flex AS3 Class Library in Flash CS3?"
    So I decided to come to the source :)
    This question has also been asked on this forum twice, but
    got no answer.
    Any help on this topic will be greatly appreciated
    - Oz

    If you're using Flex 2, there's a solution using a
    manifest.xml file. Tim Walling details it on
    his
    blog, but I haven't found a way to get it to work for Flex
    3.

  • Was using Flash 8 on a PC now using Flash CS3 on MAC X and having problems

    Hello,
    I'm currently creating a photo gallery displaying thumbnails
    of the original main image.
    I was using Flash 8 on a PC and now am using that same file
    on a MAC OS X using Flash CS3. And now the thumbnails are not
    visible. The main image appears but the thumbnails do not.
    The SWF created with Flash 8 viewed properly but when I
    opened the fla in Flash CS3 the thumbnails stopped appearing and
    I'm not sure what to do?
    Any help or suggestions would be greatly appreciated!
    Thanks

    Whoops, maybe I posted this in the wrong forum

  • Using Flex components within Flash CS3

    I'm new to Flex and I enjoy all of the components that it has
    to offer, but I am wondering about their availability within Flash.
    My plan is to make a highly animated and interactive menu and
    I have reached a point where I have to ask two questions:
    1. Is is possible to use any of the Flex components within
    Flash CS3?
    2. If the first is not possible, then if I make my menu and
    specify "containers" within the Flash file then is it possible to
    populate these "containers" with Flex components by making the
    Flash (.swf) file of my menu into a Flex component itself?

    No, Flex components cannot be used in Flash 8.

Maybe you are looking for