HTML tag place over QuickTime

Is there a way to place a HTML tag (i.e. div) over QuickTime? I have a drop down menu that is hiding behind QuickTime. The div tag that QuickTime is contained displays underneath the menu. Formerly, I could use wmode="transparent", but that no longer works. I have tried using the z-index, but this has also not worked.

What you posted was (or was interpreted by this forum as) this:
Here is the tag:<br />
<img then src="then" ”URL”><br />
<br />
This tag does not work
I don't know what format eBay accepts, but your image can be displayed in these forums using this code:
<IMG SRC="/___sbsstatic___/migration-images/105/10540553-1.gif"/>
...which is displayed like this:
And if you need to scale it down, try this:
<IMG SRC="/___sbsstatic___/migration-images/105/10540553-1.gif" HR WIDTH="50%"/>
eBay may also accept hyperlinked images using this format:
<A HREF="http://www.bcoutback.com" target="_blank"><IMG SRC="/___sbsstatic___/migration-images/105/10540553-1.gif" title=" Will open in new window "/></A>
By the way, if you need to post HTML in these forums such that it is not interpreted, "escape" the HTML first via this site:
http://www.htmlescape.net/htmlescape_tool.html
And before posting images or escaped HTML in these forums, switch from Compose mode to Preview mode to verify that it displays as intended.

