Flash CS3 and Filter problem

Ok. So I have a file that was originally created with Flash
8. The file was opened in Flash 9 and published. The problem is
that the text that I have in there is being cut off when published
(publish preview only, The full publish works fine so far). I've
narrowed it down to being a problem with the filters that are used.
I'm using a basic drop shadow on the static text.
More specifically, when I publish using Flash 7, filters are
not supported and they are dropped out and the entire word shows.
When I publish in Flash 8 or 9 with filters turned on, the words
are cut off. For example the word "connection", when a filter is
applied, all that publishes is "connecti". The o and n are gone.
And if I change the settings on that drop shadow filter, the word
is cut off in a different place than before, sometimes cutting a
letter in half. When I delete the filter and publish in 8 or 9, the
entire word shows again. Also, I can edit the blurX or Y, or the
strength or distance and it will sometimes show the entire word.
But when I do this to other words, it creates a problem on those
words. If I then go and edit the settings back or to different
numbers, cutoff happens once again.
This is very inconsistent and makes working with filters
difficult since I can't preview what I've done without doing a full
publish. I've converted the words to movie clips and so far have
not had the same problem, however, I don't want to add movie clips.
So this basically looks like a glitch with this new version of
Flash. I sure hope that someone at Adobe sees this post and might
look into the problem.
I'm on an Intel based MacBook Pro. If anyone has run into
this problem, please let me know if you have found there to be a
solution rather than a work around. Thanks to Anyone who can help.
And once again, this only appears to be a problem when I do a
publish preview, not a full publish.
Tobin

Thanks; thats helpful.
What's going on is that the filter is being reused for your
text instances.
Flash does automatic associations between frames to see where
some objects
should be instances of or related to the objects in the frame
before it. In
your case, since each of your frames have a single static
text field in the
same depth (one spot above the jump in button), and since
they all use the
same drop shadow filter with the same settings, Flash will
reuse that exact
same filter for each of the objects in consecutive frames at
those depths
assuming they are the same object. What this amounts to is
the bounding box
for the first text+filter combination being used for all
others. You can
see this more clearly if you move the "Love" text to be at
the beginning of
the sequence and then test your movie.
What can you do? Here are a few options (though only a few
may work in your
situation):
- include one frame between each text field
- on every other text field, modify a property of the filter,
either
adjusting the strength by a value of 1, changing the quality,
or something
not visible but enough to make Flash recognize it as a
different filter
- in a layer under every other textfield place an invisible
object. This
should force every other text field to be at a higher depth
thereby
preventing Flash from assuming they are the same object as
the one before
it.
- place each text field in a movie clip thereby separating
the filters from
the same timeline (or, technically, just every other text
field would be
necessary)
- change your text to dynamic text. These will be treated as
separate
instances (or at least Flash will be wise enough not to be so
static in its
application of the filter). You may need to be sure to embed
your fonts for
anti-aliasing
In the mean time I will officially log a bug. Though Flash is
"technically"
doing what it thinks is best, its not working out very well
for this case.
"PhoTobin" <[email protected]> wrote in
message
news:[email protected]...
>I have not scaled the text at all. We've just used font
size. Here is the
>link to download the FLA.
>
>
http://www.3peaksintl.com/intro-filter.zip

