How can I publish artwork inside the artboard only?

How can I publish artwork inside the artboard only?
As I don't want to show anything outside the artboard when I publish it.
Also, how can I make the published swf file fit to the artboard size? As I don't want to show the white area outside the artboard.
Hope someone could help! Many thanks!

One thing I have noticed is that when you embed the .swf, if you don't designate the widht and height, sometimes you will see some of the extra outside the artboard. For example:
I uploaded my published files to www.website.com/flash and my .swf is at www.website.com/flash/Main.swf. If I just use that url I will see the extra from Main.swf. However, if I create a page where I embed the .swf, like www.website.com/main.html, I no longer see it.

Similar Messages

  • How can I show JTree inside the ComboBox!!!!!!!

    hi,
    Is there a way to show JTree in a JComboBox. As JComboBox have the following constructors..
    JComboBox()
    JComboBox(ComboBoxModel aModel)
    JComboBox(Object[] items)
    JComboBox(Vector items)
    Is there a way That I can put JTree in a JComboBox i.e.
    to have a constructor like this
    JComboBo(JTree jTree)
    thanks for help....

    actually I have built a custom FIleDialog. I am getting a tree structure in my JComboBox. But I am stuck at one point whenever I click on the directory that is shown in the table the name of the directory is added to the comboBox under the parent directory and is selected by default and it's contents are shown in the Table now my problem is that if I have the folder whose name is same is it's parent directory and when I click on that it's contents are shown in the Table but the it's name is not added in the comBobox instead it shows me the parent directory. Infact it should add the name in my Combobox and get this one selected not it's parent with the same name. I want it to work like file dialog. Like in FileDialog if we have a parent directory and child directory with the same name they are shown and selected properly, I am trying to do the same way but no success.So to get arround this I was thinking if I can use the JTree instead of directly adding nodes to my TableModel. Or any hints how to get arround this. I do have the custom renderer and model too. Thanks for any help.

  • How can I add artwork with the latest version of itunes?

    When I try to add artwork to my iTunes, it doesn't work. I already tried the Find Artwork button, but it didn't find artwork for all my songs. Then I tried to add it myself. I added artwork to whole CD's, but it wouldn't let me add it if it was just one song! How do I fix this? Thanks!

    Then change back to the old layout:
    iTunes 11: Show Sidebar and Status Bar

  • How  can call a method incide  the method in jsp

    I wrote some statement inside the scriptlet(<% %>)
    then i want call another method ,that one inside the same script let..please replay...

    please help How can write a function inside the JSP

  • How can i use JSTL inside custom tag attribute

    Hi,
    I have one button tag which displays the button with round corner. I will show the button like this:
    <ep:button key="buttons.submit" name="submitBtn" styleClass="But"
              onClick='submitPage(''<c:out value='${buttonName}' />)' />
    I am getting the problem with the above code. how can i use JSTL inside the custom tags.
    Thanks in Advance,
    LALITH

    No. The details are given below:
    I have included the follwing line in web.xml file:
    <taglib>
        <taglib-uri>/tags/button</taglib-uri>
        <taglib-location>/WEB-INF/button.tld</taglib-location>
      </taglib>button.tld file
    <taglib>
         <tlibversion>1.0</tlibversion>
         <jspversion>2.0</jspversion>
         <shortname>button</shortname>
         <tag>
              <name>button</name>
              <tagclass>com.ksi.ep.web.taglib.ButtonTag</tagclass>
              <bodycontent>empty</bodycontent>
              <attribute>
                   <name>name</name>
                   <required>true</required>
                   <rtexprvalue>false</rtexprvalue>
              </attribute>
              <attribute>
                   <name>key</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
              <attribute>
                   <name>onClick</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
    </taglib>ButtonTag.java :
    public class ButtonTag extends TagSupport {
       private static final long serialVersionUID = 6837146537426981407L;
         * Initialise the logger for the class
        protected final transient Log log = LogFactory.getLog(ButtonTag.class);
         *  holds the Value of the button tag
        protected String onClick = null;
         *  holds message resources key
        protected String key = null;
         * The message resources for this package.
        protected static MessageResources messages =
                             MessageResources.getMessageResources
                                       ("ApplicationResources");
          *  (non-Javadoc)
          * @see javax.servlet.jsp.tagext.TagSupport#doStartTag()
         public int doStartTag() throws JspException {    
            StringBuffer label = new StringBuffer();         
            HttpServletRequest request = (HttpServletRequest)pageContext.getRequest();
            try {             
                   log.debug("in doStartTag()");
                   Locale locale = pageContext.getRequest().getLocale();
                 if (locale == null) {
                     locale = Locale.getDefault();
                 log.info("");
                 label.append("<a border=\"0\" style=\"text-decoration:none;color:#FFFFFF\" href=\"JavaScript:");
                 label.append(onClick);
                 label.append("\" >");
                   label.append("<table  onClick=\"");
                   label.append(onClick);               
                   label.append("\" ");
                   if(onmouseout!=null && !"".equalsIgnoreCase(onmouseout))
                    label.append(" onmouseout=\"");
                    label.append(onmouseout);               
                    label.append("\" ");
                   if(onmouseover!=null && !"".equalsIgnoreCase(onmouseover)){
                    label.append(" onmouseover=\"");
                    label.append(onmouseover);               
                    label.append("\" ");
                   if(title!=null && !"".equalsIgnoreCase(title)){
                    label.append(" title=\"");
                    label.append(title);               
                    label.append("\" ");
                   label.append("style=\"cursor:hand\" tabindex=\"1\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" background=\"");
                   label.append(request.getContextPath());
                   label.append(System.getProperty("file.separator"));
                   label.append("images");
                   label.append(System.getProperty("file.separator"));
                   label.append("background1.jpg\" > ");
                 label.append("<tr><td width=\"10\"><img  border=\"0\" src=\"");
                 label.append(request.getContextPath());
                   label.append(System.getProperty("file.separator"));
                   label.append("images");
                   label.append(System.getProperty("file.separator"));
                 label.append("leftcorner.jpg\" ></td> ");
                 label.append("<td valign=\"middle\"  style=\"padding-bottom:2px\"><font color=\"#FFFFFF\" style=\"");
                 label.append(styleClass);
                 label.append("\">");
                 label.append(messages.getMessage(key));
                 label.append("</font></td>");
                 label.append("<td width=\"10\" align=\"right\"><img src=\"");
                 label.append(request.getContextPath());
                   label.append(System.getProperty("file.separator"));
                   label.append("images");
                   label.append(System.getProperty("file.separator"));            
                 label.append("rightcorner.jpg\" border=\"0\"  ></td>");
                 label.append("</tr></table></a>");
                 pageContext.getOut().print(label.toString());
              } catch (Exception e) {               
                   log.error("Exception occured while rendering the button", e);
                   throw new JspException(e);
            return (SKIP_BODY);
         * Release all allocated resources.
        public void release() {       
            this.name=null;
            this.key=null;
            this.onClick=null;
    }In my JSP I have mentioned the taglib directive as
    <%@ taglib uri="/tags/button" prefix="ep"%>and
    <ep:button key="buttons.submit" name="submitBtn" styleClass="But"
         onClick='overwritePreApprovals('<c:out value='${transactionalDetails['inPrepList']}' />')' />Servlet.service() for servlet action threw exception
    org.apache.jasper.JasperException: /pages/pms/coordinator/Dashboard.jsp(325,48) Unterminated <ep:button tag
    Thanks,
    LALITH

  • How can I Publish to a Folder just one of the several websites I have created using iWeb?

    How can I Publish to a Folder just one of the several websites I have created using iWeb?
    it drives me nuts having to emove all the other websites when I want to upload one. 
    Sparrow

    For iWeb, I like to do only one site per domain file.  I move domain files out of the Application Support folder and place them inside project or client folders, or in DropBox. Once you duplicate a domain file and begin customizing it, it will load and behave as a separate project/site.
    I publish each iWeb domain/project direct to a server via FTP. Sometime I publish to a folder, then upload via FTP manually.
    iWeb is a remarkable tool, especially when you work from scratch with blank tamplates
    Here are a few of my iWeb sites:
    http://www.newcovenant.org
    http://www.visionmultimedia.org
    http://www.visioncomsolutions.com

  • How can I publish an App to a selceted group of people without using the Adobe Contetn Viewer?

    How can I publish an App to a selected group of people ( not via App Store) without using the Adobe Content Viewer?
    The App was developed with InDesign 6.0

    You'd have to sign up for an Apple Developer account and then gather all the UDID's (Apple limits this to only 100 devices) that you want your app to be installed on. Create your mobile provisioning profiles to include these ID's and then you could use TestFlight to push out your app and monitor who has installed it. Of course Testflight is intended for monitoring your apps performance but I'm sure you can get away with it if you use it to push you app. One thing to keep in mind is the mobile provisoning profiles are only valid for 1 year. Hope this helps.

  • HOW CAN I Publish ALL the Original Different Colors in iCal

    I am trying to publish a grouped calendar which includes several differently colored events. I am testing it by subscribing to it from an iCal that has no calendars created at all....and it still will not publish the different colors of the original calendar. All the events appear as one color.
    How can I publish/share my calendar and have ALL the different colors show?
    -I am publishing using a .Mac account.
    THANKS VERY MUCH for any help anyone can give! It will be hugely appreciated.

    I am having this same trouble - I publish
    webcal://ical.mac.com/neyt/neyt.ics
    as a grouped calendar. I tried resetting my sync data fromthe computer that this calendar lives on ( OSX 10.4 because I realized earlier versions have Ical that doesn't even group..)
    Now when I have a subscriber pull down the .ics file, it doesn't show up as grouped, nor do the groups live onthe website version.
    why don't these groups just show up? if I send people the .ics file - it all works just fine...
    I know that some colors might be in use on other computers, I'm sure that other colors will be assigned s individuals need them in their calendars, but the groupings should sync...
    help!!
    flipster for G.Stockman

  • How can I publish a project so that the link to embedded flv is not lost?

    When publishing an Adobe Captivate 3 project, the embedded flv file does not play.
    How can I publish a project so that the link to embedded flv is not lost?

    I am not really sure, if I understand you right. But try this:
    Don’t place a picture, but draw a box and use the "Fill" command to put a picture into it.
    (Don’t click onto the color swatch, but onto the blue link "Fill".)
    In this case responsivness should work.

  • How can I publish the alterations I have made to my iWeb pages when the ' Publish Site' button and 'Publish Site Changes' on the file dropdown are grey?

    How can I publish the alterations I have made to my iWeb pages when the ' Publish Site' button and 'Publish Site Changes' on the file dropdown are grey?

    this is a perfect question for the users in the iWeb forum.  https://discussions.apple.com/community/ilife/iweb.  Good luck.

  • How can we publish Labview data using the web

    how can we publish Labview data using the web?
    Dr. Eugene Berman, Moran Kamilyan and Ravit Bar

    [email protected] wrote:
    how can we publish Labview data using the web?
    You could use shared variables and publish them to the network or use data sockets.
    Kudos always welcome for helpful posts

  • How can I fill structure from the line with contetnt of a XML file inside?

    How can I fill structure from the line with contetnt of a XML file inside?
    I have array of lines with XML documents inside. All XML's have the same structure.
    I need to fill array of structures (with the same structure like given XML's) from data of these XML's.
    How can I do this? I am trying Transformation with ora:parseEscapedXML, but receive error: "XPath expression failed to execute.
    Error while processing xpath expression, the expression is "ora:processXSLT("Transformation_1.xsl", bpws:getVariableData("ProcessedFiles"))", the reason is javax.xml.transform.TransformerException: javax.xml.transform.TransformerException: Could not find function: parseEscapedXML.
    Please verify the xpath query."

    Ive posted the new code but now I'm getting a FileAlreadyExistException error. How do I handle this exception error correctly in my code?
    import java.io.IOException;
    import java.nio.file.FileAlreadyExistsException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    public class MyDomParser {
      public static void main(String[] args) {
      DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
      try {
      DocumentBuilder builder = factory.newDocumentBuilder();
      Document doc = builder.parse("ENtemplate.xml");
      doc.normalize();
      NodeList rootNodes = doc.getElementsByTagName("templates");
      Node rootNode = rootNodes.item(0);
      Element rootElement = (Element) rootNode;
      NodeList templateList = rootElement.getElementsByTagName("template");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      System.out.println(templateElement.getAttribute("name")+ ".xml");
      for(int i=0; i < templateList.getLength(); i++) {
      Node theTemplate = templateList.item(i);
      Element templateElement = (Element) theTemplate;
      String fileName = templateElement.getAttribute("name") + ".xml";
      Files.createFile(Paths.get(fileName));
      System.out.println("File" + ":" + fileName + ".xml created");
      } catch (ParserConfigurationException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (SAXException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
      } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();

  • How can I publish photos to more than one Facebook account?

    How can I publish photos from iphoto to more than one Facebook account?  Another way to ask is how to add a second Facebook account to the account list in iphoto?

    Open iPhoto Preferences, click on the "Accounts" icon, and add another account.

  • Podcast Problem - how can i add artwork to apple blog rss link

    hi,
    i create a wiki blog page on our mac server, on the blog page i add video for podcasting and i enable podcast service on wiki settings. Then i take rss link from safari and i subscribe to itunes but when itunes check my link, there isnt artwork and i cant change the rss link code cause of the link generated automaticly from java. What can i do for this problem or how can i add artwork to apple blog servers rss link ?
    Thank you

    Bonjour,
    The rules are simple: one entry = one page
    if an article needs several pages, start this article on blog entry then continue with a page made with welcome page template or blank page template.
    you can change the link of the buttons "next" and "previous" to visit the pages you choose.
    (select the link > inspector > Link > hyperlink > check enable as a hyperlink > choose "one of my pages" ).
    Don't include these other pages in navigation menu.
    (inspector > Page > Page > uncheck "include page in navigation menu").

  • How can i get artwork to sync from itunes to ipod touch- for my home movies

    How can i get artwork to sync from itunes to ipod touch for my home movies ?
    The artwork is there in itunes ,but when i sync to my ipod ,the artwork dose not go with ,all that is there is a gray house box !

    Read the PDF user manual for a possible solution:  iPod Manuals, search through Apple's Knowledge Base for support Articles and/or iPod Nano Support 

Maybe you are looking for

  • OMRO - Invoice Verification triggered UMB

    Hi all, Currently i have one issue, at Miro i have posted the invoice verification for Material no:                  779670-001 Price of PO:                  21.12 EUR Unplanned delivery cost:41.83 EUR And once i've done the posting, it will triggere

  • MPN on MAC OS 10.6.2

    Hello everyone, I am trying to find the MPN to register Iphoto. when I follow the instructions, which are : "if you are using a version of Mac OS X: Click Finder in the Dock. Choose "Applications" from the Go menu. A Finder window appears with a list

  • Configuring sync lookup scenario without receiver

    Hi experts, I want to do the following scenario and I'm not sure, if this is possible: I have a sync SOAP call to SAP PI. The request message is mapped to the response message of the sync call. Inside the message mapping, I'm executing a JDBC Lookup,

  • Form selector and Report selector buttons missing

    Recently, when in design view, the left section of the form, where it touches the Navigation Pane, including the form selector button at the top, is no longer visible.

  • Setting up Panther smart

    I am getting a new iBook and it will be running panther so I was wondering what are some good ways to configure panther or whatever (what I mean is like I've heard that it is safer to use a standard account than an admin account so it won't allow you