Problem with compression with flash cs3

our web developper says that she was unable to compress image
with flash cs3 any idea why and what i can do for her ?
Thanks

Mark,
> I have set my publish settings to Flash Player 9.0 and
Actionscript
> 3.0, but keep getting an error as follows:
>
> "WARNING: The component 'FLVPlayback' requires
ActionScript 2.0."
Gotcha. You must have started the document in AS2, then
changed the
publish settings. Each version of the language has its own
version of the
FLVPlayback Component (written in the relevant language).
Start over and
compare two compleley new FLA documents: make one for AS3 and
one for AS2.
Open the Components panel and note the differences between
the two. There
are a different set of Components depending on the language
chosen for the
document. Drag the FLVPlayback Component from the Components
panel in an
AS3 document, and you'll have the AS3 version.
David Stiller
Co-author, Foundation Flash CS3 for Designers
http://tinyurl.com/2k29mj
"Luck is the residue of good design."

Similar Messages

  • How to make email link with a button with AC2 in flash cs3?

    How to make email link with a button with AC2 in flash cs3?
    I wrote this, but it does not work:
    btn_emailinfo.on (release) {
    getURL("mailto:"[email protected]");
    }

    I am guessing you put that on a frame?
    If so, the syntax is as follows:
    btn_emailinfo.onRelease = function(){
    getURL("mailto:[email protected]");
    Though, if you are placing it directly on the button itself,
    the syntax is:
    on(release){
    getURL("mailto:[email protected]");
    }

  • Sync and frame rate problems importing video to Flash CS3

    Just like the subject states, I am indeed having frame rate problems importing video to Flash CS3.
    When I export a video from Premiere with the settings:
    1280x720
    frame rate of 23.976
    using H264 or Animation (basically every codec produces the same results),
    "embed video on SWF and play in timeline"
    When I do this the file exports fine. Playing it in Quicktime works fine and the audio syncs up no problem. But when I import it into Flash using the same settings, for some reason the movie clip is now too fast in that the video does not match the audio and seems to be at more like 12 fps now (just a guestimate). The action of the video is over long before the audio even comes in.I have verified that the frame rate is correct in Flash so it's not that.
    I've done this literally hundreds of times in the past and suddenly it does not work and I can not figure out why. I'm not even really using video, but actually artwork that I am putting together as an animatic for an animated piece so the video could not have been imported incorrectly or digitized wrong either. Can someone out there please tell me how to make this work? Any help would be GREATLY appreciated!
    -Mike

    Thanks for you quick response however it really doesn't apply to what I am doing in any way. I will not be uploading the video to a server. I am using the imbed function so I can use it as a layer and then animate over it. It is just reference and will ultimately be deleted. The Fla file does indeed carry the same specs as I stated in my first post. I have done it this way dozens of times and I am trying to figure out why it suddenly will not work.
    ~Mike

  • Problem with FLVPlayer in Flash CS3 (need to save out as Actionscript 3.0 SWf file)

    I am using Flash CS3 and am trying to publish a SWf file that
    makes use of the "FLVPlayback" component. I need for this SWF file
    to be published as an Actionscript 3.0 file, so I have set my
    publish settings to Flash Player 9.0 and Actionscript 3.0, but keep
    getting an error as follows:
    "WARNING: The component 'FLVPlayback' requires ActionScript
    2.0."
    Has anyone encountered this?? I am doing something wrong? I'm
    pretty comfortable within Actionscript/Flash 2.0, but am only
    beginning my first steps into the relam of CS3 and AS3.
    I have also attached a screenshot of the files that represent
    my FLVPlayback component (or so I assume). (see this link for
    attachments
    http://www.actionscript.org/forums/showthread.php3?t=140886)
    Thanks all,
    Mark
    http://www.actionscript.org/forums/showthread.php3?t=140886

    Mark,
    > I have set my publish settings to Flash Player 9.0 and
    Actionscript
    > 3.0, but keep getting an error as follows:
    >
    > "WARNING: The component 'FLVPlayback' requires
    ActionScript 2.0."
    Gotcha. You must have started the document in AS2, then
    changed the
    publish settings. Each version of the language has its own
    version of the
    FLVPlayback Component (written in the relevant language).
    Start over and
    compare two compleley new FLA documents: make one for AS3 and
    one for AS2.
    Open the Components panel and note the differences between
    the two. There
    are a different set of Components depending on the language
    chosen for the
    document. Drag the FLVPlayback Component from the Components
    panel in an
    AS3 document, and you'll have the AS3 version.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Problems With List Component Flash Cs3

    Hello Friends,
    I am working in Flash Cs3.
    I am having a List component in my application.
    I added 10 items into my list component. Now out of those 10 items, i want to disable particular list items like Item 4, Item 8, Item 9. How to do this using flash cs3 or flash 8.0.
    Item1   --  Enabled state
    Item2   --  Enabled state
    Item3   --  Enabled state
    Item4   --  Disabled state
    Item5   --  Enabled state
    Item6   --  Enabled state
    Item7   --  Enabled state
    Item8   --  Disabled state
    Item9   --  Disabled state
    Item10 --  Enabled state
    Any suggestions/ideas would be really appreciated.
    Regards,
    Rajesh

    Hello Friends,
    I got a partial solution for this. Now i can able to disable a particular list item using flash cs3. I achived this. But it was happening only after clicking the item values....
    But i need in a diff way like, as soon as you run the flash file it has to disable. how is this possible in flash cs3.
    this is the code :
        import fl.controls.List;
        import fl.controls.listClasses.CellRenderer;
        import fl.controls.listClasses.ListData;
        import fl.events.ListEvent;
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.text.TextField;
            var sampleItem1:Object = { label:"John Alpha" };
            var sampleItem2:Object = { label:"Mary Bravo" };
            var sampleItem3:Object = { label:"Trevor Gamma" };
            var sampleItem4:Object = { label:"Susan Delta" };       
            var myList:List;
            var tf:TextField;
      ListDataExample()
             function ListDataExample() {
                createList();
                tf = new TextField();
                tf.x = 10;
                tf.y = 125;
                addChild(tf);
             function createList():void {
                myList = new List();
                myList.move(10,10);
                myList.addItem(sampleItem1);
                myList.addItem(sampleItem2);
                myList.addItem(sampleItem3);
                myList.addItem(sampleItem4);
                myList.rowCount = 4;
                myList.addEventListener(ListEvent.ITEM_CLICK,listItemSelected);
                addChild(myList);
             function listItemSelected(e:ListEvent):void {
                var cr:CellRenderer = myList.itemToCellRenderer(e.item) as CellRenderer;
                var listData:ListData = cr.listData;
       if(cr.listData.row == 2) {
        cr.enabled  = false
                tf.text = "Row selected: " + listData.row;
    waiting for your replies.
    Regards,
    Rajesh

  • Problem openning + setting up Flash cs3 trial

    I get an error when i open ADBEFLPRCS3_WWE.EXE (Flash cs3 )
    this is the picture:
    My
    Error i get when i open the Flash cs3 setup, please click image to
    get a better view.
    And please zoom in to the picture to see the error ( just
    click the image)
    It comes up with an error! Ive already downloaded flash mx
    2004 and flash 8.
    Hopefully you can help!

    The fix: Change the namespace on the second line of <project root>/src/ANESampleTest-app.xml
    FROM:   <application xmlns="http://ns.adobe.com/air/application/3.6">
    TO:   <application xmlns="http://ns.adobe.com/air/application/13.0">
    A brief and incomplete background:
    The file <project root>/src/ANESampleTest-app.xml is the ‘application descriptor file’. When using the project files downloaded with the tutorial (that contained the 3.6 reference), the builder did not find this compatible with the configuration on my computer (a trial version I installed today - 5/3/2014 - and patched according to the tutorial). I never did figure out how to lookup valid namespaces and am still confused about how all the sdk’s relate to each other. I stumbled upon this solution by creating a fresh new project and found that the namespace specified by the new project wizard was “13.0” on this line of this file.

  • Problems With NumericStepper in Flash CS3

    Hello Friends,
    I need a small help. I just strucked up with NumericStepper issue.
    I have a NumericStepper and i am setting the Minimum value to 0 &  Maximum value to 10. Now my requirement is, suppose if the user  entered/typed the value which is greater than Maximum value (ie 10)  inside NumericStepper inputbox I want to display that particular value  in "RED" color. how to do this.
    Your help would be appreciated,  i need a solution asap.
    I am attaching the code what i am doing.......
    package
    import fl.controls.Label;
    import fl.controls.NumericStepper;
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.text.*;
    public class NumericStepperExample extends Sprite
    private var ns1:NumericStepper;
    private var ns2:NumericStepper;
    private var lbl1:Label;
    private var lbl2:Label;
    private var rowHeight1:Number = 100;
    private var rowHeight2:Number = 50;
    public function NumericStepperExample() {      
    setupSteppers();
    setupLabels();
    private function setupLabels():void {
    lbl1 = new Label();
    lbl1.text = "Min Value -- 0 and Max Value -- 10";
    lbl1.autoSize = TextFieldAutoSize.LEFT;
    lbl1.move(200, rowHeight1);
    addChild(lbl1);          
    private function setupSteppers():void {  
    ns1 = new NumericStepper();
    ns1.stepSize = 1;
    ns1.minimum = 0;
    ns1.maximum = 10;
    ns1.width = 60;
    ns1.move(100, rowHeight1);
    ns1.addEventListener(Event.CHANGE, changeOccurred);
    addChild(ns1);
    private function changeOccurred(e:Event):void {
    var nsTarget:NumericStepper = e.target as NumericStepper;
    var redColor:TextFormat = new TextFormat();
    redColor.color = 0xff0000;
    var blackColor:TextFormat = new TextFormat();
    blackColor.color = 0x000000;
    if (nsTarget.value > nsTarget.maximum) {
    nsTarget.setStyle("textFormat", redColor);
    } else {
    nsTarget.setStyle("textFormat", blackColor)
    Rajesh

    First of all, you would have to create your own version of the NumericStepper class, because the NumericStepper would never show you if someone tries to enter an invalid value.
    Before the value gets to you, it will get corrected to be inside the range between minimum and maximum, inclusive, by the NumericStepper class, silently.
    You would actually have to add an event-handler inside the NumericStepper that listens to every single keystroke and then changes it's color to red, if the current value exceeds the limits. This will only happen while typing, never after entering a value or using the arrow-buttons.
    So after all I would ask myself, if this very rare condition of displaying the NS in red color just for the moment when you're typing in a value by keyboard which will get corrected by the NS class automatically either way is worth the whole effort.

  • Problem running programs in Flash CS3

    I'm a secondary school computer programming teacher with a frustrating problem.....
    A student will write a program and run it.  The result is perfect with no errors and it does exactly as it should.
    If the student saves it, the program no longer displays in the run window.
    If we copy and paste the code to a new file without making any changes and run it, it works perfectly again.  If the student hands it in and I run it on my machine without changing things, it works perfectly.
    There's something tied to a couple of my student's computer accounts that is making this happen.  It happens on any computer they're logged in on. 
    Any thoughts?  Suggestions?
    Thanks in advance!

    Ask in the Flash forum and provide proper technical information - which despite your otherwise longwinded post you haven't.
    Mylenium

  • Scrubber problems continued. AS2/Flash CS3

    Hey guys. I'm having troubles with my scrubber on my loadbar again.
    As a picture says a 1000 words heres a screenshot of the problem:
    Basically the scrubber bar is going waaaay past the 373px I asked to stop at.
    I've tried messing about with telling scrubber_mc to stop at the end of ._x of the loadbar clip but have had no luck.
    Anybody with suggestions?
    Here's the code:
    /*These are the scrubber functions*/
    var scrubInterval;
    loader_mc.scrub_mc.onPress = function()
        clearInterval(videoInterval);
        scrubInterval = setInterval(scrubber,10);
        this.startDrag(false,0,this._y,373,this._y);
    loader_mc.scrub_mc.onRelease = loader_mc.scrub_mc.onReleaseOutside = function()
        clearInterval(scrubInterval);
        videoInterval = setInterval(videoStatus,100);
        this.stopDrag();
    function scrubber()
        ns.seek(Math.floor(loader_mc.scrub_mc._x/373 * duration));
    Any help is appreciated.
    Thanks in advance

    Thanks for the reply. I figured there is something wrong with the either the reg points or I'm not actually scripting the scrubber correctly. Sorry I'm very newbish on AS so what you recommend I do?

  • FLVPlayback Memory Leak in Flash CS3

    Hi There,
    I' making a flash file with AS2 in Flash CS3. I put a FlVPlayback in stage and let it load a couple of FLV files from my local HDD and playing continuously. I use "addEventListener" to check the current running flash movie is completed. After complete event occur, I load another flv movie to paly again.Here, I noticed that memory usage is increasing every time a new flv file is loaded and played. I heard "addEventListener" in CS3 is causing the memory leak and not being detected by GC.
    Please let me know if there is a solution to solve the memory  leak issue. I posted my codes here to know something I'm doing wrong.
    Thanks in advance...
    ================================
    onClipEvent (load)
        function _fun_complete(eventObj)
            this.autoRewind = "true";
            var _v1 = _root.v;
            var _v2 = _root.FLVlists.length;
            --__v2;
            if (_v1 < _v2)
                ++_v1;
            else
                _v1 = 0;
            this.contentPath = _root.FLVlists[_v1].path;
            var _v3 = _root.listVids[_v1].width;
            var _v4 = (stage._width - _v3) / 2;
            this._x = _v4;
            _root.v = _v1;
            this.play();
        this.addEventListener("complete", _fun_complete);

    Helllo Friend,
    Thanks for your feedback. The problem with removeEventListener is that , the player stops and not playing anymore. In my application, I nned to loop and play one FLV files after another. For example, I need to play 3 flv files, File1.flv, File2.flv, File3.flv. I load and play File1.flv first. Once complete event trigger from "addEventlisterner" , then I load File2.flv and then File3.flv and then Flie1.flv. So it needs play continuously and causing memory leak. Please let me know if there is another way of working around.
    Regards

  • Flash CS3 hanging & Not responding

    Hi there,
    I'm having an issue with trying to import an .ai (CS3) file
    with strokes to Flash CS3.
    Whenever I try and import a complex (730 shapes) .ai file
    with strokes, Flash just hangs and becomes unresponsive. I can
    however import the same complex .ai file without strokes defined.
    I can also import less complex (7 shapes) .ai files with
    strokes defined.
    Has anyone experienced similar issues and found a fix?
    Many thanks, Rich
    <!-- Richard Germuska M.Eng., M.Sc. -->

    uninstall, clean and then reinstall cs3, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.4 (win) 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Flash cs3 crashes when I try to publish

    Hello,
    my flash cs3 is crashing every time I try to publish a file,
    why? I run vista business 32 bit
    I didn't have problems until today,using flash cs3 for the
    last month
    here is what the os says:
    Problem Event Name: BEX
    Application Name: Flash.exe
    Application Version: 9.0.0.494
    Application Timestamp: 46015140
    Fault Module Name: Flash.exe
    Fault Module Version: 9.0.0.494
    Fault Module Timestamp: 46015140
    Exception Offset: 00c5958f
    Exception Code: c000000d
    Exception Data: 00000000
    OS Version: 6.0.6001.2.1.0.256.6
    Locale ID: 1033
    Additional Information 1: bd02
    Additional Information 2: b71b5bf9ea5ff08d6fffcb887aba95ff
    Additional Information 3: 1fd9
    Additional Information 4: 0053c83f18f91bf1d56eaad6275e8c5b
    Hint:
    If I save the same .fla in another folder, flash cs3 doesn't
    crash when publishing. why? this looks that is happening in the
    root of the folder

    quote:
    Originally posted by:
    Newsgroup User
    I Love Doing Websites,
    > my flash cs3 is crashing every time I try to publish a
    file, why?
    That description is about as wide open as it gets! ;)
    Troubleshooting
    is often like a detective story: the more clues one has to
    work with, the
    more confidently one can begin the chase.
    Well, my problem is that the cs3 starting to crash doesn't
    really have an explanation for me. but I will put details here.
    > I run vista business 32 bit
    > I didn't have problems until today,using flash cs3 for
    the last
    > month
    I don't have CS3 installed on Vista, so I'm afraid I can't
    provide any
    offhand suggestions. Since you haven't seen problems until
    today, the first
    thing that strikes me is: what happened with today's FLA that
    was different
    from your previous efforts? Did you import an unusual
    external asset (even
    if only unsual for you)? Maybe you imported a corrupted JPG
    or PNG. Maybe
    a bad font?
    I did nothing with the fla that started the crash, I imported
    some bitmaps and when trying to publish it, it crashed. Also, I
    created another fla, imported some random jpgs 2 I believe, tried
    to export it to the same folder, and cs3 crashed, saved the fla
    with another name garbage.fla No fonts were used
    > Hint:
    > If I save the same .fla in another folder, flash cs3
    doesn't crash
    > when publishing. why? this looks that is happening in
    the root
    > of the folder
    Believe me, I'd be asking these "why" questions myself in
    your shoes.
    What you're describing doesn't sound like a well known issue,
    so my hunch is
    that something is awry with this particular FLA file --
    something not likely
    to be easily reproduced. Since you can publish when saving to
    another
    folder, I would run with that workaround for the time being.
    After saving
    to a different folder, try using File > Save and Compact,
    then move the FLA
    back to your original folder and try again. Or ... try File
    > Save As from
    the new folder, and save the copy into your original folder.
    In your duplicate post, you mentioned starting a thread of
    your own
    (this one) but not hearing any responses. Obviously, I can
    only speak for
    myself in this reply, but it may be that you didn't get
    responses because
    your question is on the vague side. It doesn't describe a
    common issue
    (like, for example, "Why can't I mask dynamic text?" [answer,
    "Make sure to
    embed your font outlines"]).
    When I read these forums, I tend to skim the subject lines
    looking for
    descriptive summaries. Many people post questions like "How
    did they do
    this?" or "Help!" or "Flash question" ... none of which
    describe meaningful
    topics. In my opinion, your subject line is useful, because
    it briefly
    summarizes your question. That's a good thing. When I read
    the actual body
    of your post, though, I quickly realized there wasn't enough
    (for me, at
    least) to give you a solid answer. In this case, I've tried
    to give you a
    few pointers anyway, but I'm only hazarding a few "try this"
    type
    suggestions.
    It may be that others who read your post felt equally unable
    to answer
    your questions with confidence -- at least, as stated.
    Well, I did some research on the internet and there is a
    quite more few people having the same problem, here is the other
    forum I found:
    cs3
    flash crash when publishing
    I am sorry that I didn't post any more specifications of what
    I was doing, but what I was doing was not something different or
    unusual of what I have been doing for the last week at least. I was
    just working with dw and flash together importing the .swf into an
    html and launching the html from dw.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • 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
    !

  • Adobe Flash CS3 serial number with trial version problem

    I have been trying to install Adobe Flash CS3 but when i
    click on the icon it tells me my trial version has expired, to
    enter the serial number so I do but it does not work.
    I have manage to install Flash CS3 but everytime I click on
    the icon to start the program it ask the trial version has expired.
    I don't know how many times i have to uninstall it
    Does anyone have any idea how to fix this problem?
    Help please

    Delet the file "Lightroom 1.0 Registration" in the following places:
    ~:Library:Application Support:Adobe:Lightroom:
    (~ = your home folder).
    and
    Library:Application Support:Adobe:Lightroom:
    (The library-folder att the root of your harddrive).
    If you only have that file in one place. Just delet that one.
    Restart LR and register again.
    I think this will work for you.
    /Andreas

  • Problem with AIR Flash CS3 Italian version

    I have installed the Adobe AIR update for Flash CS3 italian
    mac version but in the welcome screen I don't see the Flash File
    (Adobe AIR) preset.I know about the fix that consists in deleting
    the folder HD:/Users/<username>/Libraries/Application
    Support/Adobe/Flash CS3/<language>/Configuration/StartPage
    and I did it, but the problem remains. Now what should I do?

    Hi Alessandro,
    Please try rerunning the Adobe AIR Update for Flash CS3 to
    see if the problem can be solved.
    If after running the updater again and it still doesn't work,
    the workaround is to create a Flash 9 (ActionScript 3.0) fla. Then
    selecting Commands > AIR - Application and Installer Settings
    and Flash will ask if you want convert the publish settings to
    Adobe AIR, click yes.
    Thanks,
    San

Maybe you are looking for