How come the images are not getting displayed in ie?

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default How come the images are not getting displayed in ie?

    Hi,
    In my application i have a page where the thumbnails representing the
    videos uploaded into the site should be displayed.These imgaes are getting
    displayed in mozilla properly, but when it comes to ie 7 they are not getting
    displayed..instead iam getting a broken image.Please suggest me a
    solution.Thanks in advance.

    kchamarthi Guest

  2. Similar Questions and Discussions

    1. Draft not displayed
      When I select 'Edit this page' I just get a horizontal red line with two icons at the left end, which do not respond when I click on them. I have...
    2. some files are not displayed
      I have a swf which it receives it's content from xml files. It displayes jpg's and mp3's by getting their paths from xmls. (also I must note that...
    3. getting ?????? displayed
      i am trying to display japanese from database utf 8 on the output page but no luck ...
    4. The XML page cannot be displayed
      'form' does not match the start tag 'input' This started popping up when my client whent to edit homepage. He is using v.2.0 Any ideas? ...
    5. page cannot be displayed
      Nothing yet! If you come up with a suggestion please let me know! I really don't want to have to pay for support to find out that its something...
  3. #2

    Default Re: How come the images are not getting displayed in ie?

    Hi,

    How do you display the images? Which flex components are involved?
    ( code example would be helpful)

    Which image format is used?

    best regards
    kcell


    kcell Guest

  4. #3

    Default Re: How come the images are not getting displayed in ie?

    The thumbnail of video is to be displayed in a datagrid.For that the following
    is the code.The image type is .png.
    <mx:DataGridColumn headerText="Video" width="72">
    <mx:itemRenderer>
    <mx:Component>
    <mx:Image source="{data.thumbnail_path}" height="50"
    width="70"></mx:Image>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    Thanks
    Kranthi

    kchamarthi Guest

  5. #4

    Default Re: How come the images are not getting displayed in ie?

    Hi,

    I have tried you example with the attached code and it worked.

    In my example the png files are in the same folder than the swf.
    Which source path did you you use for the thumbnails?

    best regards,
    kcell



    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:DataGrid x="44" y="105" >
    <mx:dataProvider>
    <mx:Object myname="name1" thumbnail_path="121.png"/>
    <mx:Object myname="name2" thumbnail_path="15.png"/>
    <mx:Object myname="name3" thumbnail_path="12.png"/>
    </mx:dataProvider>

    <mx:columns>
    <mx:DataGridColumn headerText="Column 1" dataField="myname"/>
    <mx:DataGridColumn headerText="Video" width="72">
    <mx:itemRenderer>
    <mx:Component>
    <mx:Image source="{data.thumbnail_path}" height="50" width="70"></mx:Image>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    </mx:columns>
    </mx:DataGrid>

    </mx:Application>

    kcell Guest

  6. #5

    Default Re: How come the images are not getting displayed in ie?

    Hi,
    In my application , png imgaes will be in a folder named png which in
    turn is in the application folder present in webapps of tomcat,and the path of
    the images will be obtained from the database.We used the relative path as the
    source for the image(eg:png/200803011634355322.mpg-0000.png).

    kchamarthi Guest

  7. #6

    Default Re: How come the images are not getting displayed in ie?

    One more thing is iam getting the images in ie7 also in some systems(computer) and in some systems iam getting the broken image.Please suggest me a solution.
    Thanks
    kchamarthi Guest

  8. #7

    Default Re: How come the images are not getting displayed in ie?

    Hi,

    it seems more be related to IE7 itself and a problem of the IE7. Here is a
    link which describe some problems pictures with IE7 (
    [url]http://support.microsoft.com/default.aspx?scid=kb;en;283807[/url] and
    [url]http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2804918&SiteID=1[/url] ...
    think there are many more in google ).

    Can you check if the behaviour is the same when you open the pngs directly in
    the browser (with the url)?

    best regards
    kcell

    kcell Guest

  9. #8

    Default Re: How come the images are not getting displayed in ie?

    If you are using vista (horror music plays) and are not running IE7 as an
    administrator, png files by default will not display. If this is the case, you
    can turn off UAC (user access control) or run IE7 as administrator (I don't
    have vista in front of me, else I'd walk you through it). UAC prohibits png
    files from displaying unless operating under the administrator setting.

    If this isn't your answer, I still agree with kcell that it's an IE setting.

    EvolvedDSM Guest

  10. #9

    Default Re: How come the images are not getting displayed in ie?

    Hi kchamarthi,

    did you solved your problem?

    best regards,
    kcell
    kcell Guest

  11. #10

    Default Re: How come the images are not getting displayed in ie?

    Hi Kcell,
    Thanks for the interest.I tried the two links that u
    suggested..Changed the browser options accordingly but in vain....Here i forgot
    to tell one more thing....that is, iam getting one image in ie7(compared the
    image's path and details with remaining images but didint find anything
    different ),for the remaining images iam getting the broken image.
    Thanks
    Kchamarthi

    kchamarthi Guest

  12. #11

    Default Re: How come the images are not getting displayed in ie?

    Following is the link of the site if you want to have a look.
    "www.testtoob.com" and the credentials are username:val password:kranthi
    After getting logged in go to community library and click on ok for the videos
    to get populated.
    Please help me in finding the solution.

    kchamarthi Guest

  13. #12

    Default Re: How come the images are not getting displayed in ie?

    Hi kchamarthi,

    first, nice app ;)

    I have tried with FF and IE7 (custom low security settings) and it worked on
    my pc (W2k3 SP1 + all hotfixes) even in IE7. If I got time later I will also
    try from my home pc (Vista) and let you know the results.

    best regards,
    kcell







    kcell Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139