Including HTML pages

Hi there. I'm new to Flash but I've been working on a website
that came from a Flash template. Half of the pages are in Flash,
the other half are HTML (done in Dreamweaver). Is there some way I
can call out to the HTML pages and include them into the Flash
site? Most of Flash site is static with the main design and menus
remaining the same, but the link content changes.
Thanks so much, and my apologies if this is an idiot-simple
question!

hi Prajakta Khobaragade,
   I was trying to include the html file in WDJ application which is developed in NWDS 7.1.but its show error,Kindly see the screen shot.

Similar Messages

  • How to include html page or html code in adobeflex 4 web application please give me a solution.

                     How to include html page or html code in adobeflex 4 web application please give me a solution.
                       Thank you
                       Chandra Sekhar

    hi,
    go thru this link, may be of some help for you
    About IFrames
    http://www.deitte.com/archives/2006/08/finally_updated.htm
    IFrame Src
    http://code.google.com/p/flex-iframe/
    About the IFrame Approach
    http://www.deitte.com/archives/2008/07/dont_use_iframe.htm

  • How to include HTML page on a screen

    Hi,
      How to include HTML page on a module-pool screen. i want to handle hyperlinks on that page. how ca n i do that?....plz send me reply vvvery fast

    Hi Amarnath,
    1. RSDEMO_HTML_VIEWER
       Check the above program.
    Regards,
    Amit M.

  • Including Html Pages in Web Dynpro java

    hello Experts,
    _i want to include html page in webDynpro java view so i need to know_
    1)where we need to include the html file
    2)should i creat it externally and then include
    3)or is there any specific place in project to include the HTML code.
    4)also can u tell how to include a vidio in html page i got some tutorial but with that its not working fine saying check specified path....
    <div style ="height:1500;width:1500 align=right">
    <video width="320" height="240" controls="controls">
    <source src="movie1.avi" type="video/avi" />
    <object data="movie1.avi">
    <embed src ="movie1.avi">
    </embed>
    </object>
    </video>
    Please HELP

    hi Prajakta Khobaragade,
       I was trying to include the html file in WDJ application which is developed in NWDS 7.1.but its show error,Kindly see the screen shot.

  • Include HTML page in an HTML page

    I know how to do an include of an HTML page inside an ASP
    page, but I am basically trying to do the same thing with an HTML
    page - that is include HTML within HTML - but it doesn't seem to be
    working when I test in a browser. It displays fine in DW though!
    The only way to successfully create an include in HTML pages
    seems to be to use the library method.
    Here is my include code:
    <!--#include file="../_includes/footer.html" -->
    Is this wrong for an HTML page?
    Thanks
    Mat

    Is the parent file named with an *.shtm(l) extension?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "matthew stuart" <[email protected]> wrote
    in message
    news:g7hd6v$e53$[email protected]..
    >I know how to do an include of an HTML page inside an ASP
    page, but I am
    > basically trying to do the same thing with an HTML page
    - that is include
    > HTML
    > within HTML - but it doesn't seem to be working when I
    test in a browser.
    > It
    > displays fine in DW though!
    >
    > The only way to successfully create an include in HTML
    pages seems to be
    > to
    > use the library method.
    >
    > Here is my include code:
    >
    > <!--#include file="../_includes/footer.html" -->
    >
    > Is this wrong for an HTML page?
    >
    > Thanks
    >
    > Mat
    >

  • Include html page in htmldb application

    Hi,
    How to include an html page in htmldb application?? I have an external html page and I want to include it in my HTMLDB application.
    tks

    Is the parent file named with an *.shtm(l) extension?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "matthew stuart" <[email protected]> wrote
    in message
    news:g7hd6v$e53$[email protected]..
    >I know how to do an include of an HTML page inside an ASP
    page, but I am
    > basically trying to do the same thing with an HTML page
    - that is include
    > HTML
    > within HTML - but it doesn't seem to be working when I
    test in a browser.
    > It
    > displays fine in DW though!
    >
    > The only way to successfully create an include in HTML
    pages seems to be
    > to
    > use the library method.
    >
    > Here is my include code:
    >
    > <!--#include file="../_includes/footer.html" -->
    >
    > Is this wrong for an HTML page?
    >
    > Thanks
    >
    > Mat
    >

  • Jspx including html page rendering problem

    Hello,
    I have an jspx including an html page by
    <f:verbatim>
    <jsp:include page="/mypage.html"/>
    </f:verbatim>
    When running the jspx, Hyperlinks aren't rendered - everything else (text, pictures...) is! (browser-independed)
    Has anyone an idea what's going wrong there and how to solve this problem?
    Thank you very much!
    Sebastian

    Thank you! The problem was another:
    The links were rendered, but with no color! :-( On some reason, I explicitly have to set the color of a link to get it shown! Don't know why! If I open the included page standalone, everything is there.

  • Include html pages with various langs in a jsp page

    Hi
    I build an internationalized web site with struts... it works great.
    My problem is that i think it is not practical to use <bean:message ...> for large text pages (like "Terms of Use" page) - think of the problematic text value size of the attribute in the properties file...
    So i build a "wrapper jsp" that include the correct html according to the user language, here it is://suppose i have terms_en.html, terms_ru.html, terms_iw.html files...
    <%@ page contentType="text/html;charset=UTF-8" import="java.util.Locale,org.apache.struts.Globals" %>
    <%     String p=request.getParameter("page");  //page=terms
         String lang=((Locale)session.getAttribute(Globals.LOCALE_KEY)).getLanguage();
         String path="/"+p+"_"+lang+".html";
    %>
    <html:html locale="true">
    <head>
         <html:base />
         <META http-equiv="Content-Type" content="text/html;charset=UTF-8">
    </head>
    <body dir="<bean:message key="dir" />">
    <jsp:include page="<%=path%>" flush="false" />
    </body>
    </html:html>Now, it works just fine with english and my default locale, i.e the locale defined in the "Regional Settings" at the control panel. other languages are displayed incorrectly and if i want to see a language correctly then i have to change the default locale in the "Regional Settings" at the control panel.
    Is there any way to solve my problem?
    I'm ready to hear any suggestions... if you have other way than include...
    thanks A LOT
    Mamtz

    Sorry for the misinterpretation, maybe my english is
    still not good enough...
    Yes, i meant to say larg text as a lot of words in a
    page. it is quite hard editing text in a property
    file, especially if i want to add some style and html
    tags. i can't think of editing a page like the "Terms
    of Use" in a property file, although i'm using "Zaval
    Java Resource Editor"
    (http://www.zaval.org/products/jrc-editor/index.html)
    to edit property files it is far from being text
    editor.
    anyway, do any one have an idia on how should i do it?Hi hi, I am also stucked by this problem. The pt I use jsp:include is to take advantage of the dynamic inclusion of content. Well and I encountered the encoding problem just like you.
    I read (and as many have mentioned), page encoding is not carried to jsp:include. There is no work-around at program level (unless u open the file and write it to the output..maybe).
    Then I found out the discrepancies of my PC and the staging server. They are of different locale, which leads to different result.
    In my case, my PC is with zh_TW.big5 and the staging is en_US.UTF-8, so the inclusion mess up when i stage the programs.
    So I change the locale of the staging server and everything works fine.
    Let me guess in your case if you are using UTF-8 you probably need to choose a locale with UTF8. Please try if this is the solution for you.

  • Include HTMDB Page in HTML app

    Hi,
    I have some public pages that I would like to include into existing webpage.
    How can I acheive this ?
    Is there a way that I can use Server Side includes ??
    Thanks
    Francis.

    Hi John,
    I meant include an HTMLDB page in another webpage.
    We have an existing web site and I would like to include one simple public page into an existing html Page.
    I tried iframe but I would like to see if there are other solutions than using frames.
    Any idea or pointers on how to do a webrequest and include it after ? I guess that this would be done with server side includes ?
    Thanks
    Francis

  • How to include HTMLB in a HTML page

    Hello all,
    Is it possible to include for instance a HTMLB:tableview-element in a plain HTML page, with a minimum of HTMLB-elements?
    So i have:
    <HTML>
      <HEAD>
        <TITLE>
        <TITLE>
      </HEAD>
      <BODY>
      </BODY>
    </HTML>
    Where and what HTMLB-elements do i have to include to succeed?
    The reason for my question is, that i have to include some additional elements in a standard generated page and i prefer to us HTMLB for it.
    Thanx in advance.
    Kind regards,
    Martijn de Jong.

    Hi,
       add the following code where ever you require a tableview...
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2003">
      <htmlb:page title = "display page ">
      <htmlb:form>
          add tableview here....
      </tmlb:form>
    </htmlb:page>
    </htmlb:content>
    Regards,
    Azaz Ali Shaik.

  • Include a html page in another html page

    How do I include a html page in another html page? I have 7
    separate page making up a website. I made a separate page for the
    bottom navigation which I want to include for each page. Instead of
    making up a separate nav bar for each page.
    Thanks for your time.
    Todd Dignan

    Just remember that the file being included CANNOT be a
    stand-alone HTML
    page - it must not contain <html>, <head>, or
    <body> tags if you want to
    continue working within DW.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "nX07" <[email protected]> wrote in message
    news:fm9pvr$rn6$[email protected]..
    > Hey Todd,
    >
    > Depending on your web site's server environment, you can
    do it a few ways.
    >
    > First, and most convenient is if the server you are on
    has PHP, the simple
    > php
    > include function will do the trick.
    >
    > Just place this in where the HTML would actually go for
    the footer
    >
    > <?php include("fileofthebottom.html"); ?>
    >
    > If you don't have PHP, you should be able to use SSI
    (Server Side
    > Includes).
    > same principle applies as above, and is simple to
    understand:
    >
    > <!--#include file="fileofthebottom.html" -->
    >
    > If for some reason you can't do SSI, the other option
    would to be using a
    > frame or iframe, which is not recommended for several
    reasons; mainly
    > accessibility.
    >
    > The simple code is:
    > <iframe src ="fileofthebottom.html"width="whatever"
    > height="whatever"></iframe>
    >
    > Hope this helps :)
    >
    >
    >

  • Including the results of a jsp into an HTML page

    Hey everyone,
    I am trying to include the results of a jsp inside an HTML page (HTML served by Apache, JSP served by Tomcat).
    Is there any straight way of doing this - say using Ajax or some javascript? I have been experimenting with ajaxinclude from DynamicDrive.
    Appreciate the help,
    Ankush

    Well, u can do one thing, may not be a proper method...
    one way is to call the jsp page using ajax and the output of the jsp page can be converted to an xml and this xml can be read by the ajax program.

  • Up/download html-page including all images

    Hi y'all,
    I'm developing a quite normal Webbrowser-Webserver-DatabaseServer application with Web-Frontend, Servlets, Jsp, Beans and good old JDBC-Technique. It's kind of a small dictionary.
    What I need is a solution for the following problem:
    Every item of the dictionary should be made of a html-page which could contain images, too. An administrator builds these pages and uploads them to the webserver. So how can I upload the html-page with all its images automatically?
    Some thoughts about it:
    - can the html-code be searched for images by java-script, and could they be uploaded automatically then?
    - do I need a AWT/Swing frontend?
    - or may a httpServlet request the images after getting the html-page?
    - packing all the files together into a .zip-File would not be soooo nice, the admin may be dumb.
    The same problem I have with downloading a page onto the administrators computer.
    well, I think I'm in trouble.. :)
    koem

    I'm not extremely experienced as a JSP/Java programmer but here are my thoughts:
    It sounds like your basic requirements are fairly simple, but you are taking the long way around to get there. If it is a dictionary-style app and the administrator is of limited experience then you need to keep things simple.
    Why create pages to upload when you can create a template with JSP and insert the text data and the images from a form? Text and link info can be stored in a database and the actual image can be uploaded to a directory or put in the db if you know how. Java Server Pages (O'Reilly) has the image upload code you need.
    Am I on track here?
    Brad

  • Any one help me..? how include the HTML page to widget..

    hi eveyone..
    this is Vijay from chennai and nice meeting to all. actually i'm working in a graphics designer @ mac platform. i have one doubt and i explain clearly..
    in my office lot of client requirements followed in a pdf.each client followed different specification.i desired crate one widget to solve that problem.that is i convert all pdf Doc. to html Doc. my layout is first enter the Client name and hit enter that show's the html page with in a window.(ie exactly working dictionary)any one you Help me..? how to workout.. or any one gave idea..plz..

    Widgets, welcome to Apple Discussions.
    From the info you provided I don't quite understand your problem. Can you tell us more about what you want to do.
    BTW, your profile says you are using 10.5 Leopard. But you posted in the Tiger 10.4 forum. You are more likely to get an answer if you post in the Leopard 10.5 forum @ http://discussions.apple.com/category.jspa?categoryID=235
     Cheers, Tom

  • "Page Path" in HTML Page Skin

    Hey Guys,
    I was wondering if anyone knows how I could include the behavior that the "Page Path" Item provides, but I would like to do it in an HTML Pageskin. Seems like this would be fairly common for those people using page skins.
    Thanks
    -sean

    Hi,
    I insist : it is not possible with HTML to insert Page breaks. BUT, Tammie is right! You can use CSS (Cascade Style Sheet) to insert page breaks thanks to few lines of code in your HTML page.
    Follow this link to have a look at a very simple piece of code to illustrate this :
    http://www.codeave.com/css/code.asp?u_log=4016
    Here it the code if you don't have access to this URL :
    <html>
    <head>
    <title>CodeAve.com/CSS - Page Break</title>
    <body bgcolor="#FFFFFF">
    <center>
    Page 1
    <br style="page-break-before:always;">
    Page 2
    <br style="page-break-after:always;">
    Page 3
    <p>
    Use print preview on your browser to see how<br>
    this page would print out to three pages
    </center>
    </body>
    </html>
    Hope it helps.
    Don't forget to close the post if solved (so that search in the forum is easier), and reward points (so that SDN members are happy !) 

Maybe you are looking for