Swf colors rendered diffrent in IE, FF, Opera

Hi folks,
Just changed a header from png image to swf, needed a red
blinking "beacon" But strangely the color of the swf renders
diffrently in all browsers except safari? Does anyone have a clue?
Colorprofile issue in the PSD file maybe? Have tried a few options
but no luck so far...
http://www.swedenpicture.se/prelook/gallerilofoten/index.html
Link is here:
Cheers!

FYI. Looks pretty in Firefox on my Mac (same as Safari).
There have been some issues with Color Management in Flash:
http://blogs.adobe.com/jnack/2008/10/get_better_color_through_fp10.html
...but usually you see them in the Flash authoring
environment.
Even more likely for this case, though, is that you're using
wmode in your html, which is notorious for causing display
problems:
<param name="wmode" value="opaque" />
Get rid of this parameter entirely. You shouldn't need it for
this piece.

Similar Messages

  • Color renderer not working......

    Hello...
    I am displaying color in a table column... But instead of showing the color it is printing the color object like java.awt.Color[r=122,g=134,b=167]. What could be wrong....
    I am using AbstractTableModel and using fireTableRowsInserted and Updated method to add row to the table. I table row is a string of Objects. Please help... I am running out of time. I have a demo of my work as soon as I am done, so help please . I am adding the code below.
    Object[] dataRecord = new Object[5];
    dataRecord[0] = (Object)instStateClr;
    dataRecord[1] = InstId;
    dataRecord[2] = StartTime;
    dataRecord[3] = EndTime;
    dataRecord[4] = CorrValue;
    instactTabModel.updateInstActSumm(dataRecord);
    This is a string of Object of which the first location contains a color object.
    The color renderer used is as follows...
    instActyTable.setDefaultRenderer(Color.class,
    new ColorRenderer(true));
    The abstract table model is as given below...
    * InstActSummTableModel.java
    * Created on June 23, 2006, 10:05 AM
    * To change this template, choose Tools | Options and locate the template under
    * the Source Creation and Management node. Right-click the template and choose
    * Open. You can then make changes to the template in the Source Editor.
    package action.vector.bam;
    import java.awt.Color;
    import javax.swing.table.AbstractTableModel;
    import java.util.Vector;
    * @author serjith
    public class InstActSummTableModel extends AbstractTableModel {
    protected static int IA_NUM_COLUMNS = 5;
    protected static int IA_START_NUM_ROWS = 0;
    protected int iIA_nextEmptyRow = 0;
    protected int iIAnumRows = 0;
    static final public String szInst_Status_Col ="";
    static final public String szInst_ID = "Instance ID";
    static final public String szInst_Start_Time = "Start Time";
    static final public String szInst_End_Time = "End Time";
    static final public String szInst_Correlation_Det = "Correlations...";
    protected Vector instActdata = null;
    /** Creates a new instance of InstActSummTableModel */
    public InstActSummTableModel() {
    instActdata = new Vector();
    public String getColumnName(int column) {
         switch (column) {
         case 0:
         return szInst_Status_Col;
         case 1:
         return szInst_ID;
         case 2:
         return szInst_Start_Time;
         case 3:
         return szInst_End_Time;
    case 4:
    return szInst_Correlation_Det;
         return "";
    public synchronized int getColumnCount() {
    return IA_NUM_COLUMNS;
    public synchronized int getRowCount() {
    if (iIAnumRows < IA_START_NUM_ROWS) {
    return IA_START_NUM_ROWS;
    } else {
    return iIAnumRows;
    public synchronized Object getValueAt(int row, int column) {
         try {
    Object[] IA_w = (Object[])instActdata.elementAt(row);
    switch (column) {
    case 0:
    return IA_w[0];
    case 1:
    return IA_w[1];
    case 2:
    return IA_w[2];
    case 3:
    return IA_w[3];
    case 4:
    return IA_w[4];
         } catch (Exception e) {
         return "";
    public synchronized void clear() {
         int oldNumRows = iIAnumRows;
    iIAnumRows = IA_START_NUM_ROWS;
         instActdata.removeAllElements();
    iIA_nextEmptyRow = 0;
         if (oldNumRows > IA_START_NUM_ROWS) {
         fireTableRowsDeleted(IA_START_NUM_ROWS, oldNumRows - 1);
         fireTableRowsUpdated(0, IA_START_NUM_ROWS - 1);
    public synchronized void updateInstActSumm(Object[] InstActRecord){
    String InstActRec_ID = (String)InstActRecord[1]; //find the Name
    Object[] p = null;
    int index = -1;
    boolean found = false;
         boolean addedRow = false;
    int i = 0;
    int vecsize = instActdata.size();
    if (vecsize == 0){ System.out.println( " The data vector is null");}
    else{
    System.out.println(" The data vector is not null "+vecsize);
    for (int l=0;l<vecsize;l++){
    Object[] q = (Object[])instActdata.elementAt(l);
    for(int m=0;m<q.length;m++){
    System.out.println("Vector Content "+ q[m]+" at position "+l);
    System.out.println("numRows "+iIAnumRows);
    System.out.println("nextEmptyRow "+iIA_nextEmptyRow);
    System.out.println("index "+index);
    System.out.println("data.size() "+instActdata.size());
    while (!found && (i < iIA_nextEmptyRow)) {
    p = (Object[])instActdata.elementAt(i);
    System.out.println("value of p[1] -- "+(String)p[1]);
    System.out.println("value of PTypeName is -- "+InstActRec_ID);
    String pofOne = (String)p[1];
    if ( InstActRec_ID.equals(pofOne)==true) {
    found = true;
    index = i;
    } else {
    i++;
    if (found) { //update old player
         instActdata.setElementAt(InstActRecord, index);
    System.out.println("Updating the old player");
    } else { //add new player
         if (iIAnumRows <= iIA_nextEmptyRow) {
              //add a row
    iIAnumRows++;
              addedRow = true;
    index = iIA_nextEmptyRow;
         instActdata.addElement(InstActRecord);
    System.out.println("Entering a new player");
    iIA_nextEmptyRow++;
         //Notify listeners that the data changed.
         if (addedRow) {
         fireTableRowsInserted(index,index);
         } else {
         fireTableRowsUpdated(index, index);
    System.out.println("//////////////////Start in the end//////////////////////////////");
    for (int l=1;l<instActdata.size();l++){
    Object[] q = (Object[])instActdata.elementAt(l);
    for(int m=1;m<q.length;m++){
    System.out.println("Vector Content "+ (String)q[m] );
    System.out.println("numRows "+iIAnumRows);
    System.out.println("nextEmptyRow "+iIA_nextEmptyRow);
    System.out.println("index "+index);
    System.out.println("data.size() "+instActdata.size());
    System.out.println("///////////////////END////////////////////////////////////////////");
    Reply Please........

    Any sample codes are available...scroll back to the top of the page
    look to the left
    "Search Forums"
    enter:
    getColumnClass
    click the button
    enough reading for a month

  • Adjust color rendering for your camera in Camera Raw

    According to the help node with the above subject, one can embed profiles into TIFF, JPEG, PSD and DNG files and select them within Camera Raw 4.
    I can assign profiles to all excepto DNG files, since DNG files cannot be saved and thus cannot be persistently be assigned a profile (say created with ColorEyes 20/20 camera profiler software). How then can I assign a profile to a raw image? Is the help incorrect or mis-written?
    Thanks,
    Juan Dent

    Changes introduced with DNG version 1.1.0.0 included new tags AsShotICCProfile (+ AsShotPreProfileMatrix) and CurrentICCProfile (+ CurrentPreProfileMatrix).
    If a camera or editor uses these, are the ColorMatrix1 (and if required ColorMatrix2) tags required to be present anyone, for example for ACR to use, while these xICCProfile tags are an optional alternative? How does it all fit together?
    AsShotICCProfile:
    "This tag contains an ICC profile that, in conjunction with the AsShotPreProfileMatrix tag, provides the camera manufacturer with a way to specify a default color rendering from camera color space coordinates (linear reference values) into the ICC profile connection space.
    "The ICC profile connection space is an output referred colorimetric space, whereas the other color calibration tags in DNG specify a conversion into a scene referred colorimetric space. This means that the rendering in this profile should include any desired tone and gamut mapping needed to convert between scene referred values and output referred values.
    "DNG readers that have their own tone and gamut mapping controls (such as Adobe Camera Raw) will probably ignore this tag pair".
    CurrentICCProfile:
    "This tag is used in conjunction with the CurrentPreProfileMatrix tag.
    "The CurrentICCProfile and CurrentPreProfileMatrix tags have the same purpose and usage as the AsShotICCProfile and AsShotPreProfileMatrix tag pair, except they are for use by raw file editors rather than camera manufacturers".

  • Color Renders and FCP

    What happens to the sequence in final cut pro if I erase the COLOR renders?
    So I have a project in COLOR (that came from FCP), I finish my grade, send it back to FCP.
    I would like to save space by erasing the COLOR renders, but wanted to know if it would affect the graded sequence in FCP if i do that?
    Thanks,
    Adam

    What happens to the sequence in final cut pro if I erase the COLOR renders?
    Everything in the sequence you sent back from Color will go offline.
    I would like to save space by erasing the COLOR renders, but wanted to know if it would affect the graded sequence in FCP if i do that?
    Yes, it would. FCP is referencing those renders...it is no longer referencing the original media.
    Shane

  • Cross product Color Rendering Issue (probably not profiles)

    I can't yet figure this scene out:
    I use a grayscale tif file as a slide/theme background in Apple's Keynote. Since it's grayscale, it prints using only K ink from both Preview and when imported into an InDesign page.
    Since the grayscale serves only as background, completed slides are of course full of color elements on top of the background. Trouble is when I print to my color laser the background area prints in CMYK (and as a further test, when I print to an inkjet the background area prints in RGB or RGBK). This "quatra-toning" massively shifts the variously shaded K background to very blue-ish. (the images is of a piece of slate stone).
    This color shift persists no matter how I can figure to save the slides: using Keynotes export to save slides as jpgs, pngs, or tifs. It also persists when printing from screen captures (which I believe OS X saves as pngs by default). Yet *all* these formats show a nice grayscale slate background onscreen.
    I guess there's some color rendering, or color management, or both issue. I'm no color management maven, but I have used Bridge to set a suite-wide colorspace, and have used Photoshop to change the export files' colorspace as needed.
    What's the fix? TIA. Bart

    Bart,
    Why not try the Color Management forum: http://www.adobeforums.com/cgi-bin/webx?14@@.eea5b31
    Neil

  • Color rendering problem

    I'm seeing strange and inconsistent color rendering behavior is CS3 with one specific photo (if it is happening elsewhere I have not noticed it).
    The photo is in a CRT2 file shot with a Canon 1Ds MKII, and depicts form autumn clematis; the shot is predominantly green and white, with some cream & yellow.
    When I open the folder containing the raw file in Bridge, the color rendering in the thumbnail is what I expect. However, as soon as I select the thumbnail it (and the version in the viewing pane) gain a bright green color cast. The same cast is present in Photoshop.
    If I open the same CR2 file in DXO Optics, the colors start as expected. I manipulate the photo a bit to get the colors I desire, and save as a JPEG.
    If I open the resulting JPEG in Photoshop, it immediately acquires the same bright green color cast. If I open it in Windows Picture Viewer, it also has the color cast.
    However, if I reopen it in DXO, or open it with the Quick Time picture viewer I see the colors as I set them in DXO.
    I'm stumped -- anyone have any suggestions? Color space is ADobe RGB throughout...

    Might be a case of applying color profiles twice. Does the color look correct when you disable color management in Bridge and PS?
    Mylenium

  • Color rendering issue

    i'm using aperture since version 1. and till today i see the same color rendering issues which occurs when applying heavy exposure correction on my canon pro camera files.  when i correct overexposed images i get a strange yellow  posterisation not a smooth transition like with, capture one, raw developer, adobe lightroom  & arc. i decided to do a more controlled test to see  whats going on.  the result is kind of disapointing......  http://db.tt/xGvmhOzK  not only is aperture far behind when it comes to recover overexposed areas compared to it's competitors it also shows missing colors !

    well i tried adjusting them, but it makes no difference, i am thinking it is a xorg issue

  • Color renders huge 10 bit uncompressed files

    Shot 1440 CBR with JVC everio GZ-HD7, log&capture into FCP good, Sequence done, send to color renders out Huge 10-bit uncompressed codec sequences. FCP sequence settings to capture in prores HQ and same with color sequence in FCP. Files look ok but a 10 min clip eats up 60GB on firewire 800 drive. I haven't even sent to compressor yet. FCP even has trouble playing back these files probably due to the 1336 mbps playback dada rate. I must be doing something wrong.

    Uncompressed 10-bit is huge. No surprise. Why are you rendering out of COLOR in that format if you intend to go to ProRes422?
    jPo

  • Any1 is still having text or other color rendering issues on Win7/Vista FF, Safari, Opera or Chrome?

    People have seen many different issues with blank Flash content
    or wrong text colors since 10.1 using Windows Vista or Win7 32bit or 64bit FP plugin = still same issue.
    No1 knows why but Disabling AERO THEME is the medicine to fix it or just run Internet Explorer
    when you encounter bad behaviour on Firefox, Opera or Chrome which use same FlashPlayer.
    Would be good if people would reply here or email to me [email address deleted by host]
    so I could post here for tracking and contact purposes.
    Because without knowing what GPU - Graphic card people are using and if Disabling Aero Theme helps or not?
    Remember without enough INFO these wierd rendering issues can't never be fixed up!
    One site that isn't rendering fonts fine using ATI V3750 workstation graphic card with latest drivers >
    http://www.hkadr.com/swf/broadcast_player122_stream.swf
    This is proof that Flash fonts are rendered bad while on that site using AERO Theme > http://www.mediafire.com/?0tpsse0jt55tjvc

    The easiest way to fix rendering issues is to disable Hardware Acceleration.

  • How to print diffrent color and diffrent size of text in JTextArea ?

    Hello All,
    i want to make JFrame which have JTextArea and i append text in
    JTextArea in diffrent size and diffrent color and also with diffrent
    fonts.
    any body give me any example or help me ?
    i m thanksfull.
    Arif.

    You can't have multiple text attributes in a JTextArea.
    JTextArea manages a "text/plain" content type document that can't hold information about attributes ( color, font, size, etc.) for different portions of text.
    You need a component that can manage styled documents. The most basic component that can do this is JEditorPane. It can manage the following content types :
    "text/rtf" ==> via StyledDocument
    "text/html" ==> via HTMLDocument
    I've written for you an example of how a "Hello World" string could be colorized in a JEditorPane with "Hello" in red and "World" in blue.
    import javax.swing.JEditorPane;
    import javax.swing.text.StyleConstants;
    import javax.swing.text.StyledEditorKit;
    import javax.swing.text.StyledDocument;
    import javax.swing.text.MutableAttributeSet;
    import javax.swing.text.SimpleAttributeSet;
    import java.awt.Color;
    public class ColorizeTextTest{
         public static void main(String args[]){
              //build gui
              JFrame frame = new JFrame();
              JEditorPane editorPane = new JEditorPane();
              frame.getContentPane().add(editorPane);
              frame.pack();
              frame.setVisible(true);
              //create StyledEditorKit
              StyledEditorKit editorKit = new StyledEditorKit();
              //set this editorKit as the editor manager [JTextComponent] <-> [EditorKit] <-> [Document]
              editorPane.setEditorKit(editorKit);
              StyledDocument doc = (StyledDocument) editorPane.getDocument();
              //insert string "Hello World"
              //this text is going to be added to the StyledDocument with positions 0 to 10
              editorPane.setText("Hello World");
              //create and attribute set
              MutableAttributeSet atr = new SimpleAttributeSet();
              //set foreground color attribute to RED
              StyleConstants.setForeground(atr,Color.RED);
              //apply attribute to the word "Hello"
              int offset = 0; //we want to start applying this attribute at position 0
              int length = 5; //"Hello" string has a length of 5
              boolean replace = false; //should we override any other attribute not specified in "atr" : anwser "NO"
              doc.setCharacterAttributes(offset,length,atr,replace);
              //set foreground color attribute to BLUE
              StyleConstants.setForeground(atr,Color.BLUE);
              //apply attribute to the word "World"
              offset = 5; //we include the whitespace
              length = 6;
              doc.setCharacterAttributes(offset,length,atr,replace);
    }

  • Swf not rendering fading type correctly

    Dissolving (fading) type works in timeline......but not when
    I control>test movie or publish as swf! I've just upgraded to
    Flash Professional 8, and am doing some simple animation of type (
    a line of type fades [using motion tween, color>alpha=0] as
    another line fades up on top of it). I've done this a million times
    in MX, but when I test or publish, the type just piles up on top of
    the previous layer - no fading of alpha! Any suggestions very
    welcome!

    johnnyblondon;
    Make sure the text field is set to "static", and avoid using
    one of the
    device fonts, or if the text field needs to be dynamic, elect
    to "embed" the
    character outlines in the swf.
    -Tom Unger

  • Slideshow image quality/color rendering

    I´m quite frustrated after discovering that some of my images look quite poor displayed by the slideshow module. My situation ist as follows:
    LR 5.2 running on Mac OS X 10.8.5, 1:1 previews are rendered, preview quality is set to high, and I´m using a sample image showing a dark cloudy sky with some fine gradients; my slideshow preset doesn´t use any borders as I read this often causes quality issues.
    When I´m in the Develop module, there is no problem at all, even in fullscreen display mode on my 1920x1200 display the gradients are perfectly rendered.
    In Library module, when displaying fullscreen, quality is okay, but I can see some slight difference compared to the Develop module - which I understand after reading that in Develop the output is based on the actual raw data, and in all the other modules on rendered previews.
    Now, when in Slideshow module, the image quality is significantly lower than in Library and I see some quite obvious banding in the gradients. I don´t have problems with blocking artifacts but the banding/posterization is considerably worse compared to a JPEG export with a quality setting of, for example, 75.
    I can´t imagine LR´s slideshow tool would be working with a lower color depth than the 8 bit as in standard JPEGs, right? Did I miss any of LR´s parameters that influence the image quality of Lightroom slideshows or of the previews used therefore? Otherwise do you have some other explanations or hints for me in order to get this fixed? We do everything to capture our images in the best possible quality so we should also be able to present them properly after all...
    Thanks a lot for any advice!
    Toby

    In-Lr slideshow images look like crap on my system too (dull contrast and de-saturated shifted color).
    My guess is some issue with icc-profile/monitor-profile or something, but I'm not qualified for assessing.. - could just be a bug in Lr that only bites some, dunno...
    I use ShowBiz instead, which works well on my Windows box, and it should also work on your Mac box.
    Rob

  • Why are the compiled SWF colors brighter than in Flash CC while programming

    Just a quick question, when I open the SWF with FlashPlayer the colors are brighter than in Flash CC while programming, why is that?
    Left part is in Flash CC right side is the compiled SWF opened with FlashPlayer.

    Flash uses the sRGB color space. If your original art was created using a different color space then the colors will look shifted.
    This article may help: http://www.adobe.com/devnet/flash/quickstart/color_correction_as3.html

  • Colors rendering differently to original final cut timeline

    i have color corrected all the shots in a video i am working on but when it comes to rendering the footage, everything comes out differently. i have used many different options to render out. share>youtube, export via qucktime conversion, and i have also used compressor. is there anything i can do to keep the colour i see in my timeline.

    I'm starting to make a lot of web content including video. The average Mac user will be watching videos on the new Quicktime Player 10. Some of my content looks horrid on Player 10, but great on properly preference ticked Player 7.
    It seems pointless to be pacified by choosing to watch our Final Cut exports on Player 7 with the Final Cut compatibility box checked when almost none of our audience can be expected to have done that.
    I really don't know what Apple's QuickTime engineers expect content providers to do when they designed a spiffy new player (10) that doesn't properly display the color in Apple software produced content. It really tests my loyalty.
    The end of the joke is that my H264 video from Final Cut Pro actually looks more accurate in Windows Media Player than Quicktime 10.
    How about upgrading the QT player 10 with a simple gamma and color fix?
    Would be great if a discussion mediator could provide a work around, or some kind of assurance that something is being done to make it easier for content providers to get matching at least across Apple OS users machines. If anyone has any more info or answers to this topic, please let me know here.

  • Color renders fine, on sending back to FCP end up with smeared images

    Hi Hope someone can help. I send my (Clients) sequence DV PAL 720X576 16:9 anamorphic to color. BTW this was footage down-converted from HDV1080i50. Do all the color corrections and grading, footage looks great, send to FCP and hey presto smeared images in the viewer and canvas, thumbnails look ok in the timeline. Now what i mean by smeared images is not just a slight smearing but unrecognizable images, useless video.
    Ok some background: No transitions, filters of any sort for that matter, no motion effects of any sort, in fact none of the listed items of what not to send to Color. The sequence is only 37s give or take a frame. There are no gaps in my sequence and Yes, I've tripple checked my sequence settings in FCP. User prefs and project settings in Color and pretty much left at default with the exception of using floating point and auto save set to 10min.
    FCP 6.0.2, Color 1.0.2
    Desparately seeking help.
    FCC63

    Next time I'm across the pond (not that often) we'll break out the Bushmills, unless its Jamesons.
    Getting out of HDV first was done correctly. Personally, I think there is nothing else that you can possibly do to damage the image further (than the origination format), so nothing to lose by going to one of the Apple ProRes codecs -- your choice of Regular or High. There have been so many historical (hysterical) issues with PAL-DV it would make a novel.
    I was wondering if the next thing to do was import the directory containing your rendered footage and do a brute force drop of all the clips onto the timeline -- they are sequentially numbered, so this CAN be done in one step. Not elegant.. but for a cuts-only timeline it is what we occasionally were forced to do when the application was Final Ouch. There's nothing compulsory about "Send to.." or XML import... thankfully, in a number of cases...
    jPo

Maybe you are looking for

  • Computer shuts down when I connect my Ipod Touch to it.

    Each time I go to connect my Ipod touch to my computer, I get the blue screen of death appear on my computer with a huge error message and then it shuts down, 'To protect itself' I have tried to connect my Ipod Nano and thats fine, works no problems.

  • PM: how to track the operations in prev.maint order against object list

    Dear PM Guru's. i have one issue in my preventive maintenance scenario. i clubed the same type of machines in one maintenance order under object list tab. and i mention the list operations in maintenance order. suppose in one preventive maintenance o

  • How do I import video clips from iPhoto if it doesn't recognize the video clips in iMoive

    I'm trying to make a movie using iMovie and I recorded some clips using a Sony Digital Camera and iMovie won't let me upload the video clips from iPhoto. I try to import them but when i try to click on the file, it won't let me. Like its not bold lik

  • Can't open the ob

    When I install a media server on a host ,sucessed to comptele the installtion ,when I open the ob ,can't open .I manuly run the obtool in the command,tell me "failed to read configration data ,failed to validate certificate".how this mean ?

  • ABAP WD - Dump Perform in program

    Hi forum, I've a dump that I'm not able to solve. The problem is that I had a perform in program with 2 parameter and I changed it with 3 parameters. I had adjusted all the code for this form in a subroutine pool program type. The command call is.