Adding html to a page

I'm uploading a website to my own domain. It is a partially commercial site, and I have applied for, and received acceptance to the Amazon.com Associate program. They supply the html.
HOW the heck do I add that to my page(s) without having to manually add it to the page, (which, when you save or update your pages, and republish "to a folder", the html disappears and you have to add it manually again.

Well, the answer is that you currently have to add it manually unless you consider using something like iWebEnhancer or MassReplaceIt. In any case you will still need to "post-process" your html files after iWeb has published them depending on how often your pages actually change.
If you are interested or in need of instructions on adding the html manually, here is a link...
http://discussions.apple.com/message.jspa?messageID=2446855#2446855
Let me know if this is helpful to you by clicking the "solved" or "helpful" buttons in the title bar of this reply.
==> www.DirtDoog.com <==</a>
Place A Virtual Pin On Putt-Putt's GuestMap!

Similar Messages

  • Adding HTML code corrupts (and destroys) site

    I was informed by Apple support that iWeb does not support adding HTML to your page (even though I did so in the Forms widget), and that the code corrupted my page (causing all kinds of font issues, blurry images, and wacky layout errors). They said I would have to rebuild the page from scratch (I have already spent hours building an intensive website that is now useless). I am skeptical that all these iWeb problems (font changes, wrong colors, layout chaos, blurry fonts, etc.) are caused by HTML code, so if anyone has any more info I would appreciate it. I am ready to throw iWeb in the garbage and go back to Dreamweaver MX!!! Thanks.

    not totally comfortable posting links to the site (its a business site and not mine)... if you search around for iWeb problems you will find many people having the same issues... when i tried fixing my original page (after deleting the page with the problematic code) the problems still occurred... when i redid the page completely the problems stopped happening (at least for now)... I was told by the Applecare person that the code had completely infested/corrupted the entire site and that it could not be fixed... that I would have to completely recreate the site again... what doesn't make sense is that such a glaring, fundamental problem on such a basic program goes ignored by such a powerful, inventive, flourishing company... disappointing to see all the issues/bugs that get officially ignored on these forums...

  • Adding BC e-commerce pages to Muse menu.

    Hi there I want to use the menu I created in muse to link to the catalog and products I’ve created in Business Catalyst.
    Muse page - http://infinityshop01.businesscatalyst.com/fittings.html
    Business Catalyst page - http://infinityshop01.businesscatalyst.com/fittings
    Any ideas?

    Hi Tom,
    Depending on how you added the eCommerce.
    If you added the eCommerce to Content Holders instead of directly to the page you might still be able to use the Muse menus but will manually have to enter the menu item as it won't pick it up automatically.
    The only way I could see that it would possibly work is that if you created all your pages 'templates' in Muse and add the {tag_pagecontent} tag to the content area in Muse using the Insert HTML feature. This would create the BC templates that you can then use within BC. It would take extensive Business Catalyst knowledge.
    Unfortunately Muse isn't far enough along yet for nice easy integration.

  • How to Display Page Numbers in ALV Report HTML End of page Event

    hai Gurus
    Greetings
    Please tell me how to get current page noumber and total number of pages in ALV Report (in HTML End of Page Event)
    i tried with sy-pagno system field but it is not working
    so please guide me
    Thanks
    Ramesh

    check below code....
    *Work area for Layout
         gf_layout       type  slis_layout_alv,
    *Work area for HEADER FOOTER    
         gf_header type slis_listheader,
    *Work area for Field catalogue    
         gf_fieldcat     type  slis_fieldcat_alv.
         it_top_page type slis_t_listheader,
    *Internal table for Field catalogue    
         it_fcat      type slis_t_fieldcat_alv.
    perform:fill_layout,
                  prepare_header,
                  field_catlog,
                  display_report.
         Form  fill_layout
    form fill_layout .
      gf_layout-colwidth_optimize = 'X'.
    endform.                    " fill_layout
         Form  field_catlog
    form field_catlog .
      data : lf_fcat type line of slis_t_fieldcat_alv,
             l_cnt type i.
      clear : lf_fcat, l_cnt.
    Employee Number
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'EMPLID'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 8.
      lf_fcat-seltext_l   = text-003.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Last Name
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'USERNAME'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 20.
      lf_fcat-seltext_l   = text-004.
      append lf_fcat to it_fcat.
    *First Name
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'EMPMAIL'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 40.
      lf_fcat-seltext_l   = text-005.
      append lf_fcat to it_fcat.
    *Known As
      clear  lf_fcat.
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'EMPSTATUS'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 10.
      lf_fcat-seltext_l   = text-006.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *System UserID
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'COSTCENTER'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 10.
      lf_fcat-seltext_l   = text-007.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *EMail ID
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'DEPTDESC'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 8.
      lf_fcat-seltext_l   = text-008.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Employment Status
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'LOC'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 20.
      lf_fcat-seltext_l   = text-009.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Personnel Area
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'TITLE'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 40.
      lf_fcat-seltext_l   = text-010.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Personnel Area Text
      clear  lf_fcat.
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'HDATE'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 10.
      lf_fcat-seltext_l   = text-011.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Country Grouping text
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'MGRID'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 10.
      lf_fcat-seltext_l   = text-012.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Cost Center
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'MGRNAME'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 20.
      lf_fcat-seltext_l   = text-013.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Employee Group
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'MGMAIL'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 40.
      lf_fcat-seltext_l   = text-014.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Organizational Unit
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'DIV'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 25.
      lf_fcat-seltext_l   = text-015.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Supervisor
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'BUSUNIT'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 25.
      lf_fcat-seltext_l   = text-016.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    endform.                    " field_catlog
         Form  display_report
    form display_report .
      data : l_repid type sy-repid.
      clear l_repid.
      l_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program          = l_repid
          is_layout                   = gf_layout
          it_fieldcat                 = it_fcat
          i_callback_top_of_page      = 'TOP-OF-PAGE'
        tables
          t_outtab           = it_employee
        exceptions
          program_error      = 1
          others             = 2.
    endform.                    " display_report
         Form  PREPARE_HEADER
    form prepare_header.
      data:l_header1(20),
           l_header2(60).
      data:l_header3(20),
         l_header4(60).
      l_header1       = 'Met Life Census Data'.
      l_header2+40(8) = 'Run Date'.
      write sy-datum to l_header2+50(10).
    header
      gf_header-typ  = 'S'.
      gf_header-key  = l_header1.
      gf_header-info = l_header2.
      append gf_header to it_top_page.
      clear gf_header.
    endform.                    " PREPARE_HEADER
    form top-of-page.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = it_top_page.
    endform.                    "TOP-OF-PAGE
    *& Form end_of_list_html
    output at the end of the list - not in printed output *
    FORM END_OF_LIST_HTML USING END TYPE REF TO CL_DD_DOCUMENT.
    DATA: LS_TEXT TYPE SDYDO_TEXT_ELEMENT,
    L_GRID TYPE REF TO CL_GUI_ALV_GRID,
    F(14) TYPE C VALUE 'SET_ROW_HEIGHT'.
    LS_TEXT+0(20) = 'Total Employees'.
    LS_TEXT+40(10) = g_count.
    CALL METHOD END->ADD_TEXT
    EXPORTING
    TEXT = LS_TEXT
    SAP_EMPHASIS = 'STRONG'.
    *adds new line (start new line)
    CALL METHOD END->NEW_LINE.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    e_grid = l_grid.
    CALL METHOD l_grid->parent->parent->(f)
    EXPORTING
    id = 3
    height = 10.
    ENDFORM.

  • HELP --- Error while adding Portlets to the Page. (WWC-44012)

    Hi all,
    I have a pl/sql portlet. It compiles fine and shows up perfectly in portlet repository. But when i add this to the page, I get following error
    Error while adding Portlets to the Page. (WWC-44012)
    An unexpected error occurred: User-Defined Exception (WWC-43000)
    An unexpected error occurred: User-Defined Exception (WWC-43000)
    An unexpected error occurred: User-Defined Exception (WWC-51004)
    (WWC-00000)
    I checked the portlet specification file (.pks) and body file (.pkb) for any mistakes but they seems fine.
    Does anyone know what can cause this error?
    Any pointers in this regards will be highly appreciated.
    Thanks!!!
    Rajesh

    Rajesh,
    Could you provide some more details about your code? I will try to look into possible causes of the error. One thing you may try is subscribing to the Knowledge Exchange on http://portalcenter.oracle.com. Then you could post your code in your community folder and everyone would be able to test it out.
    Of course, this means you must be willing to share your code with everyone.
    James

  • How to send an entire HTML, PHP dynamic page using phpmail()?

    How to send an entire HTML, PHP dynamic page using phpmail()
    from PHP website, similar to mail this page or send to a friend
    link?

    Hello,
    Please change the mail address
    "info[at]furkids[dot]co[dot]za" from this thread ^^^look above^^^
    to "[email protected]"
    Thank you

  • Getting the HTML of a page.

    I wish I could retrieve as a string the HTML content of a page displayed by a webEngine.
    I know this code works:
    webEngine.getPage().getHtml(webEngine.getMainFrame());
    But getPage() and getMainFrame() are not public.
    What is the "official" way to get the HTML content of a page as a string?

    import javafx.application.Application;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.layout.VBox;
    import javafx.scene.web.WebView;
    import javafx.stage.Stage;
    import org.w3c.dom.Document;
    import org.w3c.dom.Node;
    import org.w3c.dom.ls.DOMImplementationLS;
    import org.w3c.dom.ls.LSSerializer;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    // Getting the HTML of a page. "Getting the HTML of a page"
    public class DocumentPrinter extends Application {
      public static final String CONTENT =
          "<dl>\n" +
          "<dt>Coffee</dt>\n" +
          "<dd>- black hot drink</dd>\n" +
          "<dt>Milk</dt>\n" +
          "<dd>- white cold drink</dd>\n" +
          "</dl>";
      public static void main(String[] args) { launch(args); }
      @Override public void start(Stage primaryStage) {
        // create view with some content in it.
        final WebView view = new WebView();
        view.getEngine().loadContent(CONTENT);
        view.setPrefSize(200, 100);
        // hold a log the view's document.
        final Label documentLabel = new Label();
        // write the document to the document label
        view.getEngine().documentProperty().addListener(new ChangeListener<Document>() {
          @Override public void changed(ObservableValue<? extends Document> observableValue, Document oldValue, Document webViewDocument) {
            try {
              Node originalRoot = webViewDocument.getDocumentElement();
              // copying the document is necessary in this case because the serializer
              // we are using is not realized by the webview document implementation.
              // if you used a different serialization library, perhaps the copy step would not be required.
              // http://stackoverflow.com/questions/5226852/cloning-dom-document-object
              DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
              DocumentBuilder db = dbf.newDocumentBuilder();
              Document copiedDocument = db.newDocument();
              Node copiedRoot = copiedDocument.importNode(originalRoot, true);
              copiedDocument.appendChild(copiedRoot);
              // weird dom api for serialization.
              // http://stackoverflow.com/questions/1219596/how-to-i-output-org-w3c-dom-element-to-string-format-in-java
              DOMImplementationLS domImplLS = (DOMImplementationLS) copiedDocument.getImplementation();
              LSSerializer serializer = domImplLS.createLSSerializer();
              // update the document label with serialized document.
              documentLabel.setText(serializer.writeToString(copiedRoot));
            } catch (ParserConfigurationException e) {
              e.printStackTrace();
        // layout the scene.
        final VBox layout = new VBox(10);
        layout.setStyle("-fx-padding: 10; -fx-background-color: cornsilk");
        layout.getChildren().addAll(
          new Title("Web View"),          view,
          new Title("Original Content"),  new Label(CONTENT),
          new Title("Rendered Document"), documentLabel
        primaryStage.setScene(new Scene(layout, 450, 450));
        primaryStage.show();
      class Title extends Label {
        Title(String titleString) { super(titleString); setStyle("-fx-font-weight: bold;"); }
    }

  • Can we have javascript function in the HTML header of Page 0

    Hello,
    I want to have a javascript function implemented on page zero, Can anyone help me out with this issue.
    Thanks,
    Orton

    There is no HTML Header on Page Zero. The equivalent would be to use the page template.
    It's also possible to place JavaScript in HTML regions on Page Zero, but I wouldn't consider this a good practice. JavaScript is better kept in external files and referenced using the SRC attribute.

  • Write html to adf page?

    Which one component can display html on jsff page?
    I dont know how to write hml document on adf page for example on popup? Html read from database like blob.
    Edited by: user12985010 on 14-Apr-2010 05:02

    Hi,
    the af:outputText can print HTML if you set the escape property to false.
    http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e12419/tagdoc/af_outputText.html
    Note that using an iFrame component is a better choice if all you want to do is to dump HTML onto a page
    Frank
    Edited by: Frank Nimphius on Apr 14, 2010 3:37 PM

  • How to clean the html code multiple pages simultaneously with Dreamweaver or other soft ?

    hello,
    How to clean the html code multiple pages simultaneously with Dreamweaver or other soft ? I have hundreds of pages to clean
    Thanks !

    I would start afresh. I would also use Dreamweaver's template system to make thing a lot easier. Have a look at the following, copy and paste into a new document and view in your favourite browser.
    <!doctype html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
    <link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css" />
    <script type="text/javascript" src="ScriptLibrary/jquery-latest.pack.js"></script>
    <script type="text/javascript" src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
    <style>
    .hline {
        background: url(http://yannick.michelat.free.fr/barre.gif);
        height: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    </style>
    </head>
    <body>
    <div class="container">
        <div class="row">
            <div class="col-xs-7">
                <img alt="" class="img-responsive pull-right" style="margin-top:20px;" src="http://yannick.michelat.free.fr/Calanques.gif" />
            </div>
            <div class="col-xs-5">
                <img alt="" class="img-responsive center-block" style="margin-top: 40px;" src="http://yannick.michelat.free.fr/grandportfolio.gif" />
            </div>
        </div>
        <div class="row hline"></div>
        <div class="row">
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-01.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-02.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-03.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-04.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-05.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-06.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-07.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-08.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-09.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-10.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-11.jpg" alt="" class="img-responsive"></a></div>
            <div class="col-xs-6 col-sm-4 col-md-2"> <a href="#" class="thumbnail"> <img src="http://yannick.michelat.free.fr/vign__CalanquesConseil-12.jpg" alt="" class="img-responsive"></a></div>
        </div>
        <div class="row hline"></div>
    </div>
    </body>
    </html>

  • Adding a New Tab Page in Cprojects 4.0

    Hi
    We have added a new tab page by the method of Global Enhancement to Cproject we are successfull in getting the link in the tab page. But the page we had created thru webdynpro
    is not seen in the tab page it gives a blank page. We are using Cproject 4.0 can u help us.
    regards
    Suresh Nair

    Hi,
    this can be done via  transaction CRMV_SSC.
    Please review SAP help for further information regarding Screen
    Sequence Control under :-
    Screen Sequence Control of the Business Transaction -> Selection of the
    Screen Control Data
    or
    The Screen Sequence Control of the Business Transaction is documented in
    the online documentation under
    - SAP Customer Relationship Management
       - Business Transactions
         - Basic Functions for Business Transactions
           - Screen Sequence Control of the Business Transaction
    Regards, Gerhard

  • Opening HTML file in Pages

    When I open an html file in Pages, I find that some of the text is larger than the size specified in the <style> tags in the original html file. Instead of being 12 point it's 16 point.
    Does anyone know whether this is attributable to Pages and how Pages interprets html?
    If it is due to Pages is there any way to control it so that I don't have to reformat the whole document?
    G4 MDD, 17" Pb   Mac OS X (10.4.5)  

    i can easily reproduce this issue with Firefox 10 and 11.0beta 1.. i filled a bug, you can follow it :)
    * https://bugzilla.mozilla.org/show_bug.cgi?id=722970

  • Loading HTML or PHP page in flash

    Hi,
    I would like someone to tell me if there is a way to load html or php page in flash just like a movieclip without actually navigating from the flash player(by using getURL code). Basically, I am wondering if there is a way to load a html file just like we load movieclips and perform all the functions of html page.
    Thanks,
    Abinash

    No.  Flash can only display html content in textfields and only supports a very limited number of html tags (look up the htmlText property of TextFields).  So to display an html/php file is not possible.

  • Adding Gadgets to portal Page

    Hello Experts,
    Does SAP EP has functionality for adding Gadgets  to portal Page.
    Basically i am looking for similar functionality of iGoogle where users can add required gadgets,
    Any informatin would be great help.
    Thanks & Regards,
    Naidu

    Naidu,
    A similar issue is being discussed here, please have a look.
    /thread/1694187 [original link is broken]
    Regards,
    Sandeep Tudumu
    Edited by: Sandeep Tudumu on May 27, 2010 10:20 PM

  • [svn:osmf:] 16099: Added HTML support for a Banner Region.

    Revision: 16099
    Revision: 16099
    Author:   [email protected]
    Date:     2010-05-13 13:26:58 -0700 (Thu, 13 May 2010)
    Log Message:
    Added HTML support for a Banner Region.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/html-template/index.template.html

    Hello Alex,
    I don't have an answer for you.
    But, can you try to use http://drmtest2.adobe.com:8080/Content/anonymous.f4v with locally hosted OSMF player? This content doens't require user/pass info.
    I'm wondering that Google TV's flash player doesn't support prompt dialog.
    http://drmtest2.adobe.com/AccessPlayer/player.html requires flash player 11. That's why it won't be loaded with flash player 10.x.
    Thanks,
    -- Hiroshi

Maybe you are looking for

  • I need to merge my apple accounts to get proper function of iCloud and iWork apps

    I like so many people now have two apple ids.  Becase I was a mobile me subsriber and I had a itunes account.  The migration from me.com to icloud.com created another apple id.  So if I want my apps and music i have purchased over years i have to use

  • How to connect to my router through airport

    I can connect to my router configuration page when i use a direct ethernet connection, and use 192.168.1.1 in Safari. However, does any one know how i access this page when the router is plugged into my airport base station, and i am wirelessly conne

  • How can I get iCloud to work on my IMac?

    I have an IMac, iPhone and now a MacBook. I have iCloud working on my MacBook and iPhone. How can I get it to work on my iMac 27" Both computers have Lion for the OS. Blessings...

  • Unable to do ANYTHING with new Flash Player Update

    I have been pulling my hair out trying to get Flash Player 10.3 to work on my Windows 64-bit OS with the latest version of IE 9.  It worked fine until the June 28th update and then nothing.  I have been working on all the recommendations from the tro

  • State Pattern throwing exceptions

    I've seen the state pattern applied to a situation where I am not sure if a state pattern applies. Can you please tell me if the state pattern is good for this situation? It is that only a few operations can be called for a certain state. If you call