Exporting to HTML from Proto/CreativeCloud

Hi all!
I read somewqhere that it should be possible to export mockups created in Proto to as HTML/CSS files (in ziop format).
Where would I be able to access that functionality?
Regards & TIA
Matthias

We release Proto Extension for Dreamweaver.
http://labs.adobe.com/technologies/protoextension/
You can open .pro file into Dreamweaver now.
Please let us know your experience.
Thanks,
Takashi

Similar Messages

  • Exporting to HTML from InDesign CS4

    I what may be an odd issue.  I am working with InDesign to create client alerts for my firm.  We send these out via email.  Currently we are using a 3rd party application called ExactTarget for the mass-email, then creating the INDD file and exporting to PDF to post to the web as an attachment.  We are converting to using the email campaign too in our new contact database, ContactEase.  This requires creating the email body in HTML.  It would save me a lot of work if we could export the INDD file to a PDF to post to the web AND to an HTML that can be used to send the email. 
    Unfortunately, when I use the "Export to Dreamweaver" function in INDD to create the HTML file, I get a very simplistic page that does not reflect my original layout.  I have also tried selecting SWF as the type under "Export."  In this instance, I get the file formatted well, but I can only see the first page.  Has anyone else had experience exporting to HTML from INDD and retaining the formatting?  Is there a step I am forgetting?  Or perhaps an easier way to go about this?  Id' really rather not have to create the page template in HTML and have to continue to basically creating the document twice (once for email and once for web).
    Any direction/assistance is appreciated!  Thank you in advance.

    To get HTML exporting to work you have to style all the text and then recreate matching CSS styles in your HTML editor. When you export, the Advanced tab (CS3) lets you decide whether to create empty CSS declarations or link to an external CSS doc.
    I use one paragraph style for all the text which exports as something like p.mytext, then use character styles for everything else, which get exported as something like span.myhead. The exported XHTML style section might look like this when you choose empty declarations:
    p.mytext {}
    span.bold {}
    span.myhead {}
    span.italic {}
    span.link {}
    span.smallcaps {}
    span.subhead {}
    Where you need to fill in the properties between the brackets like this:
    p. mytext {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    span.bold {
    font-weight: bold;
    span.myhead {
    font-size: 20px;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #C06000;
    span.italic {
    font-style: italic;
    span.smallcaps {
    letter-spacing: 3px;
    font-size: 75%;
    word-spacing: -2px;
    color: #444444;
    span.link {
    text-decoration: none;
    color: #CC9900;
    span.subhead {
    font-size: 14px;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    color: #666666;
    font-weight: bold;
    letter-spacing: 0.75px;
    You have to have a reasonable grip on CSS in order to get it all to work.

  • JavaScript Alert in Chrome: When I export as HTML from Muse

    After having integrated a ".oam" file  in a Muse and exported the site in Html, the browser returns this error:
    "MuseJSAssert: Error calling selector function:SecurityError: Failed to read the 'contentDocument' property from 'HTMLIFrameElement': Blocked a frame with origin "null" from accessing a cross-origin frame."
    Is there a solution?

    I have the same problem, but it's only on Chrome…
    For me, it's work fine with Safari and Firefox

  • Bookmark titles have weird characters or just blank as of Fox5 when viewing (loaded into a fox tab) the exported "bookmarks.html" from the "Libray" (bookmarks manager).

    }
    -- trying to paste in here examples of weird characters, where real English language titles should be.

    Try to delete those bookmarks and create a new bookmark with that URL.
    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.com/kb/Bookmarks+not+saved#w_places-database-file

  • Is there anyway to export to HTML?

    Is there anyway to export a Pages project to HTML?

    Hi All. I just stumbled upon this requirement today where I needed to export to HTML from Pages. The best thing I figured out was to Save as PDF then from Acrobat Export the page as HTML.
    Stephen Thompson

  • Non-Muse form not exporting to html but works in BC testing.

    Non-Muse html form tested ok on BusinessCatalyst but does not show up on page when exported as html from muse.  Note: Site is not hosted on BusinessCatalyst but BC is the testing server. Form is present on host server and was working in an earlier version.  Any help would be appreciated.  Thanks.  JW

    Hi JW,
    When you export the site as HTML, do you get any error related to the form?
    Please check the files exported to your computer. Does the form exist?
    Regards,
    Aish

  • Is it possible to export the html code from a muse site that I am building?

    Is it possible to export the html code from a muse site that I am building?

    Mac_Heibu has the right idea. When you export your site to HTML, it creates a folder that contains all of your pages. Here's an example of what the folder will contain. All of your HTML pages, all your scripts, CSS, and it'll also have individual folders WITHIN your main folder for your phone or tablet versions, if applicable. This method allows you to upload your files to an FTP host. However, if you're trying to upload it to an FTP, the BETTER option would be to go File > Upload to FTP Host. If this has helped you, please mark mac_heibu's answer as the Correct Answer, and feel free to mark my reply as a Helpful Answer.

  • Oddity with exporting html from textflow

    Hi,
    I am using the following code to export html from my editable textFlow:
                public function getXmlFromFlow(flow:TextFlow, title:String):XML{
                    var temp:XML = XML(TextConverter.export(flow, TextConverter.TEXT_FIELD_HTML_FORMAT, ConversionType.STRING_TYPE).toString());
                    var holder:XML = new XML("<" + title + " />");
                    for each(var p:XML in temp..BODY.P){
                        holder.appendChild(p);
                    return holder;
    This function takes a textflow and title and returns an xml tag named according to my title and with the html as its child.
    This functions, however, I am getting font tags within font tags, like this:
    <titleHtml>
    <P ALIGN="left">
    <FONT FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="1">
    <FONT SIZE="64">JOE SCHMO</FONT>
    </FONT>
    </P>
    </titleHtml>
    And when I bring this html back into the textflow with this code :
    textFlow = TextConverter.importToFlow(MYXML, TextConverter.TEXT_FIELD_HTML_FORMAT);
    I get the proper text, but the size (should be 64) does not render, it shows up at the 12 size of the parent.
    Am I doing something wrong?

    I'm a bit puzzled.  I tried importing this markup into TLF as HTML in 1.0/1.1 and 2.0 and the text always showed up at 64 pt.
    <titleHtml>
    <P ALIGN="left">
    <FONT FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="1">
    <FONT SIZE="64">JOE SCHMO</FONT>
    </FONT>
    </P>
    </titleHtml>
    Richard

  • Export html from adobe muse to use in dreamweaver

    Is it possible to export html from adobe muse to use in dreamweaver?
    Example... I finished my website in Adobe Muse but want to trasnfer it all over to Dreamweaver when I'm finished.

    There is a Muse support forum here: http://muse.adobe.com
    The HTML generated by Muse is pretty messy so you should be pretty fluent in HTML/CSS to hack it up in DW.

  • A client is curious to see if I export HTML from Adobe Muse, will he be able to edit the HTML in another program?

    A client is curious to see if I export HTML from Adobe Muse, will he be able to edit the HTML in another program?

    Thank you. I thought so, but just wanted to confirm. I appreciate the feedback.
    -Joe

  • How can export html from muse right into the folder without domain?

    When i watch video tutorials there's no inquiry for domain but in ''my'' muse there is so i cant just save an html

    I have no idea WHY the domain name is asked for at Export as HTML. The name seems to serve no purpose. I just enter a bogus name [xxx.com] pick a Location. I then use FTP client to send to host in any folder/directory I name using said FTP client.
    Screen shot of folder. The asked for domain name is no where to be found and seems to have NO bearing on FTPing to host.

  • How to get custom formating to show in export as HTML CS4

    Using a copy of CS4, I am exporting an indesign document that has custom formated words. That is some words are italicized and don't conform to the paragraph style (I have to do this as I get all my documents from Microsoft Word Files). The italicized text shows up as a paragraph style such as "BodyText+" where the normal text is "BodyText". Manually applying a character style to all the italicized text would be impossible.
    How can I export as html in this case? Is there a way to format all BodyText+ with a special character style?

    Well I guess the find/replace all seems to have set the character styles in the InDesign document, but, it makes no difference in the html output
    It still looks like <p class="body-bodytext">nonitalics italics</p>.
    Does anybody know how to make it do something like this:
    <p class="body-bodytext">nonitalics <span ="italics_character_style"> italics</span></p> ?
    I can write the post processing stuff as long as it somehow notes the difference

  • Need help: Problems with exported Dreamweaver html file in different browsers

    I'm trying to send out a newsletter, and had our designer create it in Dreamweaver, and then export and html file which we uploaded.  For some reason it looks wrong on Mac's, Gmail, and a few issues with Outlook.  Does anyone know how to help with this, or had to work around this problem in the past?
    I've attached our html file as well.
    We're an eco startup with limited time and budget - so any help you have would be so appreciated.
    Thank you!!

            World Centric Monthly Newsletter   August 2009     
    Palo Alto Joins the Ban Against          
             Non-Recyclable Materials
           This Spring, Palo Alto joined the list of more than 30 cities and counties in California who are making good on their efforts toward reducing their greenhouse gas emissions
           by enacting partial or comprehensive bans on polystyrene (PS) foam and/or non-recyclable disposable foodservice containers. Around the same time, a California statewide ban on the use of PS containers was tabled before reaching the State Assembly floor. Representative
           Jerry Hill, one of AB 1358’s sponsors, pulled the bill due
           to concerns addressed in the Appropriations committee hearing of the bill, regarding the fiscal impacts which
           were not addressed in bill’s contents.
           Largely represented by the California Restaurant Association, opponents of AB 1358 lobbied legislative representatives and argued there would be a negative fiscal impact on struggling restaurant owners and their customers in order to accommodate the more expensive alternatives to PS containers.     There are the unquantifiable and “hidden” costs of contaminating our bodies and environment which would far surpass the fiscal impact on the plastics, restaurants and consumer industries. Studies published by the Foundation for Advancements in Science and Education have indicated that varying levels of styrene residues
             are present in 100% of all human fat tissue in the
             United States, as PS products are found to lose weight after in contact with hot or fatty/acidic foods and liquids, causing migration of the styrene into the food or fluid, ending up in the human body. On the high end, the levels were “one third of levels known to cause neurotoxic symptoms”. In the environment,
             PS is rarely recycled and does not biodegrade.     Supporting safer alternatives to polystyrene, in addition to the collection infrastructure and processing mechanisms for the compostable and recyclable products would help create more green jobs in the long run and would be a move in the right direction away from unnecessary harm
           to our health, our communities and our world. Keep your eyes open for a revised version of AB 1358 in Spring 2010!     For more information about polystyrene
           visit Earth Resource.     For a partial energy, emissions and water analysis
           of polystyrene and its alternatives visit our website.           World Centric Compostable
             Hot Cup Lid
             World Centric is pleased to announce we now offer a fully compostable hot cup lid that
             fits our 10oz, 12oz, 16oz,
             and 20oz paper hot cups.
           The lids can be ordered in cases of 1000 or packs of 100.
           For more information or to order, please visit our website.           This Month
             We’d Like to Applaud
           Project Open Hand
           San Francisco's non-profit
           organization that prepares and delivers food to seniors, people living with HIV and homebound critically-ill residents. For nearly 25-years Project Open Hand has been providing “meals with love” to local residents in need of help and care in
           California’s San Francisco and Alameda counties.
           Programs include meals, groceries and nutrition information as well as education and referral programs
           for all of the people served. A staff dietitian also visits several sites per week to speak with seniors and critically ill local residents about the importance of eating well
           and staying healthy.
           Project Open Hand continues to serve nearly 800,000 annually and has served as a model for over 100 organizations across the United States and the world.
           If you are interested in making a donation,
           please visit Project Open Hand.
           Help Project Open Hand continue to do what it
           does best – deliver quality food to those in need.           
    “World Centric has gone
               about every aspect of
               business in the most
               sustainable of ways. 
               It is a model for socially
               responsible business.”
               Ari Patz
               Styrophobia                          
                   Industry Trends
               Although PLA is a sustainable alternative to a petrochemical-
               derived product, its limitation has
               been not only its cost, but its inability
               to maintain structural integrity in hot temperatures and humid conditions because of its low melting pint.
               However, researchers at Teijin
               (formerly in partnership with Cargill)
               have improved their plant-based
               ‘Biofront’ PLA polymer to be able
               to withstand higher temperatures –
               by modifying its hydrolytic resistance.
             Get more information here.                          
                   Get Great Deals!
                   Check out our clearence items.
                   Did you know?
               Styrene can leach from polystyrene.
               Over the long term, this can act as
               a neurotoxin. Studies on animals
               report harmful effects of styrene
               on red-blood cells, the liver, kidney,
               and stomach organs.
               US Environmental Protection Agency (1992) “Styrene”. Air Toxics Website.                          
                   Where to Find us:
                   CRRA Conference
                   August 2 - 5
                   Palm Desert
                          Western Foodservice
    & Hospitality Expo
                 August 30 - September 1
              Livable Green
                 September 19
    San Mateo                                
         Find us:            World Centric
    2121 Staunton Ct. Palo Alto, CA
    You are subscribed as <[email protected]>. Click here to manage your email subscription preferences.
    Click here or reply to this email with 'unsubscribe' in the subject to unsubscribe from this list or if you feel you have received this message in error.
    This message was sent from World Centric 2121 Staunton Ct Palo Alto CA 94306 United States. Click here to report email abuse.
    You are subscribed as <[email protected]>. Click here to manage your email subscription preferences.
    Click here or reply to this email with 'unsubscribe' in the subject to unsubscribe from this list or if you feel you have received this message in error.
    This message was sent from World Centric 2121 Staunton Ct Palo Alto CA 94306 United States. Click here to report email abuse.

  • I am new to EPUB fomat and I am facing a lot of difficulties in exporting my work from InDesign CS6

    Hi..I am new to EPUB fomat and I am facing a lot of difficulties in exporting my work from InDesign CS6. The problem is that I have got a financial report of about 100pages to export as EPUB, with lots of graphs etc..and when I export it, to EPUB 2.0, the following happens:
    1. The image quality is quite low (even if the original images are of high quality, and during export, i put the image to max quality)
    2. The graphs do not appear where they should be! All the imags in fact appear after the long paragraphs of text..meaning everything appear quite messy and in an unordered manner.
    I have read that images should be anchored, and doing so, the result is quite better, but still, some images appear at the end of the text!!d
    That is, the end result, in terms of pagination and graphics, is no way like it should have been, compared to the indesign file (page 5 is displayed after page 10, image on page 4 appears on page 9 etc..)
    PLEASE HELP..
    P.S :
    I am using Adobe digital edition to view my EPUB..I have also tried CALIBRE and SIGIL!! But I am not too sharp in eiting CSS codes etc...

    Hi Akshay,
    If you want your images to appear standalone with no other page item on the page, then you can insert Page break on an image.
    This is how you can specify a page break:
    1. Select the image
    2. Goto Object->Object Export Options
    3. Select EPUB and HTML tab
    4. Select Custom Layout check box and then check Insert Page break. You can select from the option in the dropdown-Before Image, After Image, Before and After Image as per your requirement.
    Regarding your question about images:
    You export your graphs as JPEG but are those JPEGs of good resolution? If they are, then InDesign is doing something wrong during export but if the JPEGs are not of good quality then it is not an export issue. Please provide some more details here.
    Regards,
    Pooja

  • Having trouble exporting to pdf from InDesign CS6

    When I attempt to export to pdf from InDesign CS6, the application crashes. Apparently there is some phantom plug-in issue.
    I need to get this resolved asap.
    Thank you,
    Marissa

    Have a look at this generic document to help you troubleshoot: http://helpx.adobe.com/indesign/kb/troubleshoot-printing-pdf-export-indesign.html
    Could you also provide details about what you've tried, and what errors you encountered? Is this problem limited to a particular document, or all documents?

Maybe you are looking for

  • Unable to load (packaged) locales on iOS

    Hi, for last couple of days I am struggling with loading locales (of course it works on Android and in fast packaging on iOS :-) ). Its flex project with AIR SDK 3.7 (without ASC 2.0) and Flex SDK 4.6, FB 4.7. Here's my test app:      loader = new Lo

  • Browser prompting for username and password to access enterprise manager.

    I've just installed Internet Directory 10.1.4.0.1 and am having trouble connecting to Application Server Console in Enterprise Manager. When I try to go to the url http://localhost:18101, a dialog pops up asking for a username and password. In firefo

  • Configuration steps to create New Special GL

    HI, Can any one please send me configuration steps to create New Special GL. My client required to create new special GL for Rent Advance. NOTE: hear I am not asking how configuration steps for assigning GL accounts for existing Special GL. I want ne

  • Using GarageBand music in FCP

    I recently edited a short promo video and I wanted to add some music that I created in GB for the soundtrack. I exported the song from GB and sent it to iTunes. For some reason, iTunes made it a .m4a (protected file) the same kind of file you get whe

  • IPad/iTunes Sync Problem

    I clicked on "Sync Apps" in iTunes inadvertently. Now when I try to reset it, I get the message "Are you sure you don't want to sync apps? All existing apps and their data on the iPad (my iPadname) will be removed."