Flash Object Display in GUI HTML VIEWER

Is there a way to display html string in html viewer which contains the flash objects?
Regards,
Santhosh.

Hi Santosh,
Yes, create ABAP program in which use the HTML viewer (class:  cl_gui_html_viewer ) within a container.
Please refer following links -
   About CL_GUI_HTML_VIEWER   -  http://wiki.sdn.sap.com/wiki/display/profile/2007/08/30/About+CL_GUI_HTML_VIEWER
   PDF for reference - http://help.sap.com/printdocu/core/print46c/en/data/pdf/BCCIHTML/BCCIHTML.pdf
Thanks.
Kumar Saurav.

Similar Messages

  • Flash object not represented in Design view

    When I had CS3 and I put in a flash object into my design there was a place holder or grey box that represented where teh flash would be. I no longer see it anymore and I am missing it. Then best i can do is get one of those little yellow icons that lets you know there is a script there to show up.
    How do i tun on the place holder version again. (Not really a place holder but I am not sure what to call it)
    Thanks,
    Houston

    Using CS4 I just did a test and inserted a flash object and could see a grey box with the 'F icon' in the middle.
    Have you checked  View>Visual Aids> Invisible Elements is ticked?
    Not sure if this is causing you not to see it - but it's the only suggestion I have  :-)

  • How to create MIME object to display in HTML viewer

    Gurus,
    I want to display the picture in HTML Viewer. we have method LOAD_MIME_OBJECT.
    Can you please let me know what are pre requisite for this method and how to pass object_id and Object_url for this method.
    Thanks,
    Suneel

    hi
    good
    CALL METHOD html_control - >load_mime_object
    EXPORTING
    object_id = 'ZWN'
    object_url = 'ZWN.GIF'
    EXCEPTIONS
    OTHERS = 1.
    CALL METHOD html_control - >load_data
    EXPORTING
    type = 'text'
    subtype = 'html'
    IMPORTING
    assigned_url = v_doc_url
    CHANGING
    data_table = lt_my_html
    EXCEPTIONS
    dp_invalid_parameter = 1
    dp_error_general = 2.
    IF sy-subrc EQ 0.
    CALL METHOD html_control - >show_url
    EXPORTING
    url = v_doc_url
    in_place = ' '.
    endif.
    All objects are checked in via SMW0.
    In the HTML Code, I have the pictures this regular way:
    ....<im g sr c=zwn.gif......
    <REMOVED BY MODERATOT>
    thanks
    mrutyun^
    Edited by: Alvaro Tejada Galindo on Feb 22, 2008 3:08 PM

  • HTML VIEWER  cl_gui_html_viewer and MIME objects - can't display

    Hi,
    I try to display a dynamic HTML page with some pictures staright fro a ABAP list:
    I have the following code snipet:
    CALL METHOD html_control - >load_mime_object
         EXPORTING
              object_id  = 'ZWN'
              object_url = 'ZWN.GIF'
         EXCEPTIONS
              OTHERS     = 1.
    CALL METHOD html_control - >load_data
      EXPORTING
         type                 = 'text'
        subtype              = 'html'
      IMPORTING
        assigned_url         = v_doc_url
      CHANGING
        data_table           = lt_my_html
      EXCEPTIONS
        dp_invalid_parameter = 1
        dp_error_general     = 2.
    IF sy-subrc EQ 0.
      CALL METHOD html_control - >show_url
        EXPORTING
         url      = v_doc_url
          in_place = ' '.
    endif.
    All objects are checked in via SMW0.
    In the HTML Code, I have the pictures this regular way:
    ....<im g sr c=zwn.gif......
    If I have it run like this, the pictures are not displayed.
    If I do it the way to leave out the HTML page and display it directly:
    CALL Method ....load_mime_object.....
    CALL Method....show_url, the picture is displayed.
    What am I doing wrong?

    Hello Holger,
    as the status of this thread is "Answered", I would be very thankful to get your solution.
    Does it only work with the in-place-option or did you find something else.
    THANK YOU !!!

  • HTML page with FLASH object doesn't reload upon a redirect

    Am using:  ECC 6.0 and ABAP SAPGUI development
    Hi All,
    I'm seeing a frustrating issue that i'm hoping others have seen and resolved.
    Here is what i'm attempting and below that is the issue:
    1)  I have created a ABAP program in which i'm using the HTML viewer (class:  cl_gui_html_viewer ) within a container that is on one of my ABAP screens.
    2)  I load up a web page on our (intra)network that displays an HTML page that has a nice FLASH navigation object.  This navigation object operates as such - when a node is clicked it will go to another html page (on the same network) that will then parse apart what node they clicked on and via javascript submit a form in which I've defined a SAPEVENT for.
    3)  My ABAP program has defined the event handler for this sap event and calls the appropriate method just fine (ON_SAPEVENT).  I am able to trap the event details and do some other things.
    This is all working just fine, except....I want it to then go back to the first page (original page) that contained the FLASH navigation on it upon after the page that trapped the SAPEVENT is complete automatically.  Easy? - that's what I thought...I tried several different ways to do this "go_back" on the html control, "show_url" (with the original URL)...even a redirect in the actual html page itself to go back.
    They all DO go back to the first page, however my flash navigation object on that page NEVER shows up!  It's almost like the frontend is thinking it is already loaded and will not load it again.  I thought maybe I need to do a "flush" or some such - but that didn't seem to solve it.  Has anyone seen this and resolved it or knows what this is?  The thing is...I can completely exit out of the program - and the flash object will load just fine (but only after I wait a minute or so).  What gives...anyone know?
    Thanks in advance,
    Matt

    Am using:  ECC 6.0 and ABAP SAPGUI development
    Hi All,
    I'm seeing a frustrating issue that i'm hoping others have seen and resolved.
    Here is what i'm attempting and below that is the issue:
    1)  I have created a ABAP program in which i'm using the HTML viewer (class:  cl_gui_html_viewer ) within a container that is on one of my ABAP screens.
    2)  I load up a web page on our (intra)network that displays an HTML page that has a nice FLASH navigation object.  This navigation object operates as such - when a node is clicked it will go to another html page (on the same network) that will then parse apart what node they clicked on and via javascript submit a form in which I've defined a SAPEVENT for.
    3)  My ABAP program has defined the event handler for this sap event and calls the appropriate method just fine (ON_SAPEVENT).  I am able to trap the event details and do some other things.
    This is all working just fine, except....I want it to then go back to the first page (original page) that contained the FLASH navigation on it upon after the page that trapped the SAPEVENT is complete automatically.  Easy? - that's what I thought...I tried several different ways to do this "go_back" on the html control, "show_url" (with the original URL)...even a redirect in the actual html page itself to go back.
    They all DO go back to the first page, however my flash navigation object on that page NEVER shows up!  It's almost like the frontend is thinking it is already loaded and will not load it again.  I thought maybe I need to do a "flush" or some such - but that didn't seem to solve it.  Has anyone seen this and resolved it or knows what this is?  The thing is...I can completely exit out of the program - and the flash object will load just fine (but only after I wait a minute or so).  What gives...anyone know?
    Thanks in advance,
    Matt

  • Flash objects not displaying in Firefox (but works fine in Chrome and IE)

    Well, I'm trying to embed a Shockwave Flash object into a website I'm building. It displays in Chrome and IE, but it doesn't show up at all in Firefox. It's just white space. Ive tried it on two machines, so it's presumably the code. Both the machines have Adobe Flash enabled... I'm not sure what the problem is. I've not worked with embedding Flash objects in HTML before, so, it's probably something really obvious. I just used the insert command on dreamweaver and it wrote the code that I'm using. If anyone can help me, it would be much appreciated. Here's my code:
    <pre><nowiki><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="99%" height="600" id="FlashID">
    <param name="movie" value="The file path" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.0" />
    <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="../Scripts/expressInstall.swf" />
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="the file path" width="99%" height="76.5%">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.0" />
    <param name="expressinstall" value="../Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]--></nowiki></pre>

    If you can't post an address for a page demonstrating the problem, could you check the Web Console (Ctrl+Shift+k) and Browser Console (Ctrl+Shift+j) for any messages related to the Flash media? For example, does either console show that Firefox is requesting the SWF file? Does either show an error in content type or any kind of security message?

  • Problem Viewing Flash Object in IE

    I have been managing my wife's website. She had someone design it, then the guy stopped responding, so I took over. Im somewhat of a beginner, so I cant figure this one out, and have looked online for resolutions. There are two pages on her site that have flash objects. When you go to either page in IE, you get an error : Content on this page requires a newer version of Adobe Flash Player. It then gives you a link to update, which lets you update, but then doesnt resolve the problem. Like I said, someone else did the basic design, so im not sure where they went wrong.
    The two pages are:
    http://www.karabakerphotography.com/index.html
    and
    http://www.karabakerphotography.com/gallery.html
    The pages work fine in Firefox and Safari. So its only IE that doesnt work. I know differet browsers can use different versions of Flash. I have been using Dreamweaver CS4.
    I have not spoken with anyone who can view it using IE. Everyone that uses IE has mentioned the problem to me.
    Any help would be greatly appreciated. If you need any further info from me, just let me know.

    Do the flash communicate with files which is outside of the sitedomain?

  • Firefox shrinks flash objects if dynamically written from javascript but not if static in html

    firefox shrinks flash objects if the code for the and are written to the page via document.write() in javascript during page load. The object is rendered correctly if the same and are tags in the html document.
    == This happened ==
    Every time Firefox opened
    == tried to dynamicly write object and embed via javascript

    Hi Tom,
    This looks like a real bug. The problem is this forum is for end user support.
    Please report this issue at http://bugzilla.mozilla.org, and be sure to search and see if your problem is already known.
    See also https://developer.mozilla.org/en/Bug_writing_guidelines

  • How to read a local file using as3 in a flash object in HTML? [urgent]

    My web site contains a flash object.
    I want to use as3 to read some local .txt file
    by getting the user directory of the file.
    i know AIR can support this by sth like:
    File.desktopDirectory.resolvePath
    but when i open a AIR file for this, it seems
    the action cant be run when i embed it in html.
    And i tried to use the above function in a normal
    flash file in the action script.
    But it cant recognize the File. class..
    How can it be done ?
    It's reli urgent,
    please help...
    Thanks !

    a web based flash app can't detect user directories.  you can use the filereference class'es browse method to let the user locate a file in any directory the user wants.  flash can then retrieve the file's name and type.  but, as mentioned before,  flash can't determine the file's directory.

  • Embedded application/x-shockwave-flash objects will not display

    4.0b9 on Windows XP
    I just get a white section where a shockwave flash object should be, and in all the occurences I've found it's when the flash object is embedded. Youtube works just fine, though...
    In the "white section" I can right-click and get the options for Adobe Flash Player 10, but I cannot actually choose any of the menu options.
    In some cases, I can choose to display the flash object in another tab, and then it works just fine. Typically an embedded youtube movie clip acts like that that, but not always.
    In an example, I see only a white section where the shockwave flash object should be visible in Pichfork TV - http://pitchfork.com/tv/
    When I open the page information, in the media section, list of URL's, I find an URL that is both grey and italic, and describes this URL as type Embedded:
    URL - http://pitchfork-cdn.s3.amazonaws.com/player/DelveMoviePlayer.swf
    Type - application/x-shockwave-flash
    I assume this URL is grey and italic because it is not loaded or opened in the pitchfork TV site.
    This is the same problem with most embedded flash objects, and I really hope someone can help me! I've browsed aroud the support forums and tried a lot of different tips, but to no avail.
    I have of course uninstalled and reinstalled both flash player and shockwave from adobe's site, and made sure it's not the active-x version for IE that's installed.
    My add-in manager claims that Shockwave Flash 10.1 r102 is installed and enabled, and the release is the latest available according to adobe.com.
    I have also tried to open FF in secure/private mode, but same problem in both modes.
    Just to check, I tried to open this site with IE8, and there it displays correctly (and I also remembered why I don't ever use IE8, haha...), so apparently the active-x part of shockwave/flash works...
    BR, Torgeir

    OK, so now I've tried again to open FF in safe mode again, but the problem is still unsolved. Same problem in safe mode.
    The hardware acceleration in the flash player is set to disabled long before I posted this problem.
    I didn't know that Pitchfork had such a special flash player, but the problem is the same on any sites. Just chose Pitchfork because it's an English site. Bad example then...
    Here's a better example: NME.com:
    http://www.nme.com/musicvideos/my-chemical-romance-sing/832454
    Here I only see a white space where the flash object is embedded (if it really IS embedded, I dont't know how these things work). But I can right-click and get the dialog for Adobe Flash Player 10 properties (such as settings and global settings), and if I'm lucky to hit the start button (wich I don't see), the flash object starts playing, and I hear all sound but see no image.
    I open the page info menu, and here I find in the list of media URL's the link to the flash object, described as an embedded object in the NME site:
    URL: http://www.muzu.tv/player/getPlayer/a/RSFVcmvHJ4/autostart=n&includeAll=y&soundoff=n&vidId=832454&videotype=hq
    Type: application/x-shockwave-flash
    It's grey and italic in the list of media URL's, and I assume that's because it's not properly loaded.
    But if I copy the URL from the media URL list and paste it into the adress field of a new tab, I can both see and hear the flash object without a problem.
    This is exactly the same issue with local sites that have embedded web radio stations. Cant see the object, and have to be quite lucky to hit the start button. But by stepping via info for site and copy the URL to the flash object and paste it into a new, empty tab, I can both see and hear whatever was supposed to display in the original site.
    Any help would be more than welcome! So many of the sites I use most has embedded flash objects, so if I cannot solve this I have to find another browser. I REALLY don't want to, because otherwise I really love FF...

  • Display PDF itab in HTML viewer w/o file

    Hello!
    If I download PDF internal table (for example, converted from spool) to file, I can easily display it in a CL_GUI_HTML_VIEWER control. Is there a way to pass PDF data directly to HTML viewer, without using intermediate file?
    Thanks!
    Kind regards,
    Igor Barbaric

    You need to use the following methods of htmlviewer class
    call method l_html_control->load_data
        exporting
          type                 = 'text'
          subtype              = 'html'
        importing
          assigned_url         = l_url
        changing
          data_table           = l_new_html_page
        exceptions
          others               = 4.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                   with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      call method l_html_control->show_data
        exporting
          url                  = l_url
        exceptions
          others                 = 3.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                   with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    l_new_html_page will hold the PDF data and also
    type                 = 'text'
          subtype              = 'html'
    has to maintained for PDF.
    I havent tried this but it should work.
    Regards
    Raja

  • Print Preview in Safari for Windows does not display Flash object

    I have a web page with images, text and a flash movie in several divs. I can see all the objects on the page but when I print preview the flash object is not displayed. The same problem occurs in Firefox 3 but not in IE6/7 or Opera9.5
    Any clues/help would be greatly appreciated.

    Click Help -> Report Bugs to Apple.
    I'm hoping they fix it.

  • Web flash galleries display photos in LR4.2 but html galleries don't

    Web flash galleries display photos in LR4.2 but html galleries don't.
    I get a black screen with "Loading" instead. And the loading never ends.
    Help? Thank you

    Some galleries are displayed via JavaScript, so if they aren't working the make sure that you aren't blocking JavaScript.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).<br />
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load

  • Flash objects (images/buttons/etc) does not display on some PC's

    I am trying to deploy an out of the box web application called the Mid-Tier, where some forms/pages in the application have embedded flash images/buttons/icons that do not display on IE despite the fact that there is Flash installed on these PC's. Most of the PC's are XP.
    I suspect it is some of the security settings in IE. Unfortunately security options are disabled to end users so I cannot even get to see what these settings are..
    This web application works perfect on some test PC's that have default browser settings and the same flash version installed.
    The flash objects appear on these screens as white boxes instead of some control buttons and icons that should have been displayed.,. Hence these pages are non functional.
    Any hints?
    Joe

    Hello David,
    except the latest Flash Player you have also and the latest Java installed (Next Generation Java Plug-in 10.25.2 for Mozilla browsers) , check if you activate the plugins : [https://support.mozilla.org/el/kb/troubleshoot-issues-with-plugins-fix-problems#w_determining-if-a-plugin-is-the-problem Determining if a plugin is the problem], select always active.
    see also: [https://support.mozilla.org/en-US/kb/why-do-i-have-click-activate-plugins#os=win7&browser=fx23 Why do I have to click to activate plugins?]
    you said : ''One guy said you could fix it by going Tools > options > content > make sure Automatically load images is checked (but there is no such thing on that tab in my Firefox????)''
    not exist any more from 23.0 version and above (see : http://www.mozilla.org/en-US/firefox/23.0/releasenotes/) because of this : http://limi.net/checkboxes-that-kill , if you 1 (as a value) in '''permissions.default.image''' in [http://kb.mozillazine.org/About:config about:config] you are OK (checked[v]).
    also many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • RH8 - HTML Design view is not displaying what the HTML specifies.

    I recently edited a template (Master page) that includes tables. Now the design view of the master page does not correctly display the HTML for that page
    and the design view of each page that uses that Master Page displays blank tables. The HTML view includes the content, but the design view does not.

    I understand the use of Master Pages. The topics were already associated with the Master page that included tables and the
    Design view displayed the content perfectly. It wasn't until I edited the color of the cell borders in the Master page that everything went haywire.
    As it is now, the design view is completely unusable for me. This adds a layer of inconvenience that is time consuming. I'm just trying to get the design view back to what it was earlier today.

Maybe you are looking for