Image loaded with Loader doesn't render

I have created a web service that pulls images (gif,jpg) from
the database and base64 it for sending across the wire. The flex
application then decodes and renders the image. The Image is not
being scaled correctly. IT will not adhere to the dimensions of the
ImageBox but rather stays at the original fixed size. If I embed
the image into the application everything works correctly. But if
the image is decoded then sizing goes out the window.
The image overflows the Image box and takes up the full size
of the image. Zoom, rotation, etc. do nothing to the image.
Any help is appreciated...
Example Code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute" creationComplete="onLoad(event);">
<mx:Script>
<![CDATA[
import mx.utils.Base64Decoder;
public function onLoad(event:Event):void {
// Decode image - Base64 gif image (500 x 776)
var base64:String = "R0lGOD..."; // Get base64 from web
service call
var decoder:Base64Decoder = new Base64Decoder();
decoder.decode(base64);
// Load image into container
var loader:Loader = new Loader();
loader.loadBytes(decoder.flush());
image2.addChild(loader);
]]>
</mx:Script>
<mx:HBox id="mainBox">
<!-- Should render a 100 x 100 box but instead the image
is full size -->
<mx:Image id="image2" width="100" height="100" />
</mx:HBox>
</mx:Application>

Hi Dmitri,
Thank you for the prompt reply, your question about the jpeg content was a helpful pointer.
I solved the problem, it had nothing to do with flex, it was all on the java side. The image was obtained from converting a TIFF to a JPEG, the conversion was failing and the flex loader was receiveing a tiff and it did not know how to display it.
The java problem was kind of interesting, I'll post it here as an FYI in case anybody cares :
On my server the first writer returned by ImageIO was an instance of JPEGImageWriter and on the other servers was CLibJPEGImageWriter. And it happens that  only JPEGImageWrite can write the type of TIFF that we are having.
The fix was to iterate through all the writers and pick the instace of JPEGImageWrite, instead of the first one found.
Lumi

Similar Messages

  • Interface frozen with images loaded with Loader()

    Hi all,
    I am trying to create a web app that allows the user to load an image from a local folder and process it with some image processing. I was able to do that with FileReference and Loader.
    I am using an asynchronous shader to process the image and it seems that when the image is loaded locally the interface is locked out for a second or so before showing the result. However, if the image is embedded this does not happen and the image is updated instantly with the result.
    I don't really understand why an image loaded with a loader has this lag and an embadded image does not... Can anyone help?
    Thanks.

    Everything was already done
    100 fullduplex autoneg to false :
    # for i in `ndd /dev/hme \? | grep "read and write" | awk '{print $1}' ` ; do
    echo $
    ndd /dev/hme ${i}
    done
    ipg1
    8
    ipg2
    4
    use_int_xcvr
    0
    pace_size
    0
    adv_autoneg_cap
    0
    adv_100T4_cap
    0
    adv_100fdx_cap
    1
    adv_100hdx_cap
    0
    adv_10fdx_cap
    0
    adv_10hdx_cap
    0
    instance
    0
    lance_mode
    1
    ipg0
    16
    $ netstat -k hme0
    hme0:
    ipackets 172970 ierrors 77 opackets 106192 oerrors 0 collisions 0
    defer 0 framing 36 crc 41 sqe 0 code_violations 0 len_errors 0
    ifspeed 100000000 buff 0 oflo 0 uflo 0 missed 0 tx_late_collisions 0
    retry_error 0 first_collisions 0 nocarrier 0 nocanput 0
    allocbfail 0 runt 0 jabber 0 babble 0 tmd_error 0 tx_late_error 0
    rx_late_error 0 slv_parity_error 0 tx_parity_error 0 rx_parity_error 0
    slv_error_ack 0 tx_error_ack 0 rx_error_ack 0 tx_tag_error 0
    rx_tag_error 0 eop_error 0 no_tmds 0 no_tbufs 0 no_rbufs 0
    rx_late_collisions 0 rbytes 199140046 obytes 6676272 multircv 231 multixmt 0
    brdcstrcv 1057 brdcstxmt 42 norcvbuf 0 noxmtbuf 0 newfree 0
    ipackets64 172970 opackets64 106192 rbytes64 199140046 obytes64 6676272 align_errors 36
    fcs_errors 41 sqe_errors 0 defer_xmts 0 ex_collisions 0
    macxmt_errors 0 carrier_errors 0 toolong_errors 0 macrcv_errors 0
    link_duplex 0 inits 5 rxinits 0 txinits 0 dmarh_inits 0
    dmaxh_inits 0 link_down_cnt 0 phy_failures 0 xcvr_vendor 24657
    asic_rev 193 link_up 1
    So what do you have any idea, about the problem?
    The router is 100 Full Duplex w/o autoneg
    the errors arrived only on the virtual interface hme0:1, and never on hme0
    Fred,

  • Jpeg image loaded with Loader- loadBytes() does not display when app is deployed on remote server

    I am loading a JPEG  image from the server, using the Loader->loadBytes() and that works when the app is deployed under my local Tomcat server.  When I deploy it on other servers the image is not displayed,  instead of the image I see II*
    On the server side I have java, Spring, BlazeDs and I use RemoteObject on the client.
    The code that loads the image looks like below:
    private function imageLoadResultHandler(event:ResultEvent):void {
        var result:ArrayCollection = event.result as ArrayCollection
        var bytes : ByteArray = result.getItemAt(0) as ByteArray;
        _loader = new Loader();
        _loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaderCompleteHandler);
        _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loaderFaultHandler);
        _loader.loadBytes(bytes);
    private function loaderCompleteHandler(event:Event):void {
        var loaderInfo:LoaderInfo = event.currentTarget as LoaderInfo;
        var img:Image = new Image();
        img.source = loaderInfo.content;
        myPanel.addChild(img);
    <mx:RemoteObject id="ro" destination="imageLoadService">
         <mx:method name="loadImage" result="imageLoadResultHandler(event)" fault="faultHandler(event)" />
    </mx:RemoteObject>
    Any help with this problem is much appreciated.
    Thank you,
    Lumi Velicanu

    Hi Dmitri,
    Thank you for the prompt reply, your question about the jpeg content was a helpful pointer.
    I solved the problem, it had nothing to do with flex, it was all on the java side. The image was obtained from converting a TIFF to a JPEG, the conversion was failing and the flex loader was receiveing a tiff and it did not know how to display it.
    The java problem was kind of interesting, I'll post it here as an FYI in case anybody cares :
    On my server the first writer returned by ImageIO was an instance of JPEGImageWriter and on the other servers was CLibJPEGImageWriter. And it happens that  only JPEGImageWrite can write the type of TIFF that we are having.
    The fix was to iterate through all the writers and pick the instace of JPEGImageWrite, instead of the first one found.
    Lumi

  • Spry Image Slideshow with Filmstrip doesn't work in IE, but works in Safari and Firefox

    Hello,
    The Spry slideshow with filmstrip wiget works fine in Firefox and Safari. However, it does not work in Internet Explorer. The slideshow looks like it is loading (the little circle spins), then it disappears and the slideshow is replaced with an empty space and a little white box with the red x (that normally signifies a missing picture of picture that can't load for some reason). Has anyone found a solution to this problem? I was hoping that the widget would work in Safari, Firefox, and IE. Does anyone know of another option for adding a slideshow that works in all three browsers?
    Thanks!!

    gatorgirl,
    Here are the first lines in my template.  The Spry Menu script src and link statements are the only two lines that have to be moved (on your template or any page for that matter) above the Spry Slideshow  src and link statements.  Just leave the Slideshow code in the same position that Dreamweaver inserts it.   When you create a new document from your template, Dreamweaver leaves it alone.  Just set it and forget it.   I've wrestled with all sorts of other solutions listed on this forum and this is the fix that continues to work for me!  It seems to me that the only reason this solution works is that javascript is a procedural language and some code in the Spry Slideshow javascript has some conflict (maybe a name/symbol problem) with the Spry Slideshow javascript.  If someone else knows the absolute reason for this ordering problem, please feel free to come back and teach me!!  Always ready to learn something new!!
    I hope this helps you!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <link REL="SHORTCUT ICON" HREF="http://pcpros.com/images/alfred.ico">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>PC Pros Consulting Services and Programming Examples</title>
    <!-- TemplateEndEditable -->
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body {
        background: #42413C;
        margin: 0;
        padding: 0;
        color: #000;
        background-image: url(../images/PCPback1.jpg);
        font-family: "Times New Roman", Times, serif;
        font-size: 100%;
        line-height: normal;

  • Essbase load with load rules and add to option

    Is there a trick to loading data from one essbase cube and using a load rule to convert it to new metadata values and
    aggregating like values?
    My data came out very strange looking. Does 'add to' null out values if adding to null?
    Does the strip leading trailing zeros interfere with file layouts? My data was spotty and ended up in Dec but no other months.
    Thanks

    adding values to a null value "Missing" results in the value.
    Did you extract your data in column format? If so, ignore the top two rows The first row is the row dimension info, the second the columns for the data values. In sample basic you might see something like
    Markets, products, scenario,accounts
    Jan feb mar apr .....
    so the first 4 columns are the row dimension members and the next 12 fields are the data values by month.
    stripping leading and trailing values has no effect especially since an export puts quotes around member names

  • Dynamic image load with MovieClipLoader

    I'm trying to load five images from five URLs. If I use the
    documentation exactly as is, it works fine. Problem is, I don't
    want to createEmptyMovieClip, I want to use an existing one that's
    tucked inside a movie instance. Also, the images coming in are of
    unknown size, but have a standard 4:3 size ratio. I'd also like to
    scale them down to 180x120 after they arrive. Any help would be
    greatly appreciated.
    The code below only loads one image (which isn't working). I
    will eventually need it to load five different images.

    Dynamic text that doesn't have embedded fonts won't respond
    to tweening, alpha, etc. So you need to embed the font(s). There
    are a couple of ways to do this depending upon what you are doing.
    But most likely you can just select the text field and click the
    font button on the properties panel and select embed. Also I would
    recommend that you use _visible=false instead of alpha for this
    effect.
    I'm not sure what the second go-round is. Can you explain
    that a bit better? You should be able to use the same loader, so
    I'm not quite sure what is going on. Again, look for some helpful
    places to put some traces and see if you can figure out what is
    going on. Remember that generally Flash does what we tell it, not
    what we want! So if you can find the places where you are telling
    it to do things you can figure out what is happening.
    Also I'm not clear on what is going on with the variables and
    text. Generally I would recommend against using the variable
    property of text fields. That is a leftover from the Flash 5 days
    when you couldn't work directly with dynamic text fields. Instead
    give the fields instance names and then assign the text with the
    text property.
    myTextField.text="some value in here";
    myTextField2.text=someStringVariable;

  • Problem with Loading Images?

    <pre><i>Locking duplicate thread.
    Please continue here: [[/questions/982030]]
    </i></pre>
    Hi,
    I'm using Firefox 26.0 and I'm kinda new user to Firefox.
    I'm having this random issue with facebook (sometimes with other websites too),
    Sometimes when I open a page, the Images doesn't show as usual.
    Sometimes it takes up to 10sec - 2 mnts to finish loading all the images.
    My internet is 8Mbps so I don't think its due to that?
    Here is a screenshot of the exact issue: http://i.imgur.com/I3eOQaI.jpg
    But it get fixed for a while (say 1-2 days) if I clear the cookies and caches. I visits a lot of webpages so clearing cookies and caches all the times is kinda not pretty possible.
    I also tried disabling all my add-ons, and ran a full scan with McAfee.
    Can anyone tells me what exactly could be the issue? It gets pretty annoying sometimes!
    Thanks in advance!
    Regards,
    Abey

    '''Hi, Thanks for Visiting this Question. But it was a duplicate of https://support.mozilla.org/en-US/questions/982030 (The Same question) Accidentally posted twice''' and I couldn't find an option to delete it, so please '''ignore''' this :-)
    Original thread: [[https://support.mozilla.org/en-US/questions/982030|"Problem with Loading Images"]]
    Warm Regards,
    Abey

  • Applying filter to images loaded with movieClipLoader

    Hello,
    I am building a product gallery and have a number of rather
    large bitmap images that I am loading with movieClipLoader. I need
    to apply drop shadow filters to them when they are loaded. I have
    tried several methods of going about this without success. One
    method was putting the loaded images into a movie clip with
    createEmptyMovieClip, and then applying the filter dynamically, but
    I couldn't seem to get it to work- the filter never appeared. I
    then tried applying the filter to the bitmap itself with
    bitMapData, but because I was not loading the bitmaps using
    bitMapData itself (I think) I wasn't able to get that method to
    work either.
    Does anyone have a suggestion or a recommendation for me?
    Thanks very much for any advice.

    Were you doing it after the onLoadInit event in the
    MovieClipLoader's listener?
    Try doing it that way if you haven't. One option I use for
    dynamic image loading is to create and empty holder clip - use that
    for placement and create another empty clip inside that one that I
    use as the loading target... I think this should work if you set
    the filter at the level of the first 'empty' clip. I had to use
    this approach a number of times because I was using a tweening
    engine based on movieclip prototype extensions (old hat I know) and
    loading new images kicked out the extended functionality from the
    clip the images are loaded into. That doesn't happen to the clip's
    parent... hence I think it might work also for what you want to do.
    Another thing to watch for is that you can't do bitmapData
    copies of images from a different domain unless you have
    crossdomain policy support - you can set it up so this works. I'm
    not sure if this affects filters though.
    -GWD

  • Aperture 3.2.4 macbookpro lion: image disappears after loading from any project; repairing everything on starting app doesn't fix it. Only restarting the computer works. Any help, please? ... in non-technical language please. Thanks

    aperture 3.2.4, macbookpro lion: image disappears after loading from any project; repairing everything on starting app doesn't fix it. Only restarting the computer works. Any help, please? ... in non-technical language please. Thanks

    “Hi Kirby, thanks a lot for your answer.
    I got one answer, from DMoore, saying:
    “Try Safe boot and then restart with only Aperture open.  Still doent work write back with more details like Ram, HD capacity/free space.  Are these thumbnails or Previews? Have you turned off building previews in AP preferances?
    Safe boot   http://support.apple.com/kb/HT1564
    Starting up into Safe Mode does several things:
    1  It forces a directory check of the startup volume.
    2  It loads only required kernel extensions (some of the items in /System/Library/Extensions).
    3  In Mac OS X v10.3.9 or earlier, Safe Mode runs only Apple-installed startup items (such items may be installed either in /Library/StartupItems or in /System/Library/StartupItems; these are different than user-selected account login items).
    4  It disables all fonts other than those in /System/Library/Fonts (Mac OS X v10.4 or later).
    5  It moves to the Trash all font caches normally stored in /Library/Caches/com.apple.ATS/(uid)/ , where (uid) is a user ID number such as 501 (Mac OS X v10.4 or later).
    6  It disables all startup items and login items (Mac OS X v10.4 or later).
    7  Mac OS X v10.5.6 or later: A Safe Boot deletes the dynamic loader shared cache at (/var/db/dyld/). A cache with issues may cause a blue screen on startup, particularly after a Software Update. Restarting normally recreates this cache.”
    As I don’t know much about the technical aspects of computers, I don’t really understand the first answer, and it sounds like following it might produce unwanted changes.
    But I understand your questions, so I’ll try to answer them;
    "loading from any Project" means that I encounter the problem when I’m using a project, possibly after/because I’ve left the Mac on overnight, and/or  I’ve made a lot of adjustments, and, once the problem is there, it happens in any other project which I open – the images load then disappear.
    I can see images in the Browser, so it only happens in the Viewer(s).
    I’m afraid I don’t understand what you mean by: “If you select "Photos" from near the top of the Library tab of the Inspector, does it show you all of your Images?”. I am a newcomer to Aperture, so I don’t know what some of the buttons are for yet, but when I want to look at and adjust my pictures, I import them, as referenced images, then Aperture creates a folder/project in the Library. When I click on that Project (when it’s working properly), all the images appear in the Browser or the Viewers  – without me needing to “select Photos from near the top of the Library tab of the Inspector”. I selected it and looked at all the items in the dropdown menu, but none of them seems to offer the option to ‘show all the images’. So I’m not sure how to answer your question except to say that – yes, I can see all the pictures in the Browser or the Viewers (when it’s working properly), but I don’t seem to need to use the Photos button to achieve this.
    Did Aperture work before?
    Yes it worked ok for a while, but I only purchased it on 24th May.
    If I understand correctly, the difference between thumbnail and preview is that the thumbnail is what I see when the “Loading” wheel is turning, and the disappearance of this wheel after a few seconds means that I am now looking at the preview (also, the thumbnail cannot be adjusted).
    So I think the problem occurs when the thumbnail has finished loading; the viewer going blank/grey might mean that it is not showing the preview.
    But I have not changed the default Preview settings in Aperture Preferences.
    My macbookpro details:
    2.7 Ghz Intel Core i7
    Memory: 8 Gb 1333 MHz DDR3
    Hard Drive capacity 499.25 GB
    Available 387.36 GB
    I have noticed another problem: I cannot apply the same rating to multiple images: following the instructions, I select a group of contiguous (or non- contiguous) images, choose a selection eg “5stars” using the keyboard, but the stars only appear in the last selected image – even though all the images are still showing as selected.”
    I hope this helps you to understand more.
    Thank you for trying to help me.
    Tony

  • The latest version of Firefox loads with the Ask page and doesn't retain the selected home page. How do I change this?

    I downloaded the latest Firefox version. Upon loading it it doesn't retain the previous Home Page setting and always reverts to the Ask page, which is always indicated as the Home Page. This is annoying. How do I overcome this problem?

    #Remove Ask Toolbar (if you have it installed):
    #*http://support.mozilla.org/en-US/kb/Uninstalling+add-ons
    #*http://support.mozilla.org/en-US/kb/Cannot%20uninstall%20an%20add-on
    #*http://kb.mozillazine.org/Uninstalling_toolbars
    #Reset your home page (if the Ask search page is displayed when starting Firefox): http://support.mozilla.org/en-US/kb/How+to+set+the+home+page
    #*You can reset to the default by clicking "Restore to default" on Options > General > Startup > Home page. Be sure to set "When Firefox starts" to "Show my home page" on that same panel.
    #Reset your Location Bar search engine (if typing a few words in the URL/Location Bar takes you to Ask search):
    #*type '''''about:config''''' in your Location Bar, like typing a web site address, and press the Enter key
    #*ignore warning and choose to continue
    #*in Filter, type '''''keyword.URL'''''
    #*in lower part of screen, if it is '''bold''' and shows "'''user set'''", right-click keyword.URL and choose "Reset"
    #*in Filter, type '''''Ask'''''
    #*any items in lower part of screen in '''bold''' and showing "'''user set'''", right-click and choose "Reset"
    #*close about:config tab
    #*See:
    #**http://kb.mozillazine.org/About:config
    #**http://kb.mozillazine.org/Location_Bar_search#Location_Bar_search_.28external_-_search_engine.29
    #**http://kb.mozillazine.org/Keyword.url
    #**http://www.techrena.net/computers/address-bar-search-provider-firefox/
    #If Ask is shown in your Search Bar and you want to remove it:
    #*https://support.mozilla.org/en-US/kb/Search%20bar
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.org/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *'''''Adobe PDF Plug-In For Firefox and Netscape''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.org/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *'''''Next Generation Java Plug-in for Mozilla browsers''''': [https://support.mozilla.org/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Images are not loading/not loading completely, persona previews no longer works with scrollover - even after complete uninstall/reinstall, but images work in IE - suggestions on how to fix this??

    Images on websites often do not load or load incorrectly/incompletely load even after refreshing page and clearing caches. Often have to "clear recent history" 5 or 6 times within a single firefox session to get working links, images, completely loaded pages. The persona previews no longer do an "automatic preview" with a scroll over and now i no longer even get an image on the page to scroll over (images are just NOT THERE). I have done the safe mode test, have updated everything suggested, have checked all add ons as suggested in the troubleshooting guide and NOTHING shows as being a problem. I even did a complete uninstall and reinstall and it is STILL not working. Worried that it was an issue with my computer, i checked the pages in IE, and they worked PERFECTLY. I am uncertain what to do now. It started as a problem once or twice a week, and now it is EVERY time i bring up Firefox. Help?

    the second article did offer a suggestion that SEEMS to have helped ::crosses fingers:: - an about:config, resetting of the preferences for images. we'll see how long it lasts. THANK YOU SO MUCH for the suggestion, the article wasn't one i'd found while searching for troubleshooting info.
    Java script is enabled, but the persona's stuff still isn't working. dang it. WELL, one thing seems to work now, at least. thank you.
    Pax, km

  • Random images are not loading in Firefox 3.6. Probem does not occur with IE.

    When using Firefox in any site with images (eg Google Images or eBay etc) a small random number of images fail to load, and some of those which load do so after an unusual delay. This problem began post FF3.6 upgrade, and does not occur in IE.
    == This happened ==
    Every time Firefox opened
    == post 3.6 upgrade

    Try "Reset all user preferences to Firefox defaults" on the [[Safe mode]] start window - See http://kb.mozillazine.org/Resetting_preferences
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • I have a problem with loading the PNG image

    I have a problem with loading the PNG image from site. For ex. go to icefilms com and is starts to load png like crazy CPU is huge and you can not shut down Firefox at least a minute. This is not just in this site but whit any one whit lots of pictures.
    Image from firefox: Picture [http://img836.imageshack.us/img836/9910/7312011103147pm.jpg 1] [http://img28.imageshack.us/img28/8505/7312011103249pm.jpg 2] [http://img706.imageshack.us/img706/5615/7312011103348pm.jpg 3 ][http://img827.imageshack.us/img827/8483/7312011103533pm.jpg 4]
    This is my Task Manager [http://img217.imageshack.us/img217/5715/7312011103621pm.jpg 1]
    - I try safe mode, same thing
    -All addons and plugins are ok
    Any idea why is this so big problem.

    i did both of them, but still the while sending the mail the diolog box is not showing up and also the spelling and grammer does not do the spelling check. 
    This problem just started for about 3 to 4 days now.  earlier it was working normally.

  • Fash Images will not load with Firefox

    Currently Flash images will not auto load with Firefox on my mac 10.4. All flash images show with an arrow I must click to make them appear every time I visit a page.
    I do have the most updated version of Flash (10.2.152.33). I have checked their site for all troubleshooting possibilities as well as the FF forum & nothing has made these images auto load. I do have load Images automatically in my Preferences: Content. This is only happening with Firefox & not all browsers.
    I do remember having to add some Security: Install Add-On Exceptions a few updates back in FF back when I had this problem. Adding them fixed the problem, however the next update made the issue reoccur. I've looked for additional exceptions & possibilities to include & found nothing. My current list of add on exceptions include: addons.mozilla.org, getpersonas.com, & update.mozilla.org. Removing these does not fix the problem & re-entering them does not fix the problem. All flash images still show as arrows that must be clicked to load to view for my Firefox browser only. This does not occur in any other browser.

    alright. I've found that Firefox has a Flashblock setting & I have found a way to disable it if I customize & add an icon to my toolbar however I would like to learn how to change that setting without having to add that icon. Where in the settings does it allow me to change/adjust the flashblock?

  • Rotating image loaded with CameraRoll

    I'm having trouble working out how to rotate an image loaded using CameraRoll on an AIR for iOS app.
    This code below works fine (displayImage() is called when CameraRolls media event returns completed, and imageArea is the scrollPane where the image is shown.
         function displayImage():void
         var image:Bitmap = Bitmap(imageLoader.content);
         imageArea.source = image;
    The image loads just fine untill I try to rotate it:
         function readMediaData():void
         var image:Bitmap = Bitmap(imageLoader.content);
         var imX:int = image.width;
         var imY:int = image.height;
              if (imX>imY)
                  image.rotation = 90;
         imageArea.source = image;
    With the second version the image seems to load because the scroll bars expand to the size of the image I choose, but I don't see anything on the stage.
    What am I doing wrong?
    Any suggestions would be really appreciated.

    I added the new width back to images x position but no joy; no matter what x & y I set the image to, it cannot be seen. The scroll bars expand exactly the right amount for the 'invisible' image, regardless of it's x & y positions as well (you'd think if the image was out of the scrollPane the bars wouldn't adjust like that. I'm not doing something right.
    I'm stumped on this but I'll keep trying things. Thanks for your help and the lead, I appreciate it and it may be part of the problem, but there seems to be a different problem as well.

Maybe you are looking for

  • How to setup the drill down on union report

    Hi, I'm setting the union report. I want to set the drill down to another report. But I can't setup it. Would you please tell me how to setup. Thank you.

  • Problem with Disk Premission?

    Hello all ! I can't repair my disk premission, everytime I try I get this message... "2012-07-27 17:55:51 +0100: Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be

  • XI: file to Idoc

    Hi all, I am getting source data like: Order     order_no    1-1     name         1-1     Item1      0- Unbounded         f1         0-1         f2           0-1 the Requirement is for each item i need to generate new Idoc on target side....is it pos

  • How to use the "GEN_KEY" and "FROM_KEY" of RFC_GET_TABLE_ENTRIES

    Hi there, I am using JCO java connector in my own client application to talk to SAP. I need to use RFC_GET_TABLE_ENTRIES to read table entries. Just wondering if anyone knows how to use GEN_KEY and FROM_KEY of this function to narrow the table read a

  • BAM - using with Request Response Send Port

    Hi, I have a scenario where a message is received on a receive port, sent to a solicit-response send port, and then the response is sent out on another send port.  All ports have failed message routing enabled, so that any errors are sent out to an e