Similar Messages

  • Flash cs3 and php problem (system error)

    Hi All,
    Been checking out a free utility, called Tell A Friend - followed the instructions to a t but still getting system error.
    Here is the php code:
    <?php
    $to = ($_POST['friend']);
    $link = ($_POST['link']);
    $subject = "Tell a friend";
    $message = "Your friend ";
    $message .= $_POST['name'] . " wants advice you the following link: ".$link;
    $headers = "My WebSite Name";
    if(@mail($to, $subject, $message, $headers))
    echo "answer=ok";
    else
    echo "answer=error";
    ?>
    The main swf has a main.as attached:
    * Flash Tell A Friend
    * http://www.FlepStudio.org        
    * Author: Filippo Lughi          
    * version 1.0                      
    package
    import flash.display.*;
    import flash.events.*;
    import flash.utils.*;
    import flash.external.*;
    import flash.net.*;
    public class main extends MovieClip
      private const PHP_URL:String="sendMail.php";
      private var checker:CheckEmail;
      private var timer:Timer;
      public function main()
       addEventListener(Event.ADDED_TO_STAGE,init);
      private function init(evt:Event):void
       removeEventListener(Event.ADDED_TO_STAGE,init);
       stage.frameRate=31;
       checker= new CheckEmail();
       addInputListener();
       addSendListener();
      private function addInputListener():void
       clip_mc.name_txt.background=true;
       clip_mc.name_txt.backgroundColor=0x999999;
       clip_mc.name_txt.addEventListener(FocusEvent.FOCUS_IN,onFocusIn);
       clip_mc.name_txt.addEventListener(FocusEvent.FOCUS_OUT,onFocusOut);
       clip_mc.email_txt.background=true;
       clip_mc.email_txt.backgroundColor=0x999999;
       clip_mc.email_txt.addEventListener(FocusEvent.FOCUS_IN,onFocusIn);
       clip_mc.email_txt.addEventListener(FocusEvent.FOCUS_OUT,onFocusOut);
      private function onFocusIn(evt:Event):void
       evt.target.background=true;
       evt.target.backgroundColor=0xFFFFFF;
      private function onFocusOut(evt:Event):void
       evt.target.backgroundColor=0x999999;
      private function addSendListener():void
       clip_mc.send_mc.mouseChildren=false;
       clip_mc.send_mc.buttonMode=true;
       clip_mc.send_mc.addEventListener(MouseEvent.MOUSE_DOWN,onSendDown);
      private function onSendDown(evt:MouseEvent):void
       if(clip_mc.name_txt.text!="")
        if(checker.initCheck(clip_mc.email_txt.text))
         sendEmail();
        else
         displayPhrase("Invalid Email");
       else
        displayPhrase("Invalid name");
      private function sendEmail():void
       clip_mc.send_mc.mouseEnabled=false;
       var variables:URLVariables=new URLVariables();
       variables.name=clip_mc.name_txt.text;
       variables.friend=clip_mc.email_txt.text;
       variables.link=ExternalInterface.call('window.location.href.toString');
       var request:URLRequest=new URLRequest();
       request.url=PHP_URL;
       request.method=URLRequestMethod.POST;
       request.data=variables;
       var loader:URLLoader=new URLLoader();
       loader.dataFormat=URLLoaderDataFormat.VARIABLES;
       loader.addEventListener(Event.COMPLETE,onMessageSent);
       try
        loader.load(request);
       catch (error:Error)
        trace('Unable to load the document.');
      private function onMessageSent(evt:Event):void
       var vars:URLVariables=new URLVariables(evt.target.data);
       if(vars.answer=='ok')
        displayPhrase("Message Sent!");
       else
        displayPhrase("System Error!");
       clip_mc.send_mc.mouseEnabled=true;
       clip_mc.name_txt.text="";
       clip_mc.email_txt.text="";
      private function displayPhrase(s:String):void
       clip_mc.display_txt.text=s;
       resetPhrase();
      private function resetPhrase():void
       timer=new Timer(1500,1);
       timer.addEventListener(TimerEvent.TIMER,hidePhrase);
       timer.start();
      private function hidePhrase(evt:TimerEvent):void
       clip_mc.display_txt.text="";
    Any help appreciated. This is a great viral marketing tool, when it ever works
    Kind Regards,
    Boxing Boom

    Never seen such an error, but if it's in the status bar of the browser then it shouldn't be Flash problem. You can check what's happening in your swf by creating a dynamic text field and setting it's text in every major action, that is: requesting PHP and getting back response, to what's just happened.
    So, on the Flash side you can see whether the browser error stops the PHP script and immobilizes further actions.
    What I'd do is create a new Flash file and PHP file and just send 1 variable to PHP, change it somehow and send it back to Flash and print it in a text field. That way you can check whether it's the method you're using to request PHP or just PHP or something else. Step by step adding complexity and checking on which of these steps the error occurs.
    I wish you good luck.
    Ps. It's probably a very rookie problem, we just don't know the source.

  • Help!! Flash CS3 and CS4 "Test Movie" very slow on OS X

    This is a problem that, having read many forums, affects a
    very large amount of people, though Adobe doesn't care at all. It
    only affects OS X users. I know that it has been addressed many
    times in different forums, but I never actually stumbled across
    anyone having found a solution.
    When I use Flash CS3, and I make any animation, even the
    simplest tween, and I preview it with Test Movie, the result I get
    is an extremely slow playback. Something like half the FPS it
    should be.
    However, when I export the SWF and preview it in the external
    Flash Player or in a browser, it's just fine and fast.
    Another interesting thing is that in CS3, when I open the
    Help panel, the problem with Test Movie only happens like 20% of
    the time. In that case, it only gets solved if I restart or Log Out
    at least. I have no idea why the Help panel being open solves the
    problem, this only shows that this is probably a little graphic
    user interface bug, or something similar, that could be solved very
    very easily.
    In Flash CS4, there is no Help panel, so there is no solution
    to the problem.
    It would be nice to be able to press Cmd + Enter to see the
    movie, and not have to do File > Export > bla bla bla, open
    Finder, Find the SWF, double click it, wait for the browser to
    open... etc...
    I have a brand new 2.5 GHz MacBook Pro, and Test Movie runs
    faster on my 900MHz Pentium III PC!! Funny...
    Here are some links I found about this problem:
    http://bugs.adobe.com/jira/browse/FP-878
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407896
    http://www.kirupa.com/forum/archive/index.php/t-258991.html
    This is quite ridiculous, and on Adobe's Support page, the
    solution is "Do not use Test Movie."
    And the funny thing is that they didn't even bother to fix
    this in CS4...
    So basically if something doesn't work, Adobe's solution is
    "Don't use it."
    I guess they're right!
    Please, tell me if anyone has or does not have this problem
    or knows anything about it!
    Thanks,
    Mate

    This is a problem that, having read many forums, affects a
    very large amount of people, though Adobe doesn't care at all. It
    only affects OS X users. I know that it has been addressed many
    times in different forums, but I never actually stumbled across
    anyone having found a solution.
    When I use Flash CS3, and I make any animation, even the
    simplest tween, and I preview it with Test Movie, the result I get
    is an extremely slow playback. Something like half the FPS it
    should be.
    However, when I export the SWF and preview it in the external
    Flash Player or in a browser, it's just fine and fast.
    Another interesting thing is that in CS3, when I open the
    Help panel, the problem with Test Movie only happens like 20% of
    the time. In that case, it only gets solved if I restart or Log Out
    at least. I have no idea why the Help panel being open solves the
    problem, this only shows that this is probably a little graphic
    user interface bug, or something similar, that could be solved very
    very easily.
    In Flash CS4, there is no Help panel, so there is no solution
    to the problem.
    It would be nice to be able to press Cmd + Enter to see the
    movie, and not have to do File > Export > bla bla bla, open
    Finder, Find the SWF, double click it, wait for the browser to
    open... etc...
    I have a brand new 2.5 GHz MacBook Pro, and Test Movie runs
    faster on my 900MHz Pentium III PC!! Funny...
    Here are some links I found about this problem:
    http://bugs.adobe.com/jira/browse/FP-878
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407896
    http://www.kirupa.com/forum/archive/index.php/t-258991.html
    This is quite ridiculous, and on Adobe's Support page, the
    solution is "Do not use Test Movie."
    And the funny thing is that they didn't even bother to fix
    this in CS4...
    So basically if something doesn't work, Adobe's solution is
    "Don't use it."
    I guess they're right!
    Please, tell me if anyone has or does not have this problem
    or knows anything about it!
    Thanks,
    Mate

  • Flash CS3 - Odd button problem

    Hello, Ive upgraded to Flash CS3 and I'm having a problem
    with buttons.
    When I open up my site, the old buttons work fine to navigate
    the site and open up URL links. I have the actions on their own
    layer instead of having an onRelease on each button.
    However, when I create new buttons, they don't work.
    I've even tried copying the existing working buttons,
    applying the exact same actionscript to figure out what's going on,
    but that also doesn't work, those buttons won't open up the URLs.
    Am I perhaps using the wrong publish settings/flash player
    choice?
    Thanks

    The answer is "skins" just search under "Creating skins for
    some instances" in the Flash CS3 help file.

  • Flash CS3 timeline display problems

    I have just upgraded to Flash CS3 and immediately noticed a
    problem when viewing and working with the Timeline window. When I
    click on a frame (keyframe or other) it highlights that frame
    completely white, which means I can no longer tell what type of
    frame it is. The same happens if I highlight a series of frames,
    they are all white and hard to interact with. If I highlight a
    series of frames and attempt to Right-Click, I can rarely get a
    sub-menu to show for quick options like 'Remove Frames' and 'Create
    Motion Tween'. Most of the time my Right-Click is ignored
    completely (ie nothing happens).
    I have searched Google, Flashkit and Adobe site for help with
    this, but no love. Has anyone else experienced this problem? The
    rest of my CS3 install is working perfectly.
    Computer: 20" iMac Intel 2.16Ghz Core 2 Duo, 2Gb RAM, 250Gb
    HDD (~100Gb Free)
    OS: Mac OS X 10.4.9
    Version: Adobe Flash CS3 Version 9.0

    quote:
    Originally posted by:
    sczulu
    Since upgrading from Flash V8, I'm having an issue where
    prominent fonts (such as Myriad Pro) appear jaggy until the file is
    published, making layout and design difficult. I've checked the
    text display settings with now change in appearance. The files do
    publish with anti-aliased text.
    I've noticed this issue as well and was wondering why I was
    having a problem, thanks for answering that question.

  • Flash CS3 and CS4 "Test Movie" extremely slow, ridiculous.

    This is a problem that, having read many forums, affects a very large amount of people, though Adobe doesn't care at all. It only affects OS X users.
    When I use Flash CS3, and I make any animation, even the simplest tween, and I preview it with Test Movie, the result I get is an extremely slow playback. Something like half the FPS it should be.
    However, when I export the SWF and preview it in the external Flash Player or in a browser, it's just fine and fast.
    Another interesting thing is that in CS3, when I open the Help panel, the problem with Test Movie only happens like 20% of the time. In that case, it only gets solved if I restart or Log Out at least. I have no idea why the Help panel being open solves the problem, this only shows that this is probably a little graphic user interface bug, or something similar, that could be solved very very easily.
    In Flash CS4, there is no Help panel, so there is no solution to the problem.
    It would be nice to be able to press Cmd + Enter to see the movie, and not have to do File > Export > bla bla bla, open Finder, Find the SWF, double click it, wait for the browser to open... etc...
    I have a brand new 2.5 GHz MacBook Pro, and Test Movie runs faster on my 900MHz Pentium III PC!! Funny...
    Here are some links I found about this problem:
    http://bugs.adobe.com/jira/browse/FP-878
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407896
    http://www.kirupa.com/forum/archive/index.php/t-258991.html
    This is quite ridiculous, and on Adobe's Support page, the solution is "Do not use Test Movie."
    And the funny thing is that they didn't even bother to fix this in CS4...
    So basically if something doesn't work, Adobe's solution is "Don't use it."
    I guess they're right!
    Please, tell me if anyone has this problem or knows anything about it!
    Thanks,
    Mate

    1) Every post I see that you have made recently reflects on problems that are most likely associated with your computer that are causing problems with your software. 1st thing I would look at with your problems (and I do not mean just this one) is a conflict with another program, ei antivirus software, etc. Trying turning off programs one by one, relaunching your CS programs, and see if you can find a culprit.
    2) With that kind of attitude you are only going to receive just as friendly/helpful solutions. Just because SOMEONE ELSE doesn't solve YOUR problem does not mean that THEY are ignorant.

  • On 12/23/11 I update the adobe flash player and have had problems since- unexpected closing and freezing. Remove the adobe flash player and those problems resolved. How do I go back to the earlier version of adobe?

    I was prompted by Firefox to update my adobe flash player on 12/23/11, which I did. Ever since then the web site has frozen and/or crashed. I run a internet business and can't have this continue. I uninstalled the flash player and the problems have stopped. I would like to reinstall the earlier version of adobe, since that didn't seem to impact the web site.
    This is the flash player I installed on the 23rd - Flash Player 10.3 for Mac OS X 10.4-10.5 (Intel)

    Your above posted list of installed plugins doesn't show the Flash plugin for Firefox.<br />
    See [[Managing the Flash plugin]] and [[Installing the Flash plugin]]
    You can check the Adobe welcome and test page: http://www.adobe.com/software/flash/about/
    You can use this manual download link:
    *http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller

  • Creating metadata in Flash CS3 and reading it in AS3

    Is there a way to store metadata in a library symbol in Flash
    CS3, and then read it in AS3? For example, I want to have the
    following code run:
    m_Metadata = 'You're cool!'
    I need this data before I can play the movie clip. Is there a
    way to store this? I've been trying to find a solution, but it
    looks like I'm just going to have to load in a separate XML file
    with the data.
    Thanks!

    Unfortunately there's no simple way to add instance level
    code in Flash CS3 or CS4 with AS3. This is a significant authoring
    tool deficiency in my opinion.
    Making a component... depending on what you want to do, there
    can be a lot of overhead. There may also be some very flaky/buggy
    behavior in Flash CS3 with custom components if your experience is
    anything like mine. However, for basic metadata, try this:
    1. Select the Symbol in the Library
    2. Right click, choose Component Definition...
    3. In the Parameters data grid you can add
    parameters/properties. Make sure you set the "Variable" field as a
    unique identifier for each parameter. These are the properties
    you'll use in AS at runtime to retrieve the values.
    4. Now on each instance on the canvas you can go to the
    Parameters tab and enter custom values for each parameter.
    5. At runtime, you should be able to access the values via
    instance_name.variable_name
    I believe that will work without actually creating a
    component class and making it functional.

  • Adobe Flash CS3 detected a problem and has to be closed.

    Hello,
    I'm using Flash CS3 for a month, but the problem is that
    since a week ago, flash CS3 stops working after 5 minutes of use.
    So today I've downloaded the test version (30 days) in
    another PC, but even with this other computer the software doesn't
    works and has to be closed.
    So that's not because of my computer. It's a more general
    problem.
    Did it happened to one of you? DO you know if flash CS3
    doesn't work for everyone right now?
    Do you know how to repair this kind of problem? I'm very
    desperate and I really need to use flash. I don't know what to do.
    Thank you very much

    There could be any number of items causing this. First off is do you have an active internet connection? If so have you tried rebooting you computer?

  • 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 and Snow Leopard

    Hi, i am experiencing a strange and unpleasant situation.
    I am using CS3 and upgraded to Snow Leopard 10.6.2 last night, along downloading the latest Flash Player for browsers.
    Problem is that now all of my text block arent displaying the same line height that before i updated?????
    I compared the same exact SWF made under Tiger and those made under Snow Leopard and the two arent identical, lines are misaligned regarding line height!
    What gives? Flash or OSX interpreting fonts differently?
    Thanks!

    I dont know whats up with this... but all of a sudden today, in my flash cs4 (mac and PC versions) When i go to open a fla in flash to work on it, i select a text box... in the properties window under position and size --- HIEGHT-(selection hieght) value is grayed out... I opened fla's that i had don before but this also now affects them as well. I tried opening on my PC .. now it does the same thing. Every file i open now.. when i got to the properties of a text box ... the height values are grayed out. I am using Palatino roman font... in a simple text box.
    Position and size:
    x:20       y:15
    w:264     H:335.2 <-------- grayed out!!!
    I have opened these files in cs3... and that now is also experiencing this......
    PLEASE HELP... Im in the middle of a project --- with extreme deadlines...
    PLEASE PLEASE PLEASE
    my post....
    saw yours.. wondering if this is related.. Im running Snow Leopard now to.. just started. Then the Height variable became grayed out. In your properties windows, are you experiencing the same??
    It's killing me...Im an animator that does books... I am unable to adjust this value, and when i sent the fla to someone else... they say they see everything fine, but when i view it.. the Text spacing in multiline text box is different than discribed back to me... My line height is much larger than what he is seeing.
    Please let me know if you find anything.
    Regards
    Phantom Lady

  • Flash cs3 animation freeze problem

    The subject of this post is seeking help to the following
    problem: As i get 3/4 through my animation my flash cs3 suddenly
    freezes down on me and the only thing that helps is closing it down
    from the task manager. All the other applications run perfectly
    well in the background. Got a pretty good system (3GB ram, vista,
    dual core processor). Can anyone help!!!

    Ни когда
    больше не
    буду
    пользоваться
    adobe Flash CS3 ,потому
    что он
    перезагружает
    мой
    компьютер.
    Наверное
    когда её
    делали
    перестарались.

  • 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 and FLVPlayback

    Hello.
    Is there a way to dynamically instantiate a FLVPlayback with
    ActionScript 3?
    I imported fl.video.FLVPlayback and Flash accused not knowing
    this class...
    Thanks,
    Ian L.

    Ian,
    > Is there a way to dynamically instantiate a FLVPlayback
    with
    > ActionScript 3?
    Sure thing.
    > I imported fl.video.FLVPlayback and Flash accused not
    knowing
    > this class...
    Just make sure to drag the FLVPlayback component from the
    Components
    panel into your Library. After that, the following four lines
    (just for
    example) will do it:
    import fl.video.FLVPlayback;
    var player:FLVPlayback = new FLVPlayback();
    player.source = "
    http://www.helpexamples.com/flash/video/caption_video.flv";
    addChild(player);
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Flash cs3 and PDFs

    Did Adobe come up with a way to load PDF files into an SWF in
    Flash CS3? If not .... they need to do that for the next version,
    because that would be wonderful.

    I'm using Flash Paper for this and the results are excellent.
    It wasn't included in CS3 but still installs ok from the Studio 8
    disc.

Maybe you are looking for