Pages to HTML

I'm trying to create an e-mail newsletter for a small home business and I was wondering if it's possible to convert a document I made in pages into html?

This question was asked and responded several times.
I don't know Apple's plans and, if I was aware of them, it would be under Non Disclosure Agreement so I would not write about them here.
The code exporting to HTML in Pages '06 gave so poor result that it was a good idea to drop it and, from my point of view, it's a bad idea to ask to a Word Processor program to generate HTML code. It would be more efficient to use dedicated tools for this task.
Yvan KOENIG (from FRANCE mardi 30 septembre 2008 14:04:37)

Similar Messages

  • Is there a way to use Edge as Navigation and Have the rest of the page in HTML

    Hi,
    I want to create a three-column CSS layout.  I want the left column (navigation) to be in Edge and have the remainder (plus header & footer) in static HTML.  I'm new to Edge and am hoping this is possible.  I know it will take some hard work, but before I get started, I'm wondering if this is possible, or should I just code the entire page in HTML? 
    Thanks!
    Jon

    hi jon,
    yes - this is totally possible.  here's a site i'm getting ready to take live next week.
    http://174.120.146.114/~spacemac/
    left nav bar is all edge - rest of the site standard html except for the animated edge banner on the homepage
    create your div placeholders and just drop the edge code in.
    hope this helps!
    best,
    keith

  • 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

  • Google home page in Html

    Hi everybody, this is kinda trivial, but some how i cannot view my I pod touch, the "google" home page in Html.
    I have been able to do this in the past, but now when i load google, it load in the "mobile" format.
    I have tried clearing, history,cookies,cache, but this does not help
    Also typing into any search engine for google.com or google .co.uk, it always defaults onto the googlw wed address but like
    google.co.uk/m
    Can anyone advise
    cheers
    tom

    This change appears to have just happened - I saw the mobile page for the first time today.
    It's very irritating.
    However, being Google with all its might and wisdom, I imagine the quality of the page will improve as they continue to develop it. I wouldn't be surprised if we saw a touch/iPhone-specific cool custom page based on Apple's web API before long.

  • New Safari 2.0.3 displays some Router Firmware pages as HTML Source text

      Hello Safari users and gurus.
    I installed the new 10.4.4 Combo Updater yesterday, preceded and followed by permissions repairs and other maintenance, including cleaning Safari Caches. Safari 2.0.3 works.
    My problem: 10.4.4's new Safari 2.0.3 displays HTML source text after I click "Save" from within my Linksys (latest firmware) router's web based administration pages that worked correctly with the previous version of Safari.
    When I check or change my router settings, the initial router settings pages appear as they did with the previous version of Safari. However, with 10.4.4's new Safari 2.0.3, as soon as I click "Save" to attempt to save a changed router setting, the confirming info from the router is displayed as HTML source code instead of the expected HTML page display.
    If I wait for the router lights to indicate activity has ceased and then reload the router's opening admin address, the page opens again normally, and I can navigate to other pages and see that the changes have been saved. However, any click on any "Save" changes button in the router's pages delivers another page of HTML source text.
    I will watch for future router firmware updates to see whether the issue is resolved from the Linksys side.
    Does anyone have any suggestions for improvement now? All assistance will be appreciated.
    EZ Jim

     Thanks glefand. As you suggested, I tried my old iBook G3 that is still running 10.3.9, and it works fine for me.
    My G5 DP also worked normally up through OS X 10.4.3. My problem only began after I installed the 10.4.4 update. I think the Safari update included with the 10.4.4 update is what is causing the issue with the firmware pages on my Linksys router.
    Hopefully a future router firmware update (or Safari update?) will restore proper operation. If not, I will continue to reload from the router's Start page. The need to work around this glitch is annoying, but the actual function of my router setup works without problem, even though the pages do not display properly.
    Thanks again for your helpful suggestion,
    Jim
    G5 DP 1.8, 4.5G RAM, 2x160GB Seagate, 1,000va UPS   Mac OS X (10.4.4)   20"ACD, iSight, AirportCard, Klipsch GMX A-2.1 Audio

  • Capturing the output of a JSP page as HTML

    Hi,
    Can anyone tell me if this is possible. I have a JSP page that contains
    information about an order that was just entered (Essentially a
    confirmation page). What I want to do is somehow intercept the output
    stream inside the JSP page and write it to a file, as plain html, which
    I
    will later attach to an email and send to someone.
    Thanks,
    Jordi
    Jordi Pinyol Essi Projects
    Ingeniero de Desarrollo
    [email protected] t +34 977 221 182
    http://www.essiprojects.com f +34 977 230 170

    You won't be able to "intercept" the output since it is the JSP page itself that is doing the writing.
    Will the file that you write the output to reside on the client side or the server side? It sounds like you want to receive the HTML output not as something to view on the browser, but a file you can save and send and use later. If this is the case, one technique that might work is to take advantage of the servlet name mapping feature that is available for registered JSP pages.
    Assuming your JSP pages are registered, you would map your JSP page like:
    <servlet>
    <servlet-name>confirmation</servlet-name>
    <jsp-file>confirmation.jsp</jsp-file>
    </servlet>
    <servlet-mapping>
    <servlet-name>confirmation</servlet-name>
    <url-pattern>/confirmation.out</url-pattern>
    </servlet-mapping>
    What happens is that a request for the URL /NASApp/myapp/confirmation.out gets mapped to the confirmation.jsp JSP page. If you set your MIME type correctly in the JSP page, the HTML output from the JSP page is not properly recognized by the browser causing it to prompt you to save the file.
    I have used this technique to generated CSV files from a JSP page. The browser is completely fooled.
    JC
    Jordi Pi?ol wrote:
    >
    Hi,
    Can anyone tell me if this is possible. I have a JSP page that contains
    information about an order that was just entered (Essentially a
    confirmation page). What I want to do is somehow intercept the output
    stream inside the JSP page and write it to a file, as plain html, which
    I
    will later attach to an email and send to someone.
    Thanks,
    Jordi
    Jordi Pinyol Essi Projects
    Ingeniero de Desarrollo
    [email protected] t +34 977 221 182
    http://www.essiprojects.com f +34 977 230 170

  • How to create a popup help page in html db

    i'm trying to create a popup up help page in html db by having a help button from the main page and when clicked a popup page will appear... but can't seem to get it working...
    can somebody pls help me? thanks a bunch!!

    Hi Denes ,
    Need some more suggestion from you .
    I have incorporated your popup code in navigation 'Logout' link.
    Now after clicking on that the popup page appears fine .
    But i like to include two button in that popup page such a way that --
    after clicking 'Confirm Logout' button some database updation has been done and the child popup page unloads,but the parent page redirect to login page.But if cancel pressed then only child popup page unloads and no database action will will be carried out .
    Could you plz help on this .
    Cheers,
    Rosy

  • Export Web page in html format -- Safari

    Outlook Express provided an option to export a page as html (graphics and all) and I can then open that page as html and covert it to a .doc file. That's on PC. I use that option to tell my Web guru what changes I'd like her to make on a specific page.
    Safari does not seem to offer that option. What I have there is "Web Archive" and "Page Source" and I can't do anything with that--or can I?--to get it properly formatted--just as it appears on Safari in Word.
    Any suggestions?

    Outlook Express provided an option to export a page as html (graphics and all) and I can then open that page as html and covert it to a .doc file. That's on PC. I use that option to tell my Web guru what changes I'd like her to make on a specific page.
    Safari does not seem to offer that option. What I have there is "Web Archive" and "Page Source" and I can't do anything with that--or can I?--to get it properly formatted--just as it appears on Safari in Word.
    Any suggestions?

  • Irregular spacing between entries on main page (BLOG.html)

    Hi--
    Why does the spacing between entries on the main BLOG page (blog.html) differ according to how long the entry is?
    If the 'header sections' are the same size, why is their appearance on the main blog 'index page' different sizes?
    I.e., if the contents of an entry exceed the template size, there is excessive blank space below that entry's header and the previous entry(below)--even if the 'header sections' are the same size.
    Is anyone from Apple on these forums???
    Thx,
    Steve

    At last...something I know an answer to...
    when you are in iweb and have the blog main page open click on inspector and the the RSS tab.
    Select blog from the blog / podcast options and then the number of excerpts to show option is there, the excerpt length option is another great feature.
    hope this helps.
    Paul
    <Edited by Host>

  • Pages/pages/pages/main.html not found

    Hi all
    Please accept my apologies if this is a totally daft problem.
    I have a site that will have 3 main pages (for 3 different parts of
    our company) all of which will have a load of sub pages. I had
    thought to have the 3 main pages in the root directory, then have
    all the links in a /pages directory so that the root wasn't all
    clogged up. In dreamweaver, i have my links set up as:
    pages/example.html - but if (after uploading to test) i am on that
    page and attempt to navigate to another page within the pages
    directory eg. a file which in dreamweaver has the link
    pages/example2.html, i get a message saying the file
    pages/pages/example2.html is not found. So I know that it's looking
    for the pages directory relevant to the folder it's in, rather than
    the root folder. Is there any easy way to sort this out? I am
    totally new to web design, so any help would be appreciated.
    Thanks
    Jon

    jonnyozz posted in macromedia.dreamweaver
    > Hi all
    Howdy.
    > dreamweaver, i have my links set up as:
    pages/example.html - but
    > if (after uploading to test) i am on that page and
    attempt to
    > navigate to another page within the pages directory eg.
    a file
    > which in dreamweaver has the link pages/example2.html, i
    get a
    > message saying the file pages/pages/example2.html is not
    found. So
    > I know that it's looking for the pages directory
    relevant to the
    > folder it's in, rather than the root folder. Is there
    any easy way
    > to sort this out?
    If the links are in each file, create your links as document
    relative.
    If the links are in an included file, you may want to use
    site root
    relative.
    > I am totally new to web design, so any help would be
    appreciated.
    Do take some time to learn the basics of HTML and CSS.
    Understanding
    paths is one of the required basics to Web design.
    Mark A. Boyd
    Keep-On-Learnin' :)

  • Save  page of html

    hello !
    i want write a program that like browser have "Saveas" and can save page of html from internet.
    what do it?
    please ! i need to it.
    thanks....

    I'm not sure I understand the question but you may want to look at the J2SE class java.net.URLConnection. This class will allow you to read a URL and process it any way you see fit (save it to disk).

  • How can I send email from an JSP page  with HTML format either using jsp

    hi,
    I have an jsp page with online application form,after compleating the form if i select submit it will send all the compleated data to the mail id we mentioned in the form tag,for this i am using javascript,but instead of receiving the data in the format of strings,my client want to receive the data in the same format as he's filling in the jsp page(html format) through e-mail.any help would be appreciated.the fallowing is the code right now i am using for email application.
    <code>
    function send()
    if(validatePersonalInfo(document.theform))
         document.theform.submit()
         location.href=location.reload()
    function validatePersonalInfo(form)
         var tmpStr ="";
         if (form.Name.value == "") {
              tmpStr = "Name";
              document.all.dName.style.visibility="visible";
              document.theform.Name.focus();
         else{
              document.all.dName.style.visibility="hidden";
         if (form.SSN.value == "") {
              tmpStr = tmpStr + ", Social Security Number";
         document.all.dSSN.style.visibility="visible";
         if(form.Name.value != "")
              {document.theform.SSN.focus();}
         else{
              document.all.dSSN.style.visibility="hidden";
    if (tmpStr == "") {
              return true;
         } else {
              alert("Please Fill the Following Fields: " + tmpStr);
              return false;
    <FORM NAME="theform" METHOD="post"
    ACTION="mailto:[email protected]?subject=Online Application Form for MinorityDealer." ENCTYPE="text/plain">
    <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="10" NOF="LY">
    <TH>
    <P>
         <FONT SIZE="3" FACE="Arial,Helvetica,Univers,Zurich BT">Online�Application</font></TH><BR>
    </TABLE>
    <table width="718" border="1" cellspacing="0" cellpadding="3" bgcolor="#CCCCFF" align="center">
         <tr>
    <td colspan="2"><font class="captionText">Name*�</font><br><input type="text" size="25" name="Name" class="bodyText">
    <div id="dName" name="dName" style="position:absolute;visibility:hidden"><font color="red">Name is Mandatory*</font></div>
    </td>
              <td colspan="2"><font class="captionText">Social Security Number*�</font><br><input type="text" size="9" name="SSN" class="bodyText">
              <div id="dSSN" name="dSSN" style="position:absolute;visibility:hidden"><font color="red">SSN is Mandatory*</font></div></td>
    </tr>
    <tr>
    <td colspan="2"><font class="captionText">Total Personal Assets</font><br><input type="text" size="10" name="TotPersAss3" class="bodyText"></td>
              <td colspan="2"><font class="captionText">Total Personal Liabilities & NetWorth</font><br><input type="text" size="10" name="TotPerLiab3" class="bodyText"></td>
    </tr>
         </tr>
    </TABLE>
    <IMG Valign="middle" name="imgSubmit" src="images/buttons/Submit.gif" width="66" height="29" border="0" alt="Submit">
    </code>

    Can any one do some help to solve this problem.
    Regards.

  • How can I convert iWeb page to html with NO javascript for email campaign?

    I have a holiday greeting I made in iWeb '09 for my business. The service I'm using to use to manage my mailing list wants me to strip all javascript code from the page so it is not seen as spam when it is emailed.
    How can I convert the page made in iWeb to an html page with no javascript?
    Thanks

    How can I convert the page made in iWeb to an html page with no javascript?
    You cannot. There will be nothing left. iWeb pages rely a lot on JavaScript.
    Use a template from Mail.app. Or create such template. These are simple TABLES and have no JavaScript in it.
    Do Cmd-Shift-G in the finder and type :
    /Library/Application Support/Apple/Mail/Stationery/Apple/Contents/Resources/
    Open one of the folders and open each successive folder until you see files like Picnic.mailstationery.
    Right-click to show the package content.
    Then navigate thru Contents, Resources until you see the files and images you need.
    Edit them to your hearts content.
    Double-click the file Picnic.mailstationery and it will open in Mail.app for further processing.

  • I have a number of pages with html extension in different files. Is it possible to merge them into one file? Is it possible to convert them into another file type such as PDF, MOBI, or EPUB? Thanks

    While downloading an eBook from internet, I found a book in a folder containing around 123 files, which is equivalent to the number of pages of the book.
    My interest is to bring them together in one file so that I can read it at a time. As the interface is not comfortable with html, I also like to convert it into another more suitable file format.

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • Getting a field value from the first page on the second page in HTML

    I have a 2 page form I'm presenting in HTML to the user. The first page they select an action, enter a USERID and click the next page button. (The button executes "xfa.host.pageDown();" on the click action at the server)
    On the initialize of the second page I try to get the value of the USERID field from the first page and create a SQL statement to open my data connection. The issue I have is that I cannot get the value of the USERID field. This code works cause if I hardcode a valid value the query works. I tried to work around this by putting the same field on page 2, but it still did not work but the field was populated with displayed. I only assume the data is not populated at the time the initialize is invoked.
    Here is my code on the initialize..
    xfa.sourceSet.nodes.item(0).resolveNode("#command.query").commandType = "text"
    xfa.sourceSet.nodes.item(0).resolveNode("#command.query").select.nodes.item(0).value = "Select * from TABLE where userid = '" + xfa.form.resolveNode("form1.Page1.txt_EmployeeLogin").rawValue + "'"
    xfa.sourceSet.DataConnetion.open()
    Any help is greatly appreciated.
    THANKS!!

    Hi Steve,
    If you haven't already done so, I recommend posting this question in the LivCycle Forms forum.
    Jared

Maybe you are looking for