Similar Messages

  • Re: More control over html tags needed

    I have trying for a while to find an elegant solution to printing reports in such a way as to have headers and footers repeated on every printed page.
    <BR><BR><BR>
    The two main solutions seem to be either using PDF (using FOP) or controlling the size of the regions anually (by hardcoding heights etc.). I am confident that with more control over the html tags (or the ability to place my own) around certain areas the problem could be solved very simply with CSS.
    <BR><BR><BR>
    What I would like is a way to change the way that Apex treats table headers.
    <BR><BR><BR>
    Presently it places the headers within a tbody tag and the uses th for every column. Ideally I would like to see this changes from tbody to thead. Given that the chances of this happening in the near future are minimal (not something that I am upset about as it would not be logical to change such things every time someone wants things to suite them better), I would like to be able to place a tag either before or after the tbody tag.
    <BR><BR><BR>
    Something like:
    <BR><BR><BR>
    div id="tableheaders"
    <BR><BR><BR>
    If anyone knows how to do this your help will be greatly appreciated. Given that, printing repeated headings can be controlled relatively simply.

    Hello Andrew,
    I believe the following might be of help - placing <thead> and </thead> around headers
    Regards,
    Arie.

  • Unable to handle html tags in BI publisher trial edition

    Hi,
    I am very new to BI publisher and having issues reading rich text field from database and reading into the report.
    BI Publisher - 11.1.1.6 trial edition
    test case: I have a rich text field that stores html tags in the database. I have created a data model using sql query and am selecting rich text field from the database. When trying to display that field on the report in BI publisher I get the html tags.
    I even tried Tim Dexter solution mentioned in the below blog but now when I run the report nothing shows up for that rich text field in the report. I am not sure if I am missing any steps while using html2fo.
    https://blogs.oracle.com/xmlpublisher/entry/html_in_xml_support
    Please help since I am struggling with this for past few days. Also below is the sample xml data where element "PROJECT_DETAILS" is the rich text field.
    Thanks,
    Saurabh.
    <G_2>
    <EMPLID_1>0001</EMPLID_1>
    <PROJECT_DETAILS><![CDATA[<p class="Resume-JobSum">Managed and led twenty members technical team to successfully complete development on time. Took over management of behind schedule development and provided direction and discipline to complete development cycle on time.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:.5in;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Improved delivery by prioritizing development items.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:.5in;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Improved efficiency by removing dependencies and delegating work.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:.5in;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Improved cost management by controlling over time hours on the team.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:.5in;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Provided infrastructure planning for support and future phases.</p> <p class="Resume-ExperienceBullets" style="margin-left:43.0pt;text-indent:-.25in;mso-list:l0 level1 lfo1;tab-stops:27.0pt;"><span style="font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family: Symbol;">·<span style="font-size: 7pt;font-family: 'Times New Roman';">         </span></span>Planned and Managed change management and migration process.</p><p></p>]]></PROJECT_DETAILS>

    are u using an RTF template?
    u need to use
    <?html2fo: COLUMN_NAME?>
    instead of <?COLUMN_NAME?> in the RTF template
    http://docs.oracle.com/cd/E23943_01/bi.1111/e22254/create_rtf_tmpl.htm#CHDCEEIJ
    Edited by: anupma.s on Feb 21, 2013 11:12 AM

  • Help with HTML tags and web page creating

    I have a project that is supposed to use an HTML class we make. He has given us the basics but we have to fill it in. My question is: How do you code a value that has been passed to a method into an html tag. For instance we have one that is called makeEmail and it is supposed to place an email address on a webpage. Here is the method, I just need to figure out how to code it correctly. Any suggestions on how to do this?
    public void makeEmail(String address)
    webPage += "" + address + "";
    }

    An email tag in html is very similar to a hyperlink. The string you want the makeEmail method to create is as follows:
    <a href="mailto:(email address")>(email address or description or whatevber you want displayed on screen)</a>So using for example my email address, you use the following line:
    <a href="mailto:[email protected]">Send an email to Mr_Silly</a>It is very much worth looking into an html tutorial, try searching for one on the web, cos there a thousands out there. It is a very simple language to learn.
    :-)

  • HTML tags showing up in the pages also in 2.0?

    Hi,
    After a 5 minutes test of our application after an upgrade to 2.0 I found 3 places where html tags is showing in the bottom of the page. Normally it’s a html tag that is not getting closed. The examples look like this:
    &#60;/
    &#60;INPUT TYPE="hidden" NAME="p_min_row" VALUE
    &#60;script language="JavaScript1.1" type="text/javascript"
    We have been telling the customer that these problems would disappear with the new version, but it have not. I know that we were not the only ones with these problems on 1.6. How are you dealing with this? I can not imagine what our customer is going to say when we tell them that we can’t use htmldb for the project, especially since we were the ones pushing htmldb.
    In release 1.6 the problems were normally only in Internet Explorer and not in Mozilla. I have not been able to check on 2.0, because since the upgrade it is only possible to logon using Internet Explorer. Mozilla gives a script error. :-)

    Hello,
    I have a feeling all your problems are related take a look at this thread. I found it in 10 seconds of searching the forum.
    strange tags
    It's always best to do a quick search first most likely you are not the first person to have this problem.
    Carl

  • TFS 2012 - WI Query in TFS Web Access - History field contents appear with html tags presented as text

    When History field is selected as a column to be displayed in a WI query result, its contents are displayed with the HTML tags as if they where text, e.g. <p> contents </p>... 
    This occurs when query is run in web access contents in IE and when result is sent via email from within TFS (there's a button for this purpose).
    However, in Visual Studio 2012 the same History Column contents are shown without the tags, as one would expect.
    Furthermore, when one clicks on Open In Microsoft Office, for this query results in VS, and selects result in Excel, the History column in the Excel appears empty.
    The only way we found to bypass this issue for now, it to mark all the query result lines in VS, and right click for "print selected list..." to a virtual PDF printer. This way the result looks reasonably ok when History field is included.
    Kindly advise, Thank u very much.

    Hi Moital,  
    Thanks for your post.
    As far as I know history content will display with the HTML tags if there’s multiple lines in content, and History content not support show in Excel, that’s by design in TFS Server.  
    As Clementino said, you can submit this scenario in connect site, Microsoft engineers will evaluate them seriously. 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Using html tag in jsp

    hi
    i want to get a menu......something like what we have in the top of this page......but vertically....using a html tag.....
    on-mouse-over, each item opens up a list of hrefs.....

    Hi Gaurav,
    As in the previous post u cannot get the menu using an html tags and CSS. It is generally written in Java script and DHTML. Just do a google search and u can find a lot of js menus...
    -Bala

  • Best way to format text: HTML tags or CSS?

    Probably a silly question, but...  I can format the text within a div using CSS Styles (Font-size, Font-Style, Font-Weight, etc.) or by applying an HTML tag, such as <H1>. (Or, I guess a combination where I use CSS to format the tag, but let's skip that one for now.)
    In general, is one approach better than the other? Thanks!

    +1 Nancy. The specific tags exist today simply because of the meaning it adds to your site at the backend - especially for search engines to understand what's going on with your site. And since search engines dont 'see' your page, but 'read' your code, these tags are the only hope for them to figure out what your site contains and how to place it on their results.
    On a sidenote, the first method of using inline styles is time-consuming and results in larger filesizes since you'll end up doing it for each div tag. The second method is much simpler as you can style each individual tag in CSS and re-use them anywhere you want on your site.

  • Smartform with text containing html tags

    I am reading from a table that contains html tags like
    <br>
    <menu>
    <LI type="disc">This is a line which contains html tags
    that goes over to 2nd line
    <LI type="disc"> This is also another line which contains html
    tags.
    and each line is stored in a different row. The customer has agreed to use only 3 of the above html tags (
    <br>, <menu> and <LI type="disc">
    When the output is previewed in smartforms, the html tags needs to be formatted and not print in raw format as follows: 
    <LI type="disc">This is a line which contains html tags
       that goes over to 2nd line
    <LI type="disc"> This is also another line which contains html
       tags.
    How can this be done ?

    ok understood...
    you can try this
    Loop at i_html into wa_html.
    tmp = strlen( wa_html-line).
    do tmp times.
    if wa_html-line+0(1) = <
    l_start = 1.
    __elseif wa_html-line+0(1) = >
    l_start = 0.
    concatenate l_char wa_html-line+0(1) into l_char.
    endif.
    if l_start = 1.
    concatenate l_char wa_html-line+0(1) into l_char.
    wa_html-line = wa_html-line+1(l_tmp - sy-index) OR use the keyword SHIFT LEFT...plz chk the syntax
    elseif l_start = 0 and l_char = <LItype=disc>
    concatenate <BULLET>  wa_html-line into  wa_html-line separated by space.
    endif.
    enddo.
    modify i_html form wa_html.
    endloop.
    now u define two text element one with bullet and another without bullet. this is how u insert bullet:
    goto to the texteditor of a text element in smartform. Its a small button on the left hand side of.
    Then goto insert>characters>sap symbols.
    for ur requirement u can use the symbol SYM_FILLED_CIRCLE.
    Remember these icons or symbols whatever u will not be able to see in print preview....u have to take a print
    and see
    Now at the time of display check if the line contains the
    tag <BULLET> ( if wa_html-line+0(8) = '<BULLET>')
    if the line has the tag then display ur text in the text element with bullet
    otherwise
    display it in the non bullet text element..
    remeber to remove the tag before dispalying
    hope this solves ur prob...

  • HTML Tags in the Webdynpro ABAP

    Hi Experts,
                    How to create a html page in the webdynpro ABAP, we have existing page in the HTML format. I have tried the Formatted Text View it is not supporting all existing HTML tags like <table>
    .Can u suggest me how to integrate the HTML in the Application ...

    As you stated, the SAP recommendation is to not use iFrames.  That UI element is depricated.  The recommended solution is to use the NetWeaver Portal or NetWeaver Business Client.  You create two iViews and place them both in the same page if you need to mix Web Dynpro with more free form HTML coding.  The one iView can be Web Dynpro and the other can be one of many types of technologies (static HTML, BSP, JSP, JSF, ASP.NET, etc).  You can use portal eventing to communicate between these two separete iViews if needed.

  • Replace HTML tags within column values

    Hi Gurus,
    I have a requirement where I have some text which has HTML tags inserted within it and I need to insert either Presentation variable or a GO URL replacing that tag. Problem is that this text is value of a column from table. It is not something which I type( because the text can change dynamically). e.g
    Column header:  Main Text
    Row1:            <<COMPANY_NAME>>
    Row2:           As of <<AF_OF_DATE>>
    instead of <<COMPANY_NAME>> and <<AS_OF_DATE>>, I need to insert amounts from another table which have this unique tags and associated amounts. Can this be done?
    I have to these columns in different places throughout the report in narrative views. e.g
    1st narrative view will have only column 1 and row 1 and row 2.. 2nd narrative view will have only column 3 and row1...
    This is really really important part of a report. So please help me out with ideas.
    Thanks,
    Dan

    I tried calling the column in a narrative view and the result looks like :
    As of <<AS_OF_DATE>>. how can I replace "<<AS_OF_DATE>>" with a value?

  • Showing HTML tags in JList

    Hello
    My problem is quite simple but have not found any answer so far... I have a JList component where I store the contents of a file (one text line corresponds to a JList entry). Everything works fine, except when I have a line with HTML tags, since these are not made visible inside the JList entry. For example: if a file has a "<HTML><Body>example" line, then the JList entry displays just "example" instead of the full line. Any way to disable this HTML rendering and presenting only the raw text?
    Thank you!

    Fudge: prepend a space to each String that you place
    in the list, or munge the string in some other way
    that it looks similar/identical but prevents JLabel
    thinking it's HTML
    Proper fix: implement ListCellRenderer to return an
    overridden JLabel which doesn't implement a
    half-assed interpretation of HTML, or another
    component - JTextArea might workOr, in the renderer call:
    putClientProperty("html.disable", Boolean.TRUE);See:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4652898

  • Struts bean/html tag problem

    i am writing this url_element on screen
    <bean:write name="url_element"/>
    then i got a link
    <html:link action="urlDetail.do?url=???">aaa</html:link>
    how can i transfer the url_element into ??? do i need to write something like <%...%>?

    just found the solution:
    You can't use a <bean:write> tag inside an <html:link> tag. Struts doesn't support it.
    The easiest way to fix this is to abandon use of <html:link> and just use the plain old html tags <a></a>. Then you will have no problem substituting parameters with <bean:write> tags.
    The only advantage <html:link> has over the plain html tag is that it automatically does URL rewriting (Adding of the jsessionid to the URL so that sessions may be tracked even if the user has turned cookies off). If you're not using this function anyway, as most modern websites don't, you may as well use the html tag.
    If you still want to use <html:link>, use the struts-el version of the html tags and use EL expressions instead of <bean:write> tags.

  • Handle invalid html tag in the htmlText

    Hello,
    I"ve a <mx:text control which takes html text, it is a chat application, so, the client will simply concatinate the text comming through the network. But if the html text has invalid tags, it does not show the rest of the chat messages.
    I get something like
    <a href="http://google.com&quot;">http://google.com<a>
    here the red text is creating problems.
    P:S: you might want to say, handle it when sending from other client, but, we are dealing with legacy data, which has a lot of html format issues.

    Thanks for responding
    I understand that adding more HTML tags will change the font size. What I don't get is why it changed from one size to another by adding a HTML tag in the first place. I figured that it should have retained the same size it was without the tag when I added the tag. If I had added a font tag I would have excpected the font to change size but I added  a href.
    Sorry for the confusion.

  • Oracle function to strip HTML tags in data

    Hi, may I know if there is any oracle function that can strip HTML tags from the data? I am currently using Oracle 9i. Therefore is unable to use the RegExp_Replace functionality provided by Oracle 10g.
    Any help will be appreciated.
    Thanks a lot!

    I found this function:
    function str_html ( line in varchar2 ) return
    varchar2 is
    x varchar2(32767) := null;Let's hope whoever uses this doesn't want to deal with large XML's.
    This question would have been better asked over in the XDB forum. All depends whether there is a schema available to describe the XML, what version of the database etc. With a schema, the schema could be registered into the Oracle 10g database and that used to create relational tables automatically, from where you can load in the XML files. Loads of information available on the XDB forum, most likely in the FAQ's on there.

Maybe you are looking for

  • Adding data to a specific row in excel

    Hi there,                     I have problems with my data collection from serial read block. I get every time 16 bytes when I write certain command to my serial device. But after a continuous data written to excel, that is let say six rows of data a

  • Hardware Issue

    1. Product name HP Pavilion DV7 #XW899AV 2. Windows 7 64bit The problem that I am having is this, anytime i move the computer:    oWireless hardwire switch light turns orange    o The top functions keys ie volume up/down brightness, stop working    o

  • How do I remove video effect from maps?

    I changed the video effect on my maps using the inspector, I did not like what I selected. I went back into the inspector to change to another video effect. Thew inspector shows I changed it, however when I play back the clip, the old video effect is

  • COPA datasource - Infoobject identification / automatic generation

    Hi, I have generated COPA data source in R/3, replicated in on BW side and now I'm trying to map fields to infoobjects (+undestand which ones are key fields for the staging DSO). Data source is deplicated as 7.0 one. My planned flow is: data source -

  • Updated to 6.1.2 now Wi-Fi won't work

    I have an iPad 2.  I just updated to 6.1.2 and now my home Wi-Fi no longer works.  It DID work before. The Wi-Fi DOES work at other locations, just not at my home any more.  When I try to connect to my home Wi-Fi, it asks for my password.  When I ent