SWF for HTML, how ?

Hello,
I've created a composition of (772 width X 231 height). I want to put it on my website. I on the Homepage.
I just want it to play once and then stays.
I already looked for File -> Export -> Adobe Flash Player (SWF). When its finished rendering it gives me a JavaScript file,
a .swf file and a .HTML file. When i open the HTML it shows me a bad quality version of my Composition. (Even if i choose High-Quality)
I actually just want a explenation how i can make a clear file on my website.
I have this as HTML code as my Menu/Navigation. (I did hide the links)
<tr>
<td height="231" align="right" valign="top" background="images/header.jpg" id="menu">
<a href="index.html">Home</a>
<a href="1.html">1</a>
<a href="2.html">2</a>
<a href="3.html">3</a>
<a href="4.html">4</a>
<a href="5.html">5</a>
<a href="6.html">6</a>
<a href="7.html">7</a>
<a href="8.html">8</a>
<a href="9.html">9</a>
</td>
</tr>
It looks like this:
(772x231)
Now i want After Effects to create a file that plays on the back, one time and then stops.
I know this has a bit of HTML as well, but i hope somebody can help me out
Gravious

When i open the HTML it shows me a bad quality version of my Composition. (Even if i choose High-Quality)
Exporting to the SWF format is only a good idea if you consciously  limit yourself to a specific combination of source types and features that AE's SWF exporter can mantain as vector graphics instead of leading to rasterization (ie, converting vector graphics to bitmap images). This means using only text layers (with text animation, not bad), solid layers, imported vector files (AI/EPS/PDF/SWF), with basic transformations (position, scale, etc) and masks. Using any effect (with a couple of exceptions explained in the link below), 3D layers, blend modes, nested compositions, motion blur and any kind of bitmap image/video layer will make it impossible to export a vector file. And in that case, for features labeled as unsupported for vector export, the SWF format is really, really inefficient at compressing bitmaps. When this is the case, you want to use FLV (Adobe Flash Video) instead of SWF. It will give you much better quality at much lower data rates.
To read more about which features and source types are supported or unsupported for vector export when exporting to SWF, see Render and export a composition as a SWF file in After Effects help.
Now i want After Effects to create a file that plays on the back, one time and then stops.
I think that's what the HTML from AE's SWF exporter will do if you turn off the "Loop continuously" checkbox in the SWF export dialog, right?

