Fireworks Slideshow (swf) Not working well when loaded into flash

Hi guys,
I made a slideshow recently in FW and exported as swf. Created a new project in flash cs4 and loaded
the slide show as an external swf.
When i test my project, the slideshow loads well, but there is no slideshow! i.e. the pictures doesnt change.
And also when i click the thumbnails, only changes for the first picture, then stays static.
Any help will be much appreciated.
here is my code:
import fl.containers.UILoader;
var uiLoader:UILoader = new UILoader();
uiLoader.source = "player_black.swf";
uiLoader.move(384, 160);
uiLoader.scaleContent = false;
addChild(uiLoader);

Yes.
it returned AVM1 . So I gess FW  generated an AS2.
Is it possible to set FW to export swf in AS3?
or the only solution is to redo all my project into as2?
The latest would be a painstaking job, once i dont know as2 , only intermediate as3.
appreciate your help,
Mike

Similar Messages

  • My imac is not working well, the screen is  flashing.I can´t open any program.there is a monsterflashing

    my imac is not working well, the screen is  flashing.I can´t open any program.there is a monsterflashing

    Hello,
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Not working well when charging.

    Hello
    I have iPad air 2 (recently bought). I am facing issue with my iPad. It works great but when I put iPad in charging then I have to wait until its charged. Its not working while charging it.. It makes me feel like I am using some old Nokia smart phone... I mean when its charging i have to press hard for some action its not even sensing well or can not play any game or mail or nothing... But when I try it after removing charger its works fine as usual. I have ipad 2 also and it works great while charging. So I am not getting it.. I am using original iPad air 2 charger still facing this problem.
    Is any one else who is facing same issue ?
    If is there any solution please help me.
    Thanks

    That's quite odd, you should contact your local Sony Xperia Care
    http://www.sonymobile.com/global-en/support/contact-us/
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • How do I get my XML numeric values to show up when loaded into flash?

    Hi there,
    I've created an AS2 3D carousel  It loads text values in the "content" section of the code below -  including numbers and special characters into the .swf but...
    What I can't figure out, is how to get it so that the "Tooltip" loads the text into the movieclip, but can also have numeric and special characters in it.
    For example, I need the title of one of the icons on this carousel to be "3D Images," but only the "D Images" shows up from the XML text for the tooltip.  The content when a user clicks on the icon can include numbers, just not the titles for some reason.
    http://iongeo.com/collaboration_test_dev/video_arctic_imaging.html
    I think it has something to do with the way that my text is loaded from the xml document specifically for the tooltip and tipText for the movie clip.  Can numeric values be loaded into a movie clip in AS2?  PLEASE HELP!
    import mx.utils.Delegate;
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    var numOfItems:Number;
    var radiusX:Number = 300;
    var radiusY:Number = 75;
    var centerX:Number = Stage.width / 2;
    var centerY:Number = Stage.height / 2;
    var speed:Number = 0.05;
    var perspective:Number = 130;
    var home:MovieClip = this;
    theText._alpha = 0;
    theHeader._alpha = 0;
    var tooltip:MovieClip = this.attachMovie("tooltip","tooltip",10000);
    tooltip._alpha = 0;
    var xml:XML = new XML();
    xml.ignoreWhite = true;
    xml.onLoad = function()
        var nodes = this.firstChild.childNodes;
        numOfItems = nodes.length;
        for(var i=0;i<numOfItems;i++)
            var t = home.attachMovie("item","item"+i,i+1);
            t.angle = i * ((Math.PI*2)/numOfItems);
            t.onEnterFrame = mover;
            t.toolText = nodes[i].attributes.tooltip;
            t.content = nodes[i].attributes.content;
            t.header = nodes[i].attributes.header;
            t.icon.inner.loadMovie(nodes[i].attributes.image);
            t.r.inner.loadMovie(nodes[i].attributes.image);
            t.icon.onRollOver = over;
            t.icon.onRollOut = out;
            t.icon.onRelease = released;
    function over()
        //BONUS Section
        home.tooltip.tipText.text = this._parent.toolText;
        home.tooltip._x = this._parent._x;
        home.tooltip._y = this._parent._y - this._parent._height/2;
        home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
        home.tooltip._alpha = 100;
    function out()
        delete home.tooltip.onEnterFrame;
        home.tooltip._alpha = 0;
    function released()
        //BONUS Section
        home.tooltip._alpha = 100;
        for(var i=0;i<numOfItems;i++)
            var t:MovieClip = home["item"+i];
            t.xPos = t._x;
            t.yPos = t._y;
            t.theScale = t._xscale;
            delete t.icon.onRollOver;
            delete t.icon.onRollOut;
            delete t.icon.onRelease;
            delete t.onEnterFrame;
            if(t != this._parent)
                var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,t._xscale,0,1,true);
                var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,t._yscale,0,1,true);
                var tw3:Tween = new Tween(t,"_alpha",Strong.easeOut,100,0,1,true);
            else
                var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,t._xscale,100,1,true);
                var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,t._yscale,100,1,true);
                var tw3:Tween = new Tween(t,"_x",Strong.easeOut,t._x,150,1,true);
                var tw4:Tween = new Tween(t,"_y",Strong.easeOut,t._y,250,1,true);
                var tw5:Tween = new Tween(theText,"_alpha",Strong.easeOut,0,100,1,true);
                var tw5:Tween = new Tween(theHeader,"_alpha",Strong.easeOut,0,100,1,true);
                theText.text = t.content;
                theHeader.header = t.header;
                var s:Object = this;
                tw.onMotionStopped = function()
                    s.onRelease = unReleased;
    function unReleased()
        //BONUS Section
        var sou:Sound = new Sound();
        sou.attachSound("sdown");
        sou.start();
        delete this.onRelease;
        var tw:Tween = new Tween(theText,"_alpha",Strong.easeOut,100,0,0.5,true);
        var tw:Tween = new Tween(theHeader,"_alpha",Strong.easeOut,100,0,0.5,true);
        for(var i=0;i<numOfItems;i++)
            var t:MovieClip = home["item"+i];
            if(t != this._parent)
                var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,0,t.theScale,1,true);
                var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,0,t.theScale,1,true);
                var tw3:Tween = new Tween(t,"_alpha",Strong.easeOut,0,100,1,true);
            else
                var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,100,t.theScale,1,true);
                var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,100,t.theScale,1,true);
                var tw3:Tween = new Tween(t,"_x",Strong.easeOut,t._x,t.xPos,1,true);
                var tw4:Tween = new Tween(t,"_y",Strong.easeOut,t._y,t.yPos,1,true);
                tw.onMotionStopped = function()
                    for(var i=0;i<numOfItems;i++)
                        var t:MovieClip = home["item"+i];
                        t.icon.onRollOver = Delegate.create(t.icon,over);
                        t.icon.onRollOut = Delegate.create(t.icon,out);
                        t.icon.onRelease = Delegate.create(t.icon,released);
                        t.onEnterFrame = mover;
    function moveTip()
        home.tooltip._x = this._parent._x;
        home.tooltip._y = this._parent._y - this._parent._height/2;
    xml.load("icons.xml");
    function mover()
        this._x = Math.cos(this.angle) * radiusX + centerX;
        this._y = Math.sin(this.angle) * radiusY + centerY;
        var s = (this._y - perspective) /(centerY+radiusY-perspective);
        this._xscale = this._yscale = s*100;
        this.angle += this._parent.speed;
        this.swapDepths(Math.round(this._xscale) + 100);
    this.onMouseMove = function()
        speed = (this._xmouse-centerX)/8000;

    Kglad, you are my HERO!
    Thanks so much for your reply, I did not know about the embed options within flash...
    Mike

  • Pop-up menue created by Fireworks 8 does not work well in Dreamweaver 8

    Hi there,
    I have experienced some strange behaviour of Dreamweaver 8
    with respect to am enuebar with pop-up-Menue-HTML created by
    Fireworks 8. Having designed the pop-up menue in Fireworks 8 all
    works fine if you view it through Firewoks. After having exported
    the XHTML-Code for Dreamweaver in a file all continues to work fine
    if you view it with IE 7.
    When imported to Dreamweaver as Fireworks-HTML blue boxes
    were shown around the bar and the pop-menue appears with blue boxes
    around. Viewing this stuff by pressing F12 in Dreamweaver shows up
    the page in the browser with the menue bar and all the submenues (I
    cant stand it anymore). I tried a lot of things but I failed. Help
    would be appreciated very much.
    Wolfgang

    Have a read of this article - may convince you why it's not a
    good idea to
    use these menus:
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    also:
    http://apptools.com/rants/jsmenu.php
    http://apptools.com/rants/menus.php
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://www.csstemplates.com.au
    http://www.perrelink.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html
    "wogtube" <[email protected]> wrote in
    message
    news:epnmsl$t16$[email protected]..
    > Hi there,
    >
    > I have experienced some strange behaviour of Dreamweaver
    8 with respect to
    > am
    > enuebar with pop-up-Menue-HTML created by Fireworks 8.
    Having designed the
    > pop-up menue in Fireworks 8 all works fine if you view
    it through
    > Firewoks.
    > After having exported the XHTML-Code for Dreamweaver in
    a file all
    > continues to
    > work fine if you view it with IE 7.
    >
    > When imported to Dreamweaver as Fireworks-HTML blue
    boxes were shown
    > around
    > the bar and the pop-menue appears with blue boxes
    around. Viewing this
    > stuff
    > by pressing F12 in Dreamweaver shows up the page in the
    browser with the
    > menue
    > bar and all the submenues (I cant stand it anymore). I
    tried a lot of
    > things
    > but I failed. Help would be appreciated very much.
    >
    > Wolfgang
    >

  • Share Screen does not work well when wifi is turned on.

    Hello,
    I'm having a minor little problem with Share Screen among 3 machines, 2 Lion OS mac pros connected with network cable, and a 3rd mbp laptop, also LION. I use share screen a lot and I am unable to connect from my main mac pro to the 2nd mac pro (via an ethernet cable) when wifi is turned on.....actually, I can connect, but it gets stuck on the "Connecting" screen and then 10 minutes later, it connects. When I turn wifi off, then hit Share Screen, the connection and response is very fast.
    After several hours playing with Sharing preferences....I think it seems like a network thing. I have checked network preferences, and re-ordered them to prioritize ethernet over wifi, powered off all devices including router, and everything else I can think of. btw, the share screen connection from my laptop to the mac pro is fine, even when wifi is turned on on the laptop.
    A simple work around is to just turn wifi off, make my connection, then turn wifi back on. But I'm curious and would like to solve this issue. It started after my 10.7.4 client combo update and has been working fine for several months before that, so I'd like to figure it out. Any ideas?
    Thanks for all the help on these boards.

    Nevermind.
    I had a failing hard drive (not the OS drive) in one of the drive bays. A couple of days after I posted this question, the drive (which has been at S.M.A.R.T. status "failing" for 6 months completely died, at which point the computer wouldn't even turn on. After removing the drive, everything with the Share Screen works fine, both over network cable and wifi.

  • SWF not working properly when sent to acrobat

    I am trying to place a simple swf file in a layout but Acrobat refuses to display it at the correct size. It shows me the correct dimensions in the import dialog, but then seems to ignore them. The final placed object comes in at 320x240 no matter what.
    As for where the SWF is coming from, how it was made etc, I have tried multiple methods for making this work. Here's the list:
    1. Created an MSO in Indesign, exported the mso element as a SWF and replaced the swf in the document. FAIL - Transparency breaks and the size is wrong
    2. Retried about 5 versions of the about with opaque background and various sizes. FAIL - same problems
    3. Built the SWF in Flash Catalyst, placed in InDesign FAIL - same problems
    4. Used Catalyst swf, place directly in Acrobat 10. Import works, transparency works...FAIL - always resized to 320x240
    I am using Indesign CS5 and Acrobat 10 on Mac OS X 10.6.6
    I could really use some help here. I placed this same note in the acrobat forums, because I am getting pretty desperate here. I am supposed to deliver the final client file for this project today and this represents one of the key showcase elements!
    Thanks.

    Ok. So after reading through a pile of forum posts and blogs I believe I may have my answer. Though I can't say I like it much.
    It seems that Acrobat does not render video/swf pixels at 1:1 (See This Forum Comment) and the disparity causes the image to appear distorted. The only fix I have really seen so far is to play with the zoom level in acrobat until the image comes into focus. A point that is different on every screen.
    Here are some of the posts I found most helpful:
    http://acrobatusers.com/forum/rich-mediaflash/video-quality-degraded#comment-72985
    http://acrobatusers.com/forum/rich-mediaflash/original-swf-size-distortion-import
    http://forums.adobe.com/message/3379809#3379809
    http://forums.adobe.com/message/3411262#3411262
    I still want to think that there has to be a way to force a 1:1 pixel ratio, but I have not seen any solutions for doing so. There was a suggestion regarding setting the flash stage to NO_SCALE, but I am not entirely sure what the suggested implementation involves.
    I would still love to hear ideas on how to create a better solution to this, but for now I suppose I will have to live with it as is.

  • Measure using UseRelationship not working well when sliced with attributes from the same table

    Hi,
    I have Measure created using the 'UseRelationship' Function, which uses a different datekey to link to the DateDim than the one the table is directly related by. The measure works as expected except in one scenario.
    If I browse the measure using an attribute from the same fact table then the attribute is filtered using active relationship whereas the measure is filtered using the inactive relationship as shown below:
    FACT(2 rows)(Active Relationship to Date using DateKey1)
    SNo     DateKey1     DateKey2     Geo        Amt
    1         20100101     20120101    India      100
    2         20100101     20120101    US         200
    AmtMeasure:=CALCULATE(SUM([Amt]),USERELATIONSHIP(FACT[DateKey2],'Date'[DateKey]))
    If I browse the above measure in excel, with Year selected as 2012, I get 100+200=300. Now if I drag the Geo attribute against the measure I get 2 rows with 100 and 200.
    If I do the same in a power view report I don't get any results after dragging the Geo attribute, whereas I get the correct value of 300 without the geo attribute. I checked the DAX query which the power view generates and figured this is being caused because
    there are no rows in the table with DateKey1 having year 2012. I understand why this is happening this way in a DAX query and not in MDX, but shouldn't both behave in the same way and what is a work around.
    Thanks,
    Sachin Thomas

    Sac, is this still an issue?
    Thank you!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • My iPod does not work properly when plugged into the computer. How to fix?

    I have a 4th generation 40 gigabyte iPod, non-color.
    Today, I plugged it into my computer to update my playlists.
    My iTunes and Windows were lagged down. Eventually, when things caught up, my iTunes didn't show my iPod as being connected. I looked in My Computer, and it didn't say iPod -- it said "Removable Disk". I couldn't disconnect my iPod via Windows, even using the Safely Remove Hardware didn't work.
    After looking around here and trying things like Disk Mode and Resetting the iPod, nothing worked. I can't get the iPod to work with the iPod Updater so I can try restoring it.
    I dunno really what to do. If it's a hardware problem, then I'm not going to bother to get it repaired, since the music that's currently on it plays perfectly fine still.
    I just dunno what else to try.

    you basically are stuck. apple won't do crap for you. i went to the apple store today because my second ipod crashed (the first one they replaced) and they won't do anything for me and told me i had to buy a new one (2 in 1 1/2 years is what happened) so they wanted me to buy a third one when their product obviously *****. and the manager even basically admitted that the ipod that they claim is durable and relible isn't. that people go through 3-4 a year. the supposed "apple genius" told me to send it out to a third party repair. he wouldn't even look at it and lectured me for not getting the extended warranty. if you look at the website below and read you'll find that a lot of people got screwed over like me with the extended warranty;
    http://www.consumeraffairs.com/computers/apple_ipod.html
    put it this way i won't go back to that apple store again or purchase another ipod. ill keep my piece of none working crap

  • Trackpad not working correctly when plugged into AC power

    When i am running on battery, the trackpad is great--when plugged in, it is very flakey, not smooth, sometimes freezing up...all in all pretty frustrating!
    I have reset the power management unit, but it did not help.
    Comments?
    thanks in advance,
    Les

    Hi Lemenos,
    Welcome to Apple Discussions
    Do you have any "hacks" installed your iBook? Try going to System Preferences > Energy Saver > Power Adapter (next to Settings For:) > Processor Performance > Try faster or reduced and see if one works better. What are you doing when this happens? Do you notice any patterns? You may want to look at Knowledge Base Document #17228 on Portables: Jumpy or Erratic Trackpad Operation and Knowledge Base Document #58389 on Your PowerBook and iBook's trackpad doesn't respond. Is the wall socket grounded? How can you tell if its electrical or static? What does it feel like? Try touching something metal to ground yourself before touching (bed frame) and see if you still get a shock. You should not get an electric shock from the button, if you do stop touching it. Bring it to your local Apple Store/Reseller.
    Jon
    Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • Swf is not working properly when upload to server

    I develop 1.swf which is having 3 buttons each one having
    anather .swf to call 2.swf, 3.swf respectively.
    This application is running perfectly on my PC, but
    While uploading the swf to server the 2.swf and 3.swf is
    not running. Can any one tell how to recover from this kind
    of problem.

    justbipin wrote:
    > basically my code working perfectly,
    > but its not working properly when upload to server
    > can anybody having any ref. or link to solve this
    issues.
    why is that we insist on seeing the source file ?
    There is no one way of doing things in flash and no one can
    help
    you based on "does not work description".
    This is way to broad of a subject to even try to guess.
    Same as asking "my car does not work, what's up with
    that"....
    Please upload the problematic file and provide url for us to
    check.
    Otherwise you need to try to troubleshoot it yourself as we
    can't
    guess from here what possibly is wrong with that file.
    Regards
    Urami
    Happy New Year guys - all the best there is in the 2006 :)
    <urami>
    http://www.Flashfugitive.com
    </urami>
    <web junk free>
    http://www.firefox.com
    </web junk free>

  • Institution Provider Page works well when I click the "Preview in iTunes" but not in "Preview on iPad."  What seems to be the problem?

    Institution Provider Page works well when I click the "Preview in iTunes" but not in "Preview on iPad". What seems to be the problem?

    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    See also http://kb.mozillazine.org/Error_loading_websites (Error_loading_some_websites)

  • My new (2 months old) 5s fingerprint recognition sensor does not work. It worked well when I first got it but now to get it to work I have to redo my fingerprints every few days, which completely negates the convenience and cost of the phone.

    My new (2 months old) 5s fingerprint recognition sensor does not work. It worked well when I first got it but now to get it to work I have to redo my fingerprints every few days, which completely negates the convenience and cost of the phone.  I have tried all the tips and they help a little but it always stops working and I have to redo my fingerprints. Does Apple read these comments?  Is there an app that might help?

    Apple does not read here.
    If you want Apple to know send feedback
    http://www.apple.com/feedback/iphone.html
    I also have iPhone 5s on day one and it's working since. When it's not registering, I just clean the Home button and it works straight away.
    Did you try when registering fingerprint using all angles? It should learn the more you use it.
    Did you clean the sensor with a soft cloth?
    http://support.apple.com/kb/HT5883

  • HT201401 Hi.. My Iphone acts as if it is dead. Tried a lot with Sleep +home buttons as well, but did not worked. When it is plugged in, keeps on charging with a regular beep. Please advise.

    Hi.. My Iphone acts as if it is dead. Tried a lot with Sleep +home buttons as well, but did not worked. When it is plugged in, keeps on charging with a regular beep. Please advise.

    Yes, I understand that. But The screen issue is not a result of user damage. The phone was not dropped when the screen got cracked. My daughter was standing in a chair at the table and dropped one of her toys onto the bottom of the phone and cracked it right by the home button. (Nowhere near the LCD/digitizer flex cables, connections, or logic board components) then a few months later my phone had died, I plugged it in, it showed it was charging, then Apple logo disappeared and screen didn't work. AFTER contacting Apple about the issue and them telling me that it "is a result of the very minimal crack to the sheet of glass that has no relation to the LCD or Digitizer and that the warranty does not cover it I had taken it upon myself to change the LCD/digitizer to no avail, as well as backlight ic and backlight coil to no avail. But how do I go about letting Apple know that it is in fact NOT due to the cracked screen nor is it due to the flex cable connections? I can't. So the lady that works the call center phones  trying to "convince" me that she knows what she is talking about and "convince" me that it is from the cracked screen I have to take her word because I can't show Apple that its not because of that without paying them $199 to fix the screen in which case they will just send me a new phone rather than fix the faulty hardware under warranty.

  • To whom it may concern      Hi my name is Silvana Pires,I purchased an I Phone 4 S Model A 1387 EMC 2430 SCC.ID DCG E  2430 AIC.579 C-E 243 A in California one year ago,Unfortunately its Not working well the screen is getting black,and the phone is in goo

    To whom it may concern
    Hi my name is Silvana Pires,I purchased an I Phone 4 S Model A 1387 EMC 2430 SCC.ID DCG E
    2430 AIC.579 C-E 243 A in California one year ago,Unfortunately its Not working well the screen is getting black,and the phone is in good shape I can prove it,the Apple support in Brazil doenst work like in USA.
    I look forward to your reply and a resolution of this problem.
    Thank you very much!!!

    You are welcome. I'm glad you got it back up.
    (1) You say you did the symbolic link. I will assume this is set correctly; it's very important that it is.
    (2) I don't know what you mean by "Been feeding the [email protected] for several weeks now, 700 emails each day at least." After the initial training period, SpamAssassin doesn't learn from mail it has already processed correctly. At this point, you only need to teach SpamAssassin when it is wrong. [email protected] should only be getting spam that is being passed as clean. Likewise, [email protected] should only be getting legitimate mail that is being flagged as junk. You are redirecting mail to both [email protected] and [email protected] ... right? SpamAssassin needs both.
    (3) Next, as I said before, you need to implement those "Frontline spam defense for Mac OS X Server." Once you have that done and issue "postfix reload" you can look at your SMTP log in Server Admin and watch as Postfix blocks one piece of junk mail after another. It's kind of cool.
    (4) Add some SARE rules:
    Visit http://www.rulesemporium.com/rules.htm and download the following rules:
    70sareadult.cf
    70saregenlsubj0.cf
    70sareheader0.cf
    70sarehtml0.cf
    70sareobfu0.cf
    70sareoem.cf
    70sarespoof.cf
    70sarestocks.cf
    70sareunsub.cf
    72sare_redirectpost
    Visit http://www.rulesemporium.com/other-rules.htm and download the following rules:
    backhair.cf
    bogus-virus-warnings.cf
    chickenpox.cf
    weeds.cf
    Copy these rules to /etc/mail/spamassassin/
    Then stop and restart mail services.
    There are other things you can do, and you'll find differing opinions about such things. In general, I think implementing the "Frontline spam defense for Mac OS X Server" and adding the SARE rules will help a lot. Good luck!

Maybe you are looking for