Problems loading PNG in flash. is it a bug?

Hi, I,m having a problem with flash. I've done a simple flash
viewer that dinamically loads external images in PNG format via
loadmovie. The viewer works fine if the PNG has a small size but
when I try to load a big file (3000x4000px) it won't work... is
this a flash bug?

lemik wrote:
> is there any known workaround?
What we do is cut the image in small pieces, say 500 to
1000pixels each, load it
and duplicate, placing each copy next to another, making one
large image in run time.
Tho, I noticed that when I was using the scrollRect property
to scroll very large images
I get away with the 2880 pixels but still, cutting and
stitching is the best and most
safe way to go. You can than have very large images w/o
worries.
Best Regards
Urami
"Eat one live toad in the morning and nothing worse will
happen to you for the rest of the day."
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • Problems loading upgrade to flash player

    Help needed!
    Every time I try and download the latest version of flash player (usually prompted when I can't watch videos on websites), it allows me to load it to 50% and then tells me to shut down internet explorer to complete the download. But even when I get out of internet explorer it still won't cooperate.
    Anyone know what to do? (if so, please advise me in layman's terms!!)

    http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html
    http://forums.adobe.com/thread/1199361

  • Problems loading songs into flash mp3 player

    I am very new to actionscript, and I am still trying to learn some of the basics, but I'm getting there, understanding it better with help from great forums like this one.
    I have a music community website, visitors can sign up, upload mp3 files, their files get uploaded into their own folder named '$id' in the php code, (if they are the 10th member to sign up, their folder would be named 10, and so on)
    I have a prebuilt flash player that I want to playback the mp3 files just for that member when their profile is being viewed, I have some code in the mp3 upload script that automatically writes an xml file to their folder containing their song data, with Andrei1's help, I got that part working using flashvars, now the problem I am having is that I can't get the songs to play back, the data is there but no music.
    as I said I am using a prebuilt flash player that is using a static call to a directory, so should I use flashvars again to load the mp3 files into the player? and I also need help figuring out what to change in the actionscript.
    here is the object embed src for the html:
    <param name="movie" value="flplayer1a.swf">
                        <embed src="flplayer1a.swf" FlashVars="xml=<?php echo "members/$id/playlist.xml" ?>"></embed>
                        <param name="FlashVars" value="xml=<?php echo "members/$id/playlist.xml" ?>">
    and here is the actionscript code for the playback on frame 1
    stop();
    var myFormat:TextFormat = new TextFormat();
    myFormat.color = "0xFFFFFF";
    list.setRendererStyle("textFormat", myFormat);
    var trackToPlay:String;
    var pausePosition:int = 0;
    var songURL:URLRequest;
    var isPlaying:Boolean = false;
    var i:uint;
    var myXML:XML = new XML();
    var XML_URL:String = loaderInfo.parameters.xml;
    var myXMLURL:URLRequest = new URLRequest(XML_URL);
    var myLoader:URLLoader = new URLLoader(myXMLURL);
    myLoader.addEventListener("complete", xmlLoaded);
    function xmlLoaded(event:Event):void {
        myXML = XML(myLoader.data);
        var firstSong:String = myXML..Song.songTitle[0];
       var firstArtist:String = myXML..Song.songArtist[0];
      songURL = new URLRequest("????" + firstSong + ".mp3");
       status_txt.text = "1. "+firstSong +" - "+firstArtist;
         for each (var Song:XML in myXML..Song) {
    i++;
      var songTitle:String = Song.songTitle.toString();
    var songArtist:String = Song.songArtist.toString();
    list.addItem( { label: i+". "+songTitle+" - "+songArtist, songString: songTitle, Artist: songArtist, songNum: i } )
    var myArray = new Array (0,0);
             list.selectedIndices = myArray; // This highlights song 1 by default
    gotoAndStop(3);
    this is on frame 2 for the song switching
    songURL = new URLRequest("?????" + trackToPlay + ".mp3");
    and this on frame 3:
    stop();
    var snd:Sound = new Sound();
    var channel:SoundChannel;
    var context:SoundLoaderContext = new SoundLoaderContext(5000, true);
    snd.load(songURL, context);
    channel = snd.play(pausePosition);
    I'm starting to build my own flash player based on what I have learned here, I just have to figure this part out and I'm good to go.

    songURL = new URLRequest("?????" + trackToPlay + ".mp3"); and
    songURL = new URLRequest("????" + firstSong + ".mp3");
    this is where the movie looks for mp3 files, when I downloaded this prebuilt player, the line looked like this
    songURL = new URLRequest("http://www.mydomain.com/mp3_files" + firstSong + ".mp3");
    songURL = new URLRequest("http://www.mydomain.com/mp3_files" + trackToPlay + ".mp3");
    this is the part I am trying to figure out how to change, if I were to have all the members mp3 files go into the mp3_files folder, the player works fine, no problems at all, but I don't want all the members mp3s in one folder, they need to be in each members folder(which I have it set up to do) and I can't figure out how to change the "http://www.mydomain.com/mp3_files" to http://www.mydomain.com/members/$id, that's why I was asking if we add another value in the flash vars, again my inexperience with 2 way communication between as3 and php variables is what's choking me
    the list component is a movie clip
    "You did not answer the question about whether scripts are spread through several frames"
    the first frame has all the code for variables, xml loading, inserting data, the second frame has code for song switching, the third frams has the sound variables, button functions, scrubber and volume, animated meters, etc., I hope i answered it this time, being a newbie, I am trying to answer the best I can.

  • Communication problem MYSQL PHP XML Flash.

    I have driven myself into a corner with this so I hope someone here knows a solution.
    I am building a photogallery with a simple html layout but with a flash slideshow.
    The data for each album and photo are stored in a mysql database. Each photo-image is in one big folder on the server. With PHP I sort out which photo belongs to what album and display them accordingly. To start the slideshow people can click on a link near the album, this link will send a < href> with the album ID to an PHP file (xml.php) that will generated an XML output created from the MYSQL server. Here comes my problem:
    Loading XML into flash is no problem BUT I only know how to do this with a static or self supporting XML output. (xml.php needs the input of the album ID else it will not get the correct data). For now I have a temporary solution where I write the XML output from xml.php to a txt file and let Flash read from there, but is there a way where I can read directly from xml.php?

    Echo your formatted xml out as a string in xml.php, Flash will then read your dynamically generated XML.

  • Cannot open grooveshark due to a supposed problem loading flash. (I have the latest version of both (Mozilla and Flash)

    Everything with firefox works ok except Grooveshark. An error message appears saying: We had problems loading flash, you might have any blocker etc etc.
    I don´t have any blocker and as a matter of fact i have the latest versions for both mozilla and flash. Neither version of flash test nor reinstallation process nor checking add ons or firewall settings solved my problem.
    Thanks for the attention. Regards

    To double-check your Flash permissions for the site, you can click the globe or padlock icon to the left of the address, click More Information, then click the Permissions tab. The "Activate Plugins" section would be the one to check.
    I understand you have checked your add-ons, but in case there is an unexpected interaction, could you test the page in Firefox's Safe Mode just to confirm that extensions are not the problem? That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using either:
    * "3-bar" menu button > "?" button > Restart with Add-ons Disabled
    * Help menu > Restart with Add-ons Disabled
    ''Not all add-ons are disabled: Flash and other plugins still run''
    After Firefox shuts down, a small dialog should appear. Click "Start in Safe Mode" (''not'' Reset).
    Any difference?

  • Problem loading swf file in flash player 9.0.47.0

    Hi all!
    I have a really strange problem and couldn't find any information over the internet.
    The problem only occurs in flash player 9.0.47.0. It works in all the others players, newer and older..
    I try to load a swf file to my web application and get the following error: "This content requires Adobe Flash Player 10.2. Would you like to install it now?"
    the log file shows:
    *** Security Sandbox Violation ***
    SecurityDomain 'http://10.1.1.84:8080/app/jsp/flex/bin-release/LP_FLEX_project.html' tried to access incompatible context 'http://fpdownload.macromedia.com/pub/flashplayer/update/current/swf/autoUpdater.swf?0.5087 71003223956'
    Warning: Reference to undeclared variable, 'out'
    Warning: Reference to undeclared variable, 'out'
    Warning: 'out' has no property 'text'
    Warning: Reference to undeclared variable, 'cameraSettings'
    Warning: 'System' has no property '_visible'
    Warning: Reference to undeclared variable, 'microphoneSettings'
    Warning: 'System' has no property '_visible'
    Warning: Reference to undeclared variable, 'privacy'
    Warning: checkPort is not a function
    Warning: Reference to undeclared variable, 'xOffset'
    Warning: Reference to undeclared variable, 'yOffset'
    Warning: Reference to undeclared variable, 'cameraSettings'
    Warning: 'System' has no property '_visible'
    Warning: Reference to undeclared variable, 'microphoneSettings'
    Warning: 'System' has no property '_visible'
    Warning: Reference to undeclared variable, 'privacy'
    Warning: checkPort is not a function
    Warning: Reference to undeclared variable, 'cameraSettings'
    Warning: 'System' has no property '_visible'
    Warning: Reference to undeclared variable, 'microphoneSettings'
    Warning: 'System' has no property '_visible'
    Warning: Reference to undeclared variable, 'privacy'
    Does anybody has a solution??
    Thanks alot!
    Assaf

    Maybe FP9 does not support your application / swf file?  How did you develop it?

  • Problem loading flash player...

    I am running windows xp sp3 ....... I down loaded the flash player 10. 102. 64 . everything went as planned ...the only place I could find evidence that the player downloaded was by going in to the control panel and add or remove software feature. It showed that it loaded it...but showed no memory occupation. While in Control panel, I highlighted the new flash player entry. and it simply showed a link to adobe support. So, I am here trying to help solve by providing my input.
    I logged on as System admin, killed the virus software processes, and downloaded it all again after having removed the previous version. Same Results
    I have taken several approaches with no success...each time going into the control panel and noting the entry of the flash player 10 with no mem. size being their.  I then uninstalled the thing using adobes DLM...it does say that it is installed and done...also it does remove the entry when uninstalling.
    I updated my java script .....once again the same results....right now ...my computer says that the flash player is loaded no memeory occupied (via control panel) but the only thing is a link to adobe....so, has any body had this experience.

    Thanks, I will revist the forum and look up the threads, I need all the help I can get, You have a great Christmas.
    I too will do without streaming videos , until after the Lords bithday has been celebrated.
    ========================================================
    Date: Thu, 23 Dec 2010 15:59:47 -0700
    From: [email protected]
    To: [email protected]
    Subject: problem loading flash player...
    Hi, The Flash Player is a browser plugin, not a standalone player. There will be no size or any info in Control Panel/Add/Remove/Programs & Features.
    Check a couple of recent threads or click on my name to several threads I have posted on helping users with the same issue.
    Company coming in for the Christmas weekend and my time right now is limited.
    On those threads you'll see the info you need.
    Hope that helps,
    eidnolb
    >

  • Has anyone experience problems with loading the latest Flash Play?

    Has anyone experienced problems with loading the latest Flash Player?  I have done this several times and the same results come up - Install the latest Flash Player.  I run Microsoft Vista.

    What is your browser?  If IE see
    http://forums.adobe.com/thread/885448
    http://forums.adobe.com/thread/867968

  • Problems loading Adobe Flash SWF file

    Our users are experienceing problems loading Adobe Flash SWF
    files.
    One example of a problem file is:
    http://www.adobe.com/enterprise/accessibility/popup_acr8_accessibility.html
    User traffic is flowing through a Cisco ASA firewall - these
    problems do not seem to occur from home networks or a Netscreen
    firewall. The Cisco ASA does NOT have http deep packet inspection
    turned on, and any traffic initiated by clients inside the firewall
    should be allowed. The symptom is that Internet Explorer will begin
    to download the video, but will hang at some point along the way
    (for this particular URL it hangs at about 7%). No error messages
    are displayed, but the video never displays on the screen either. I
    would appreciate hearing from anyone who may have run into this
    before, or if someone can explain what is different about this type
    of file from regular Adobe Flash, that might help figure out what
    the ASA is objecting to. The ASA does not appear to generate any
    log messages about denying this type of traffic either.
    Thanks in advance for any help you can provide...

    Thanks, but I use publish/export settings with GPU hardware acceleration and flash version 11.2 (and 11.8) but nothing happening.
    And why gif file is not all transparenty then I insert on lightblue background? It can't export good quality? Also I use Photoshop, After Effects, Adobe Edge Animate. And nothing happening. Egde animate file .oam is not good for old website navigation. It can't be inserted in freeshop site from navigation... I use logo file .oam just for example here - http://e-shoptagras.graphicsrim.eu
    In reality I want swf file, but we don't find why logo flickering? here http://tagraseshop.graphicsrim.eu
    All file's are transparenty - https://mega.co.nz/#!f8B2CD5R!J8uCJt9Sdq4Suz4HLhTHz8bzJcSWXMBIKcKZgkD3z8c
    I need help! Please!

  • Problems opening PNGs and GIFs

    Hi, I'm having a problem opening PNGs in Photoshop and Illustrator CS5. Also, I am able to open GIFs in Illustrator, but can't in Photoshop.
    The following error message shows up for all the files I'm having trouble opening, "The file is in an unknown format and cannot be opened."
    It seems to be a problem with all PNG files, both those I've created using Photoshop or gotten from other sources. Files I've previously had no trouble with are affected as well. Strangley the same GIFs that Illustrator has no problem with, Photoshop isn't able to recognize.

    Thx.
    Adobe Photoshop Version: 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch]) x32
    Operating System: Windows Vista 32-bit
    Version: 6.0 Service Pack 2
    System architecture: Intel CPU Family:6, Model:15, Stepping:11 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 4
    Processor speed: 2400 MHz
    Built-in memory: 3071 MB
    Free memory: 1426 MB
    Memory available to Photoshop: 1653 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: False.
    OpenGL Crash File: Not Detected.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GT 610/PCIe/SSE2
    Display: 2
    Display Bounds:=  top: 0, left: 1280, bottom: 1024, right: 2560
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1024, right: 1280
    Video Card Number: 1
    Video Card: NVIDIA GeForce GT 610
    Driver Version: 9.18.13.1106
    Driver Date: 20130226062206.000000-000
    Video Card Driver: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
    Video Mode: 1280 x 1024 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GT 610
    Video Card Memory: 1024 MB
    Serial number: 95458361460222344238
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS5\
    Temporary file path: C:\Users\Jamian\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
    Startup, 289.0G, 29.7G free
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS5\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
    A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
    ACE.dll   ACE 2010/10/04-23:36:11   64.441628   64.441628
    adbeape.dll   Adobe APE 2010/02/23-12:40:58   61.421986   61.421986
    AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
    AdobeOwl.dll   Adobe Owl 2010/06/03-13:43:23   3.0.93   61.433187
    AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
    AdobePDFL.dll   PDFL 2010/12/13-23:37:10   64.341419   64.341419
    AdobePIP.dll   Adobe Product Improvement Program   5.0.0.2021  
    AdobeXMP.dll   Adobe XMP Core   5.0   61.134777
    AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
    AdobeXMPScript.dll   Adobe XMP Script   5.0   61.134777
    adobe_caps.dll   Adobe CAPS   3,0,116,0  
    adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00)   1.000000
    AFlame.dll   AFlame 2010/02/23-17:27:33   61.421976   61.421976
    AFlamingo.dll   AFlamingo 2010/02/23-17:27:33   61.421978   61.421978
    AGM.dll   AGM 2010/10/04-23:36:11   64.441628   64.441628
    ahclient.dll    AdobeHelp Dynamic Link Library   1,5,0,30  
    aif_core.dll   AIF   2.0   53.422628
    aif_ogl.dll   AIF   2.0   53.422628
    amtlib.dll   AMTLib   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
    amtservices.dll   AMTServices   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
    ARE.dll   ARE 2010/10/04-23:36:11   64.441628   64.441628
    asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
    AXE8SharedExpat.dll   AXE8SharedExpat 2010/02/23-17:27:33   61.421978   61.421978
    AXEDOMCore.dll   AXEDOMCore 2010/02/23-17:27:33   61.421978   61.421978
    Bib.dll   BIB 2010/10/04-23:36:11   64.441628   64.441628
    BIBUtils.dll   BIBUtils 2010/10/04-23:36:11   64.441628   64.441628
    boost_threads.dll   DVA Product   5.0.0  
    cg.dll   NVIDIA Cg Runtime   2.0.0015  
    cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
    CoolType.dll   CoolType 2010/10/04-23:36:11   64.441628   64.441628
    data_flow.dll   AIF   2.0   53.422628
    dvaadameve.dll   DVA Product   5.0.0  
    dvacore.dll   DVA Product   5.0.0  
    dvaui.dll   DVA Product   5.0.0  
    ExtendScript.dll   ExtendScript 2010/10/19-10:22:12   61.445301   61.445301
    FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
    icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
    icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
    image_flow.dll   AIF   2.0   53.422628
    image_runtime.dll   AIF   2.0   53.422628
    JP2KLib.dll   JP2KLib 2010/12/13-23:37:10   64.181312   64.181312
    libeay32.dll   The OpenSSL Toolkit   0.9.8g  
    libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
    libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
    LogSession.dll   LogSession   2, 0, 1, 11  
    MPS.dll   MPS 2010/12/13-23:37:10   64.450375   64.450375
    msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
    msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4148  
    msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
    msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
    msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4148  
    msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
    msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
    msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.4148  
    pdfsettings.dll   Adobe PDFSettings   1.04  
    Photoshop.dll   Adobe Photoshop CS5   CS5  
    Plugin.dll   Adobe Photoshop CS5   CS5  
    PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   2.0.0.746  
    PSArt.dll   Adobe Photoshop CS5   CS5  
    PSViews.dll   Adobe Photoshop CS5   CS5  
    SCCore.dll   ScCore 2010/10/19-10:22:12   61.445301   61.445301
    shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
    ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
    tbb.dll   Threading Building Blocks   2, 1, 2009, 0201  
    TfFontMgr.dll   FontMgr   9.3.0.113  
    TfKernel.dll   Kernel   9.3.0.113  
    TFKGEOM.dll   Kernel Geom   9.3.0.113  
    TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
    updaternotifications.dll   Adobe Updater Notifications Library   1.0.0.68 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   1.0.0.68
    WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
    wu3d.dll   U3D Writer   9.3.0.113
    Installed plug-ins:
    3D Studio 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    ADM 3.11x01
    Average 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Cineon 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Collada 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Crop and Straighten Photos 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Dicom 12.0
    Difference Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Eazel Acquire 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Entropy 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    FastCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Google Earth 4 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Kurtosis 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Lens Correction 12.0.2
    Lighting Effects 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Liquify 12.0.1
    Matlab Operation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Maximum 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Mean 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Measurement Core 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Median 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Minimum 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    MMXCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Multiprocessor Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    NTSC Colors 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    PCX 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Picture Package Filter 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Pixar 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Portable Bit Map 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Radiance 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Range 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Read Watermark 4.0
    ScriptingSupport 12.0.4
    Send Video Preview to Device 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Skewness 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Solarize 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Standard Deviation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Summation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    U3D 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Variance 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Variations 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Video Preview 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Wavefront|OBJ 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    WIA Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Wireless Bitmap 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
    Plug-ins that failed to load: NONE
    Flash:
    Flash
    Mini Bridge
    Access CS Live
    CS News and Resources
    Flash
    Kuler
    Knowledge
    CS Review
    Installed TWAIN devices: NONE

  • Movieclips loader loads png but does not display image in ie

    hello, i have created a static class to deal with the loading
    of images, it works great. yesterday, i found an issue: i try to
    load png files (those pngs are generated with quasimondo's bitmap
    exporter), they do load, but they are not displayed in ie.
    it worked until recently. is there some specification about
    the png that i have to make sure that the png has? or is there an
    issue using the movieclip loader with ie?
    i included the actionscript class (save the code in an .as
    file), so if you want to test, write only this in the first frame
    of your code:
    import com.iCongo.utils.MovieClips;
    this.createEmptyMovieClip ("placeholder",
    this.getNextHighestDepth ());
    MovieClips.loadIMG (this.placeholder, "
    http://somedomain.com/somepng.png");
    that image will load, but in the context of my flash file
    where many many files are loaded at the same time, only the block
    generated by the bitmap exporter will not show.

    OOPS
    cancel that question. i ftp'd the file to the server again, this time setting the transfer type to binary and the png image comes up
    just like it should.
    john

  • Loading mulitple Adobe Flash web pages makes mouse cursor disappear

    I have a 2011 Mac Mini with OSX 10.7 Lion Server
    Regardless of the Browser used  - if I load mulitple Adobe Flash based Flickr photo slide show web pages, after 15 seconds my Mouse Cursor completely disappears and makes navigating the mac rather impossible.
    Its really buggy and forces me to click or "right click" (Option Click) randomly on the Desktop with the hope that I might briefly see the cursor return so I can close the browsers.
    Does not matter if i use Safari, Firefox or Chrome.
    These are the pages in question which give me grief -
    http://www.flickr.com/groups/warbirds/pool/with/8032123616/lightbox/
    http://www.flickr.com/photos/fluxstreamcommunication/show/
    http://www.flickr.com/photos/x-ray_delta_one/show/
    must click the "play " to start the slide show, have all three running at the same time.
    And withing 10 seconds on my mac mini - NO Curser.
    Even if I try to move the mouse outside the Browser display area  - to where i clairvoyantly might consider the cursor should be over the Desktop.
    Typically results in the invisible cursor accidently creating numerous new folders on the desktop, as I frantically attempt to make the cursor re-appear.
    Totally maddening - and I have the Identical problem on Two separate 2011 Macs. (iMac 27 and Mac Mini)
    My local  Apple Genius Bar support person suggested I back up my data and perform  "OSX Recovery"
    http://support.apple.com/kb/HT4718
    Stating its possble that my Adobe Flash was installed wrong.
    I have the latest updates
    OSX 10.7.4
    Flash Version 11.4.402.265

    Update.
    This solved the problem
    My local  Apple Genius Bar support person suggested this sequence and it fixed my disappearing cursor!
    1) Back Up personal Data
    2) Perform "OSX Recovery"
    http://support.apple.com/kb/HT4718
    3) Perform the Apple Software update
    4) Then install latest Adobe Flash
    This fixed my problem!
    Now I'll do the same fix for my 2011 iMac 27" with the identical issue.

  • Compatibility problem with macro media flash active control

    I am getting a message on my screen "compatibility problem with macro media flash active control, it isnt compatible with my version of windows (vista).  How can this be fixed?  why am I suddenly getting it now?  I have the latest Adobe flash player installed.
    Trisha

    the latest flash is probably the problem... it's seems that the latest flash has been causing a boat load of issues. i did a system restore to undo the flash and mozilla upgrades and it's still crashing but not as bad as it was with the upgrades.

  • Best way to load xml to flash

    I have a movie on my stage that will need to load in a
    relatively small xml document. The problem is that the xml that is
    loaded into the flash is based on search results so it will change
    all the time and therefore won't read from a local xml file. I have
    an example working where it calls a webservice to do the search and
    gets back the xml. But in this scenerio the flash has to load, run
    the search and then parse the results so it could be a few seconds
    that the page has loaded before the flash finishes loading. I've
    thought about passing the xml in as a parameter which would put it
    right in the html code. I'm not sure how to do this though in as3.
    Is there another way that I'm overlooking where it could load the
    xml without having to put it right in the html or call a
    webservice? Thanks.

    I am at work now and able to access my files. I have
    developed this basic xml loader class. Some of it is my creation,
    some of it I pulled from these forums. Hope it helps you out.

  • K7N2 - Bios Checksum Error - But wont load program to flash bios

    Hi there, my computer restarted itself due a problem with windows (kernel dll or something arather), since then it wont boot at all, beeps twice and says Bios Checksum error.
    Now i understand this means the Bios is corrupted and i need to re-flash it. I looked at instructions on how to do this and followed them to the button. However, it wouldnt load a boot disk at all so i reset the Cmos using the jumpers.
    After reseting it would now read the disk (i can hear it make noises) but it would only get as far as starting to load the award flash program, i.e. it just says "Starting..." but then the disk will stop reading at it will just hang then doing nothing.
    I've tried numerous disks and numerous bios version numbers (but obviously the right ones for my motherboard: K7N2 Delta series Ms-6570), and i've tried using different types of bootdisk all with the same result.
    Is there anything else i can do? or is it pretty much screwed and i have to take it back to the shop i bought it from and request a new bios chip (technically its still under warranty, as its only 10 months old but would this be covered with the warranty?). I can foresee taking it back being a huge hassle so if there is anything i can do to avoid this, it would be greatly appreciated.

    I never cleared the cmos with the power on. Sorry i didnt make it clear, but yeah i always made sure the power was completely out. I left the battery out last night too, but still no change. All cables are on right, and I'll try taking out all the cdrom and cd when i get home. I cant get into Bios (pushing del key). all i get is two beeps and boot block telling me that there is a Bios Rom Checksum error (again, sorry i wasnt being very clear).
    I think it might be pretty much stuffed. I'm tempted just to go to the store and buy another one as they aren't too expensive and probably not too much of a price difference from getting a new bios chip and having to wait for 2 weeks while it gets delivered. But then again maybe i should just be patient and save myself some money.
    Hmm, could it be due to bad RAM? I'll try swapping it with my brother's and see what happens. It's kind of ridiculous that they give the same generic error message for a multitude of different problems, someone should fix that.

Maybe you are looking for