Similar Messages

  • Converting .SWFs for HTML 5

    Hello!
    I'm not sure if this is at all possible. I recently took over a position where the previous method for posting tutorials was exporting .swfs from Captivate- all video controls are scripted in. We now want to move away from swfs, exporting in Mp4 then converting to Ogg and Webm as well for HTML 5. However, nobody kept the origonal project files. Is there anyway to convert the exported .swfs or decompile and remove the action script?
    I have attempted to use SWFTools and SoThink SWF decompiler. SoThink was able to export a .FLA that I could export as .mov or .avi and convert forward from there. However, none of the .FLAs worked. Images were incomplete, slides stayed to long, while others were missing. It was a failure.
    Any thoughts are greatly appreciated!
    Thank you.

    Welcome to our community
    Lord knows I've asked and asked for a Captivate decompiler until I look like a Na'vi by being blue in the face. But alas, there has never been one created. If you feel one should exist, you (as well as any others I could possibly recruit) should use the Wish Form to ask for it. Perhaps if enough of us ask, Adobe will finally relent and give us one.
    Wish form link is in my sig...
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How to set default value for html:file in struts

    hi
                   i am working on an application using struts situation is i am using the
    <html:file property="" /> to allow the user to upload file. but i need that a default file should be set so that even if the user donot click browse ie                the user wish to upload that default file the default file get uploaded on page submition.     Is it possible to set any default value for html:file ...if yes plz provide any suggestion or links how to achieve this.     thanks in advance

    www.google.com?q=STRUTS+DOCUMENTATION

  • How to change the color for HTML words in JEditorPane?

    Hi Sir,
    In the JTextPane , we could change the word's color by using:
    Style style = doc.addStyle("test",null);
    StyleConstants.setForeground(style, Color.red);
    doc.setCharacterAttributes(10,20,syle,true);
    we can change the text into red color,which range is from 10 to 30.
    But how to change the color for HTML words in JEditorPane?

    Hi,
    you can use an AttributeSet to apply the foreground color. Let's say, doc is a HTMLDocument, then SimpleAttributeSet set = new SimpleAttributeSet();
    doc.getStyleSheet().addCSSAttribute(set, CSS.Attribute.COLOR, "#0D0D0D"); would apply a color to a given AttributeSet. The AttributeSet with your color then can be applied to a selected range of text in a JEditorPane by   /**
       * set the attributes for a given editor. If a range of
       * text is selected, the attributes are applied to the selection.
       * If nothing is selected, the input attributes of the given
       * editor are set thus applying the given attributes to future
       * inputs.
       * @param editor  the editor pane to apply the attributes to
       * @param a  the set of attributes to apply
      public void applyAttributes(JEditorPane editor, AttributeSet a) {
        ((HTMLDocument) editor.getDocument()).getStyleSheet().addCSSAttribute(set, CSS.Attribute.COLOR, "#0D0D0D");
        editor.requestFocus();
        int start = editor.getSelectionStart();
        int end = editor.getSelectionEnd();
        if(end != start) {
          doc.setCharacterAttributes(start, end - start, a, false);
        else {
          MutableAttributeSet inputAttributes =
            ((SHTMLEditorKit) editor.getEditorKit()).getInputAttributes();
          inputAttributes.addAttributes(a);
      } Ulrich

  • How to hide the menu bar from a Transaction iView (SAP GUI for HTML).

    Hello all,
    I have created a simple SAP Transaction iView of type SAP GUI for HTML.  This iView has the Menu bar that has the buttons: Menu, Back, Cancel, and System.  My requirement is, I dont want to see the menu bar that has these buttons.  How do I go about it?  Please advice.
    Note:  My iView is a SAP Transaction iView and not IAC service related iView. 
    Thanks
    Vicky R.

    You'll want to set the parameter ~webgui_simple_toolbar in your webgui service.
    It is a binary parameter with the following values/options:
    0  : Hiding the page header completely (not recommended)
    1  : Standard setting
                        This is the recommended standard setting in which the title and the menu bar below it with the [Exit] and [Help] button and the application buttons are displayed.
    2  : Displaying the title line
    4  : Displaying the buttons [Exit] and [Help]
    8  : Displaying the active system buttons on the screen ([Back] and [Cancel])
    16  : Displaying the system menu
    32  : Displaying the application buttons
    128 : Deactivating the information block in the status bar (new)

  • How do I keep the action created in Flash (.fla) the same when published in .swf or .html?

    I created a complex fixed line and a bird flying on the line using tweens from point A to B to C.  When I view the birdline in play or by scrubbing across them in the layers mode, the bird follows the line just as designed.  When I test the birdline in "test Scene" or "test movie" one bird flies from point A to C, then another bird appears at point B and flies the course to point C.  The published .swf and .html do the same as the test functions.  What can I do to get the published version to behave the same as the design?

    Rob,
    Thanks for your response.  There are no error messages in the test functions, and no alerts in the keyframes.  They show green.
    Attached you will find both the .fla file and the .swf file.  I am new at this, so your help is greatly appreciated.
    Richard (Sir rpm)
    PS- I am sitting in Sweden right now.  So I am off to bed and will be back on line in the morning.  Please forgive the delay in my response.

  • The icons for html files are blank . . . how do i get them to show the firefox image

    on the desktop and in directories, the icons for html files are blank . . .
    firefox is my default browser . . .
    how do i get the icons to show the firefox image ?? . . .

    You can check for issues with the Windows icon cache and try to rebuild the icon cache.
    # Open the Task Manager (Shift+Ctrl+ESC)
    # In the Process tab, right-click on the Explorer.exe process and select End Process.
    # Open the file picker via "File > New Task (Run)" and click the Browse button.
    # Type or Paste %USERPROFILE%\AppData\Local (%LocalAppData%) in the File name field (AppData is a hidden folder).
    # Select the IconCache.db file and use "Delete" in the right-click context menu to delete the file.
    # After the IconCache.db file has been deleted, start a new explorer.exe process via "File > New Task" to get the desktop and Taskbar back.
    The IconCache.db file is a hidden file, so make sure that you can see hidden files.
    * http://kb.mozillazine.org/Show_hidden_files_and_folders

  • How to install Apache Server on Linux 10G for HTML DB 1.6

    Hello,
    i have Oracle 10g installed under Suse Linux. Apache needed to be installed too in the oracle home but isn't.
    it's required for HTML 1.6 DB install.
    i did not found it with the normal installation image, how to install Apache for Oracle? for 10G?
    Regards
    Carl

    The Apache is on the Companion CD
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/linuxsoft.html
    Also HTMLDB 1.5, so Install only the Application Server and add the HTMLDB 1.6 from separate Download

  • I want to create a SWF for my small web site. How do I do this? Do I need to purchase "Flash Builder"?

    I want to create a SWF for my small web site. How do I do this? Do I need to purchase "Flash Builder"?

    Hi Developer_46038, 
    if for example all the properties and object are stated as list, i think there is a tool that overcome cross list.
    http://listrollup.codeplex.com/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/13a51be5-4007-46e8-bbb2-5e04320dfebd/cross-list-webpart?forum=sharepointcustomizationlegacy
    you can also using dataview webpart to show the cross lists:
    http://office.microsoft.com/en-us/sharepoint-designer-help/create-a-data-view-HA010094804.aspx
    http://office.microsoft.com/en-us/sharepoint-designer-help/connect-two-data-views-HA010169133.aspx
    3rd party: http://community.bamboosolutions.com/blogs/bambooteamblog/archive/2009/03/11/relational-database-capabilities-for-sharepoint-lists-cross-list-web-part.aspx
    but i am not quite sure how crystal report will do, if you can make the crystal report as also list, i think its possible, 
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8247edf5-dee8-49d8-b7ee-9e49bfd97b9b/crystal-report-in-sharepoint-2010-webpart?forum=sharepointdevelopmentprevious
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Beginner - how to link swf to html

    Hi,
    I need help for :
    1) linking swf to html by a click of a button (example to skip the flash intro)
    and
    2) after swf finish playing I need it to go straight to a html page
    I tried several action code but it doesn't work... Can anyone help?

    enter_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event:MouseEvent):void
        navigateToURL(new URLRequest("http://www.adobe.com"),"_self");
       navigateToURL(new URLRequest("hhttp://www.adobe.com","_self"));
    It's working fine just try the above code

  • How to solve this problem, pls help when I try to see remote camera system from home."Dual streaming is required for HTML viewing"

    How to solve this problem, pls help when, I try to see remote camera system(spec dvr) from home. The Error I get is "Dual streaming is required for HTML viewing"

    I had the same probelm and found that the problem lies with 64bit programs such as safari and microsoft internet explorer. I have resolved the issue on my PC based server by using a 32 bit ie and same on my mac by using the same running windows under parallels.
    So far the problem with the 64 bit side of it is still to be resolved.
    Hope this helps and gets you guys up and running until suchtime a 64 bit solution is found.
    Craig

  • How to get event.target/event.currentTarget for HTML-5 canvas for click handler

    Hi,
    I hope everyone is doing great.
    I belong to Actionscript background and just started on Flash CC HTML-5 canvas.
    How to get event.target or event.currentTarget in Flash CC for HTML-5 canvas for click event.
    Like we used to do it in AS 3.0
    btn.addEventListener(MouseEvent.CLICK , go);
    function go(evt:MouseEvent){
       trace(" evt - "+evt.currentTarget); // It will let us know the clicked target
    For  HTML-5
    btn.addEventListener('click' , go.bind(this));
    function go(evt){
       console.log(" evt - "+evt.????t); // what is the correct syntax here?
    Thanks,

    Hey guys found the answer from stackoverflow
    it is - evt.target

  • How to find web address for SAP GUI for HTML enabled transaction ?

    HI All ,
    I have a transaction and in SE93 , the SAP GUI for HTML checkbox is marked for this transaction .
    I believe we can access this transaction via web .
    How to find URL for this web address ?
    Please advise .
    Regards,
    Ambar Patil .

    can be done through SICF

  • ITS 620 - how to create a service file for SAPGUI for HTML option

    Hi,
    We have the following configuration :
    ITS 620 installed
    IIS webserver
    NTLM Authentication on webserver
    SAP 46C
    We have some reports that use the IACs option of creating ITS reports and we are able to create the service files using webstudio where we can save a service id and password so that when the ITS page is called, it logs on the user directly into the system.
    Now, we are trying to create a new ITS page for a custom Z transaction and would like to use the SAPGUI for HTML option so that we do not have to use Webstudio to create and modify the HTML pages.
    When I call the ITS page for the new transaction, it brings up the logon screen for the user, which we want to avoid. If I create a new service file for this Z transaction without any HTML pages then I get an error.
    Is there a way to copy the WEBGUI.SRVC file to a custome SRVC file, I tried to create to copy it to a test file called ZTEST.SRVC for my test transaction called ZTEST and now I get an error.
    thanks in advance
    N.S.

    Hello N.S.
    You can create a service file, like ZSERVICE.SRVC.  The parameters should be:
    ~webgui 1
    ~transaction ztransaction
    ~client  001
    ~login   username
    ~password  password
    ~language  EN
    The "~webgui 1" allows the ITS to use the Webgui to dynamically generate the page (no IAC needed.)
    The "~transaction" is the transaction code of your service.
    The "~client" is the client number.
    The "~login" is the username.
    The "~password" is the user's password.
    the "~language" is the language for the users.
    Note that the last four are required for automatic logon.  If end users use a variety of languages though the ~language can be prepended to the URL to support different languages.  (Leave it blank in the srvc file then.)
    Edgar

  • Scrubber Thumbnails for HTML Articles - How Do You Get them to Actually Appear?!?!?

    Hi Gang,
    My apologies if I asked this last month, but it's really driving me nuts.
    The cover of our magazine is an HTML article, and it appears as a blank screen in both the TOC and BROWSE modes. The former is easy to fix by simply creating a thumb image and inserting it via Indesign or the Folio Producer. It's the browse mode that is the conundrum. I've followed the following instructions provided by ADOBE and updated my HTML article but to no avail.
    Creating scrubber thumbnails for HTML articles
    For InDesign articles, the viewer automatically generates the thumbnails that appear when you drag the scrubber. However, generating thumbnails for HTML articles takes more time, sometimes resulting in poorly rendered thumbnails. To improve thumbnail performance in HTML articles, you can manually add image files to the HTML article folders.
    Create png files that are named "scrubberthumbnail_h.png" and "scrubberthumbnail_v.png" (you can also use _l and _p suffixes). Add these files to the HTML article folder. There is no size restriction for these images, but note that they are scaled down proportionally to a height of 166 pixels. As a point of reference, when thumbnails are generated, landscape thumbnails are 221x166 pixels, and portrait thumbnails are 125x166 pixels.
    What am I doing wrong? My folio is portrait (vertical)-only and I put my .png filed named "scrubberthumbnail_v.png" in the parent directory (same level as the "cover_v.html" file targetted) of the HTML article. Should it be put somehwere else in the article folder?
    I'm hoping there is a simply solution.
    Thanks in advance!

    Thanks guys, but that doesn't address my problem. It's an HTML article, not a web content overlay.
    Yes, I know I could redo the cover within InDesign using a web content overlay spanning the entire 'page' and use a MSO as pointed out, but the cover starts off empty and then items begin to appear (ie) image and then the magazine title followed by the article titles. The latter which are linked (navto:) to their respective article. The problem is that navto links do NOT work in web content overlays, which is why I resorted to creating an HTML article. But alas, the scrubber thumbnail problem...
    The instructions above do not work for me, unless I've done something wrong such as placing the thumb image in the wrong location within my HTML folder, which in this case is a published EDGE ANIMATE project.
    And yes I could still go the MSO/InDesign web content overlay route and insert invisible frames over my link text as delayed MSOs, but that seems unecessary since I should be able to create the scrubber thumbnail for an HTML article as explained above.
    Any advice regarding the creation of the scrubber thumbnail? Or does it simply not function as intended at this time? I'm using InDesign CS5.5 using v.26 tools.
    Thanks in advance!

Maybe you are looking for