How can i export animations in html format?

i made some animations with indesign 5.5
Can i export these animations in html format?
thanks

You can try to export your selected animations as Flash CS5 Professional format and then convert them to HTML5 animations with
-free flash plugin http://www.google.com/doubleclick/studio/swiffy/ (there´s online converter for testing)
-Flash Professional CS6 which can export HTML5
Then you can continue wotking with them in HTML5 editor like Edge....

Similar Messages

  • How can I view emails in HTML format or at least o...

    Dear Nokia,
    I've recently purchased the Nokia e90 to use for email using Vodafone push email (push.vodafone.nl) however the emails are in plain text format and not even the links are accessible.
    I have the folowing questions:
    1) is it possible to view pushed emails in HTML format
    2) is it possible to load links from emails in the browser
    3) is it possible to select a piece of text from an email to copy and paste it in the browser (form field)
    Best Regards,
    Jan Jaap
    Message Edited by oakley on 18-Mar-2008 04:43 AM

    Well, that doesn't work for me as it reads from pop or imap.
    I want to be able to use the push email service of my provider for which I pay a monthly fee. It will make emails come in like SMS.
    At least the links should be openable somehow. I receive admin emails and need to select a link to perform an admin task. I actually was hoping that the communicator was going to make it more easy for me. My HTC X7500 broke down and aldough it worked very well for internet browsing, I could only use gmail via the internet browser as outlouk wasn't working very well for me. While the x7500 is being fixed I decided to purchase the e90 for email (communication) purposes but now it seems the email functionality is limited to sms a like without the 160 charlimit.
    Is it not possible at all to open links in incomming emails within the nokia messenger?
    And what about copying text from an email (into the browser)
    Thanks in advance for your help and tips.
    Message Edited by oakley on 18-Mar-2008 08:43 AM

  • How can i export PDF as a Booklet formate in InDesign?

    Hi,
    I am currently working on 48 pages book. Book design is complete and i want to send it to printer as a spread in Booklet formate. how can i export pdf as booklet format?

    In this situation we strongly needed PDF in booklet layout. so is there any suggestion for saving that instead of printing?
    You have to save a postscript file using the Adobe PDF 9.0 PPD, as Eugene is showing in #6, and distill the .ps file to PDF using Distiller.

  • How can I export an imovie in a pc format?

    How can I export an iMovie to a format that will work on a PC?

    Easiest was is to install QuickTime for Windows (which is free from Apple) on the PC. Then any iMovie-created file will work.
    If you do not have permission to install QuickTime for Windows on your PC (this could be the case for a corporate PC, for example), then I would suggest using SHARE/EXPORT USING QUICKTIME. Choose Movie to MP4. Choose h.264 for the video codec.

  • How can I export the universe  to CSV format in Rational      (java)

    How can I export the universe to CSV format in Rational ,please give me one demo .thanks!!

    There's no direct access to an Universe from Java - Universes do have an SDK, but it's COM-based.
    If what you want is to retrieve data from the Universe, what you can do is create a Web Intelligence document reporting off that Universe, create a Query with the data you want from the Universe, then use the ReportEngine (REBean) SDK to retrieve the ResultSet from the Query - note that there's no CSV export option, so you'd have to walk through the ResultSet and write to an CSV yourself.
    Sincerely,
    Ted Ueda

  • How can I export my project which is a fla. format to a avi. format? I am using FlashPro CC.

    How can I export my project which is fla. format to avi. format? I created my project using the "timeline" in FlashPro CC. I would like to have it as a avi. file. Thank you in advance.

    File > Export > Export Movie...
    That should do the trick! Then convert using Adobe Media Encoder, if desired.

  • How can we export table data to a CSV file??

    Hi,
    I have the following requirement. Initially business agreed upon, exporting the table data to Excel file. But now, they would like to export the table data to a CSV file, which is not being supported by af:exportCollectionActionListener component.
    Because, when i opened the exported CSV file, i can see the exported data sorrounded with HTML tags. Hence the issue.
    Does someone has any solution for this ... Like, how can we export the table data to csv format. And it should work similar to exporting the data to excel sheet.
    For youre reference here is the code which i have used to export the table data..
    ><f:facet name="menus">
    ><af:menu text="Menu" id="m1">
    ><af:commandMenuItem text="Print" id="cmi1">
    ><af:exportCollectionActionListener exportedId="t1"
    >title="CommunicationDistributionList"
    >filename="CommunicationDistributionList"
    >type="excelHTML"/> ---- I tried with removing value for this attribute. With no value, it did not worked at all.
    ></af:commandMenuItem>
    ></af:menu>
    ></f:facet>
    Thanks & Regards,
    Kiran Konjeti

    Hi Alex,
    I have already visited that POST and it works only in 10g. Not in 11g.
    I got the solution for this. The solution is :
    Use the following code in jsff
    ==================
    <af:commandButton text="Export Data" id="ctb1">><af:fileDownloadActionListener contentType="text/csv; charset=utf-8"
    >filename="test.csv"
    >method="#{pageFlowScope.pageFlowScopeDemoAppMB.test}"/>
    ></af:commandButton>
    OR
    <af:commandButton text="Export Data" id="ctb1">><af:fileDownloadActionListener contentType="application/vnd.ms-excel; charset=utf-8"
    >filename="test.csv"
    >method="#{pageFlowScope.pageFlowScopeDemoAppMB.test}"/>
    ></af:commandButton>
    And place this code in ManagedBean
    ======================
    > public void test(FacesContext facesContext, OutputStream outputStream) throws IOException {
    > DCBindingContainer dcBindings = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    >DCIteratorBinding itrBinding = (DCIteratorBinding)dcBindings.get("fetchDataIterator");
    >tableRows = itrBinding.getAllRowsInRange();
    preparaing column headers
    >PrintWriter out = new PrintWriter(outputStream);
    >out.print(" ID");
    >out.print(",");
    >out.print("Name");
    >out.print(",");
    >out.print("Designation");
    >out.print(",");
    >out.print("Salary");
    >out.println();
    preparing column data
    > for(Row row : tableRows){
    >DCDataRow dataRow = (DCDataRow)row;
    > DataLoaderDTO dto = (DataLoaderDTO)dataRow.getDataProvider();
    >out.print(dto.getId());
    >out.print(",");
    >out.print(dto.getName());
    >out.print(",");
    >out.print(dto.getDesgntn());
    >out.print(",");
    >out.print(dto.getSalary());
    >out.println();
    >}
    >out.flush();
    >out.close();
    > }
    And do the following settings(*OPTIONAL*) for your browser - Only in case, if the file is being blocked by IE
    ==================================================================
    http://ais-ss.usc.edu/helpdoc/main/browser/bris004b.html
    This resolves implementation of exporting table data to CSV file in 11g.
    Thanks & Regards,
    Kiran Konjeti

  • Urgent Help. How to send the email in HTML format in Version 4.6c

    Hi,
      Please help me how to send a mail in HTML format with logo and specified format. Is it possible to send the SAPscript or Smartform in HTML format to external mail address.  The logo and the format is very important in this e-mail.
      quick response will help me better.
    Regards,
    Naidu

    Here is a sample program which emails HTML in the body.  Of course you can put an HTML tag in there that would point to the logo on some server(internet).  Notice we are just putting the HTML code in the MAILTXT table,  This is how we do it at my company.
    report zrich_0002.
    data: maildata   like sodocchgi1.
    data: mailtxt    like solisti1 occurs 10 with header line.
    data: mailrec    like somlrec90 occurs 0  with header line.
    start-of-selection.
      clear:    maildata, mailtxt,  mailrec.
      refresh:  mailtxt, mailrec.
      perform build_text_message.
      perform build_receivers.
      perform send_mail_nodialog..
    *      Form  BUILD_TEXT_MESSAGE
    form build_text_message.
      maildata-obj_name = 'TEST'.
      maildata-obj_descr = 'Test Subject'.
      mailtxt  = '<html>'.
      append mailtxt.
      mailtxt  = '<head>'.
      append mailtxt.
      mailtxt  = '<title>Untitled Document</title>'.
      append mailtxt.
      mailtxt  = '<meta http-equiv="Content-Type" content="text/html;'.
      append mailtxt.
      mailtxt  = 'charset=iso-8859-1">'.
      append mailtxt.
      mailtxt  = '</head>'.
      append mailtxt.
      mailtxt  = '<body>'.
      append mailtxt.
      mailtxt  = '<div align="center"><em><font' .
      append mailtxt.
      mailtxt  = 'color="#0000FF" size="+7" face="Arial,'.
      append mailtxt.
      mailtxt  = 'Helvetica, sans-serif">THIS'.
      append mailtxt.
      mailtxt  = '  IS A TEST </font></em><font' .
      append mailtxt.
      mailtxt  = 'color="#0000FF" size="+7" face="Arial,'.
      append mailtxt.
      mailtxt  = 'Helvetica, sans-serif"></font>'.
      append mailtxt.
      mailtxt  = '</div>'.
      append mailtxt.
      mailtxt  = '</body>'.
      append mailtxt.
      mailtxt  = '</html>'.
      append mailtxt.
    endform.
    *      Form  BUILD_RECEIVERS
    form build_receivers.
    *  mailrec-receiver = '[email protected]'.
      mailrec-rec_type  = 'U'.
      append mailrec.
    endform.
    *      Form  SEND_MAIL_NODIALOG
    form send_mail_nodialog.
      call function 'SO_NEW_DOCUMENT_SEND_API1'
           exporting
                document_data              = maildata
                document_type              = 'HTM'
                put_in_outbox              = 'X'
           tables
                object_header              = mailtxt
                object_content             = mailtxt
                receivers                  = mailrec
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.
    Regards,
    Rich Heilman

  • How can i export excel 2003(Version 11) from Crystal Report 8.5

    how can i export report to excel 2003(Version 11) from Crystal Report 8.5

    We i can only see below formats
    Acrobat Format (PDF)
    Character-separated values
    Comma-separated values (CSV)
    Crystal Reports (RPT)
    Crystal Reports 7.0 (RPT)
    Data Interchange Format (DIF)
    Excel 5.0 (XLS)
    Excel 5.0 (XLS) (Extended)
    Excel 7.0 (XLS)
    Excel 7.0 (XLS) (Extended)
    Excel 8.0 (XLS)
    Excel 8.0 (XLS) (Extended)
    HTML 3.2
    HTML 4.0 (DHTML)
    Lotus 1-2-3 (WK1)
    Lotus 1-2-3 (WK3)
    Lotus 1-2-3 (WK5)
    ODBC - AddressBook
    OBDC - CRGUP
    OBDC - CROR8V36
    OBDC - CRSS
    OBDC - CRXMLV36
    ODBC - dBASE Files
    ODBC - Excel Files
    ODBC - MS Access Database
    ODBC - Visio Database Samples
    ODBC - Visual FoxPro Database
    ODBC - Visual FoxPro Tables
    OBDC - Xtreme Sample Database
    Paginated Text
    Record style (columns no spaces)
    Record style (columns with spaces)
    Report Definition
    Rich Text (Exact Format)
    Tab-separated text
    Tab-separated values
    Text
    Word for Windows document
    XML
    there is no format with "Microsoft Excel 97-2000 (XLS)"
    what should i do?

  • How can I export a RAW photo from iphoto to anywhere without it changing into a jpg?

    How can I export a RAW photo from iphoto to anywhere (PSE, or desktop) without it changing into a jpg???

    See if any of this info will help:
    Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
    1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    Click to view full size
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.  3 - however, if you get the navigation window
    Click to view full size
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    NOTE: With Photoshop Elements 9 the Saving File preferences should be configured as shown:
    Click to view full size
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Click to view full size
    NOTE: If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window".  That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu).  This way you get the best of both worlds.
    OT

  • How can I export a slideshow from iPhoto to iMovie 09.  I try but it only lets me import 211 out of the 311 photos I have in the slideshow.

    How can I export a slideshow from iPhoto to iMovie 09.  I try, but it only exports 211 out of the 311 photos I have in the slideshow I made on iPhoto.

    how do i change the format to the right one?
    Before you can decide what to do, you have to know what you are starting with. Sony MPEG-1 files would be converted one way while DivX or WMV files would likely be handled in another. Extraneous tracks can be removed directly with QT Pro but if you don't have QT Pro then there may or may not be other work around possibilities depending on the specific audio and video compression formats in use. The best place to start would normally be to double-clic the source file in iPhoto to open it in the QT Player. When it opens in the QT Player, check the "Inspector" window to see what it says on the "Format:" lines. This will tell you the type of audio and video content you are dealing with here. Then come and tell us so we can offer some specific conversion solutions.

  • How can I export a slideshow from iPhoto 9.5.1 ..........

    How can I export a slideshow from iPhoto 9.5.1 as Quick Time Movie? It exports now as m4v.

    That's a Quicktime movie these days. What format did you want?

  • How can I export an Flash archive to Powerpoint or into  a Visual basic form

    How can I export an Flash archive(Flash cs4 profesional)   with animation to Powerpoint or into  a Visual basic form ?,

    How can I export an Flash archive(Flash cs4 profesional)   with animation to Powerpoint or into  a Visual basic form ?,

  • How can I export an Adobe illustrator CC .AI file to a DWG or DXF file suitable for SolidWorks?

    Hi
    Can anyone help?
    How can I export an Adobe illustrator CC .AI file to a DWG or DXF file,  without SolidWorks enlarging the file & converting every curve into hundreds of short little straight lines rather than a single continuous line/s.
    I have made sure the file is ungrouped or has any compound paths or colours.
    Opening it in Autocad 2010 still converts the DWG file into hundreds of short little straight lines!
    The file is needed to laser cut out an aluminium shape using SolidWorks 2008 (Metal soft)?
    Formats they can handle are:
    DWG, DXF, IGES, IGA
    There must be a way to export it without re-drawing the whole design in Soildworks again!!??
    Can anyone help?
    INCA

    Not really. This is a limitation you will have to live with. Unless you are extremely careful, most paths will be converted to polyline segments by AI and in particular in AI CC this is somehow busted, so it happens more often. You might have much more luck opening a native AI file in DraftSight or a 2D CAD program like TurboCAD and exporting a DWG or 2D IGES/ STEP file from there. The sizing issue is a different matter, but without knowing what units you actualyl used, nobody can advise.
    Mylenium

  • How can I export a document in IDML using VBScript

    How can I export an InDesign document in an IDML format using a VBScript ?
    If my InDesign Server instance is running, is it possible to run this script programatically (without using InDesign panel manually) ?
    Thank you.

    Hi Harbs,
    VBScript enums are a little bit different, and VBScript uses export, not exportFile (and no parentheses or semicolon). At a guess, this one is probably:
    Rem Given a reference to a document "myDoc" and a file myFileObj...
    myDoc.export idExportFormat.idInDesignMarkup, myFileObj
    But you might need to use the raw version of the enum:
    myDoc.export 1768189292, myFileObj
    Thanks,
    Ole

Maybe you are looking for

  • Enemy territory no sound part 2: OSS

    Hi there. I've been using arch for some days now and today i installed ET. Everything works fine except one thing: sound. I came here and searched for et and i found this topic but there's one difference between this topic and me: i use oss (old habi

  • Oracle express hang up when two or three users are using the same login.

    For developer purposes, we installed the last version of XE, and we are trying to run a small client-server application, but using the same user: login and password in two different remote PC's. The database is installed in an PC dual core with Windo

  • Reg: RFC FM

    Hi, I have to create a RFC enabled function module which will be called by a different system. The function moudule will have a date parameter as an importing parameter and a table in the tables parameter to store the results. However when I tried to

  • Re: Predictive Text Removal

    hi  im using my asha 303 when i type a massage  there is an underline in every word. Hope you can help me. thanks

  • N97 Freezes when answering a call

    Hi  Need some help here. My n97 freezes occasionally when answering a call. I can hear the person on the other end and they can hear me too. However the phone freezes with the lock/ unlock still on the screen