After selecting all the objects on art board. When I go to Object Slice Make, my Make option is disabled. Not working. I am using Adobe Illustrator CS6

Slice Help

yes, visible bounds is reading the non-visible masked objects too.
you're going to have to do it the hard way, loop through all your objects to get your bounds manually, and while you're at it, test for clipping masks and use the masking path instead.

Similar Messages

  • I have two iphones , i lost one  and entered to find my iphone and as mistake i block both and delate all the data of both. how can i get it on, im trying to restore it , but its not working ...

    i have two iphones , i lost one  and entered to find my iphone and as mistake i block both and delate all the data of both. how can i get it on, im trying to restore it , but its not working ...

    Hi Roger
    Thank you for your reply.
    My original feed is: http://casa-egypt.com/feed/
    However, because I modified the feed http://feeds.feedburner.com/imananddinasbroadcast and nothing changed, I redirected it to another feed and then I deleted this feed.
    Is there any way to change the feed in itunes? The only feed I have now is  http://feeds.feedburner.com/CasaEgyptStation
    I tried to restore the feed http://feeds.feedburner.com/imananddinasbroadcast but feedburner refused.
    I know that I missed things up but I still have hope in working things out.
    Thanks is advance.
    Dina
    Message was edited by: dinadik

  • I am unable to axcess any adobe software since OS X YOSEMITE took over my laptop. I keep getting this message, "To open Adobe CS5" you need to install the legacy Java SE 6 runtime. Does anyone know what to do. My efforts have not worked.

    I am unable to axcess any adobe software since OS X YOSEMITE took over my laptop. I keep getting this message, "To open Adobe CS5" you need to install the legacy Java SE 6 runtime. Does anyone know what to do? My efforts have not worked.

    and - check with Adobe - would strongly suspect you need to upgrade CS. Strongly consider Creative Cloud, access to the entire TypeKit alone is amazing.
    https://www.adobe.com/creativecloud.html

  • In oracle Open Script (OATS) OracleEBS/Forms project all the elements or fields are being identified as web objects.

    In oracle Open Script (OATS), we have created an OracleEBS/Forms project. But when we try to record the script all the elements or fields are being identified as web objects. Due to this we are unable to use the functions like getText. Hence, please help.
    Example: The below line when executed gives an error " Failed to connect to the Oracle Forms applet after 90 seconds. Verify that the applet launching page opens, and that the Forms Startup Timeout setting is high enough for this site."
    forms.textField("/web:window[@index='0' or @title='Person']/web:document[@index='7' or @name='tabPage']/web:input_text[@id='PER_ID' or @name='PER_ID' or @index='0']").getText();
    We have already set the event timeouts in OpenScript Preferences -> Playback -> OracleEBS/Forms Functional as
    Forms startup time out = 90Sec
    Forms Action timeout = 120Sec
    Forms Response Timeout = 120 Sec.
    OpenScript
    Version: 12.4.0.1 Build 139

    If it is a name resolution I would try either replacing the server name in the script with the IP address or making an entry in the local host file of the machine trying to play back the script
    If you try one or both of those approaches does the script play back?

  • To select all the checkbox using valuechangelistner

    Hi ,
    I have a jsp where the check boxes are populated dynamically.
    i have one more check box to select all the check boxes. (like Select all)
    i have written a method in a bean and i have bound that as value changelistner. when i check values in console the check box value is true but the same is not reflected in UI and also when i click delete button the value of the checkbox will be false..
    The value change listner methid is "toggleCheck"
    Please do needfull in this regard..
    here is my code....
    Bean code :
    package com.dyna;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.UIData;
    import javax.faces.component.UISelectBoolean;
    import javax.faces.event.ValueChangeEvent;
    * @author Bharathk
    * TODO To change the template for this generated type comment go to
    * Window - Preferences - Java - Code Style - Code Templates
    public class Output {
         static ArrayList list = new ArrayList();
         private UIData table;
         private UISelectBoolean sb=null     ;
         private UISelectBoolean sbAll=null;
         static int count = 0;
         * @return Returns the list.
         public ArrayList getList() {
              return list;
         * @param list The list to set.
         public void setList(ArrayList list) {
              Output.list = list;
         * @return Returns the sb.
         public UISelectBoolean getSb() {
              return sb;
         * @param sb The sb to set.
         public void setSb(UISelectBoolean sb) {
              this.sb = sb;
         * @return Returns the sbAll.
         public UISelectBoolean getSbAll() {
              return sbAll;
         * @param sbAll The sbAll to set.
         public void setSbAll(UISelectBoolean sbAll) {
              this.sbAll = sbAll;
         * @return Returns the table.
         public UIData getTable() {
              return table;
         * @param table The table to set.
         public void setTable(UIData table) {
              this.table = table;
    public List add(Input obj) {
    Input in = new Input();
    in.setId(obj.getId());
    in.setName(obj.getName());
    list.add(in);      
    return list;
    public List add(Input obj, int index) {
    Input in = (Input)list.get(index);
    in.setId(obj.getId());
    in.setName(obj.getName());
    list.set(index, in);      
    return list;
    public void deleteobj(Output obj){
         int Rc = table.getRowCount();     
         System.out.println("THIS IS IN DELETE");
         for (int i=0; i<Rc; i++) {
              table.setRowIndex(i);
              System.out.println("FROM DELETE------" +obj.sb.isSelected());
              if(obj.sb.isSelected()) {
                   System.out.println("FROM DELETE");
                   list.remove(i);
    public void toggleCheck(ValueChangeEvent event){
         int rc = table.getRowCount();
         System.out.println("THIS IS IN TOGGLE");
         if (sbAll.isSelected()){
         System.out.println("THIS IS IN TOGGLE--IN IF");
                   for (int i = 0; i< rc;i++) {
                   table.setRowIndex(i);
    // table.setRows(rc);                     
    sb.setSelected(true);
                        System.out.println("THIS IS IN TOGGLE--CHECK--- "+this.sb.isSelected());
         else {
              System.out.println("THIS IS IN TOGGLE--In ELSE");
              for (int i = 0; i< rc;i++) {
                        table.setRowIndex(i);
                        sb.setSelected(false);
         /*for (int i = 0; i< rc;i++) {
              table.setRowIndex(i);
              System.out.println("THIS IS IN TOGGLE--CHECK--- "+this.sb.isSelected());
    // FacesContext.getCurrentInstance( ).renderResponse( );
    "Here is my jsp code........."
    <%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@taglib uri="http://java.sun.com/portlet" prefix="portlet"%>
    <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@taglib uri="http://www.ibm.com/jsf/html_extended" prefix="hx"%>
    <%@page language="java" contentType="text/html; charset=ISO-8859-1"
         pageEncoding="ISO-8859-1" session="false"%>
    <portlet:defineObjects />
    <LINK rel="stylesheet" type="text/css"
         href='<%= renderResponse.encodeURL(renderRequest.getContextPath() + "/theme/stylesheet.css") %>'
         title="Style">
    <f:view>
         <hx:scriptCollector id="scriptCollector1">
              <%-- jsf:pagecode language="java" location="/JavaSource/pagecode/Sample.java" --%><%-- /jsf:pagecode --%>
              <P>Place content here.</P>
              <h:form styleClass="form" id="form1">
                   <TABLE>
                        <TBODY>
                             <TR>
                                  <TD align="left">Id:</TD>
                                  <TD style="width:5px"> </TD>
                                  <TD><h:inputText id="text1" value="#{inp.id}"
                                       styleClass="inputText">
                                  </h:inputText></TD>
                             </TR>
                             <TR>
                                  <TD align="left">Name:</TD>
                                  <TD style="width:5px"> </TD>
                                  <TD><h:inputText id="text2" value="#{inp.name}"
                                       styleClass="inputText">
                                  </h:inputText></TD>
                             </TR>
                        </TBODY>
                   </TABLE>
                   <h:messages styleClass="messages" id="messages1"></h:messages>
                   <BR>
                   <hx:commandExButton id="button1" styleClass="commandExButton"
                        type="submit" value="Submit" action="#{pc_Sample.doButton1Action}">
                   </hx:commandExButton>
                   <h:selectBooleanCheckbox styleClass="selectBooleanCheckbox"
                                                 id="checkbox1" binding="#{op.sbAll}"
    valueChangeListner="#{pc_Sample.op.toggleCheck}" onCleck="this.form.submit();"></h:selectBooleanCheckbox>
                   <BR>
                   <hx:commandExButton type="submit" value="Delete"
                        styleClass="commandExButton" id="button2" action="#{pc_Sample.doButton2Action}"></hx:commandExButton>
                   <BR>
                   <BR>
              <h:dataTable id="table1" value="#{op.list}" binding="#{op.table}" var="varlist" styleClass="dataTable" headerClass="headerClass"
                   footerClass="footerClass" rowClasses="rowClass1"
                   columnClasses="columnClass1" border="0" cellpadding="2"
                   cellspacing="0">
                   <h:column id="column4">
                   <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Select" id="text13"></h:outputText>
                        </f:facet>
                                            <h:selectBooleanCheckbox styleClass="selectBooleanCheckbox"
                                                 id="checkbox12" binding="#{op.sb}" ></h:selectBooleanCheckbox>
                                       </h:column>
                   <h:column id="column3">
                                            <f:facet name="header">
                                                 <h:outputText styleClass="outputText" value="SlNo" id="text10"></h:outputText>
                                            </f:facet>
                                            <h:commandLink styleClass="commandLink" id="link1" action="#{pc_Sample.doLink1Action}">
                                            <h:outputText id="text20"
                                                 value="#{op.table.rowIndex+1}"
                                                 styleClass="outputText">
                                            </h:outputText>
                                  <f:param name="Id" value="#{varlist.id}"></f:param>
                                  <f:param name="Name" value="#{varlist.name}"></f:param>
                             </h:commandLink>
                                       </h:column>
                   <h:column id="column1">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Id" id="text31"></h:outputText>
                        </f:facet>
                        <h:outputText id="text4" value="#{varlist.id}"
                             styleClass="outputText">
                        </h:outputText>
                   </h:column>
                   <h:column id="column2">
                        <f:facet name="header">
                             <h:outputText styleClass="outputText" value="Name" id="text5"></h:outputText>
                        </f:facet>
                        <h:outputText id="text6" value="#{varlist.name}"
                             styleClass="outputText">
                        </h:outputText>
                   </h:column>
              </h:dataTable>
         </h:form>
         </hx:scriptCollector>
    </f:view>

    http://forums.ni.com/ni/board/message?board.id=60&message.id=8565&query.id=128811#M8565

  • How to select all the rows of table control in BDC

    Hi All,
    While I am doing BDC for Transaction Code MC88, After the first screen I will get another screen with tabble control, Here I need to select all the rows of table control, I am assignng the 'X' to the first field of Table Control which is the indicator for selection.
    Here I am getting message called Indicator field is not in program and screen.
    While doing Recording I am not able to record the indicator, Please any one let me know how to record the Entire table control selection.
    Thanks in advance..

    Sorry about that lakshmi. Here is my code.
        PERFORM dynpro USING : 'X'   'SAPMMCP6'          '0105',
                               ' '   'RMCP2-MATNR'       t_matnr,
                               ' '   'RMCP2-WERKS'       t_werks,
                               ' '   'BDC_OKCODE'        '=AKTV'.
        PERFORM dynpro USING : 'X'   'SAPLMCPA'          '0707',
                               ' '   'BDC_OKCODE'        '=MRKE'.
        PERFORM dynpro USING : 'X'   'SAPLMCPA'          '0707',
                               ' '   'BDC_OKCODE'        '=GRAO

  • Selecting all the files in a directory

    How would i select all the files in a directory, write the info of the files into a new file, and after the end of each file, make a New Line?

    hi zymus,
    check this code u will get the solution for ur problem..
    import java.io.*;
    public class files {
    public static void main(String[] args) {
    File f = new File("c://");// specify ur directory name here
    String[] n = f.list();
    System.out.println("ALL FILES.....");
                   if (n != null)
                             System.out.println("length = " + n.length);
    for (int i = 0; i < n.length; i++) { System.out.println("i = " + n[i]); }
                                  String[] n2 = f.list(new myJavaFileFilter());
                                  System.out.println("ALL JAVA FILES.....");
                                  if (n2 != null)
                                       System.out.println("length = " + n2.length);
    for (int i = 0; i < n2.length; i++)
         System.out.println("the files are::::::::: " + n2);
    class myJavaFileFilter implements FilenameFilter
    public boolean accept(File dir, String name)
         if (name.indexOf(".pdf") > 0)// give the file extension what u want
         return true;
    return false;

  • Quick selection tool selecting all the image

    Hi
    I'm trying to get use to this quick selection tool , i have an image i need in the middle of the photo and all round the sides i want to whiten, the tool once draggin down either side selections all the picture no mater what setting i use, this is really annoying

    corky49 wrote:
    draggin down either side selections all the picture
    With the quick selection tool you need to drag INSIDE the object you are trying to select. So, say the image you are trying to isolate is a building, drag inside the picture of the building. The selection will expand looking for similar contrast pixels and will hopefully stop at the building edges. If it selects too much or too little you can zoom in and use the add to selection / subtract from selection options and Refine Edges until you get a satisfactory selection.
    From what you say you may be trying to select everything except the object in the centre  (so that you can whiten around the edges). If this is so then first select the object (building in my example) then invert the selection using Select> Inverse (or Ctrl+Shift+I).
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • I'm trying to make a AUTO slide show. I can select all the other actions like mouse clicks etc. but

    I'm trying to make a AUTO slide show. I can select all the other actions like mouse clicks etc. but ON load will not work.
    PLEASE HELP>
    I do not know how to reload/reinstall "ADOBE" golive default actions. I'm using golive cs mac version and "ON LOAD" action. I can't select it when creating a golive action.....It converts it or something to a rollover..
    How can I reistall basic adobe actions???
    Is it a bug???
    Is it a known issue???
    Do I need something??
    Am I missing something???
    Thanks a bunch..
    Kev

    In article <[email protected]>,
    [email protected] wrote:
    > I do not know how to insert the auto slideshowaction as a head action item.
    > The steps.
    > Can you explain how to do it?
    I just remembered I have a couple of screen snaps online to explain how
    it's done:
    1. place your base image and name it in the inspector
    2. from the smart objects palette grab the head action item, the one
    with a question mark in its upper, green half - the 2nd one from the
    left. Drop that into the pages head section.
    3. in the inspector set the action to run OnLoad and select the base
    image that you named in the first step and set the other parameters.
    This was done in the days of GL6, but not much had changed in GL CS.
    Anyway you might also refer to GL's online help. It describes how to set
    up all the actions that ship with GL.
    Cheers Martin

  • I am making a calendar in iPhoto, picking photos from a folder, let's call it "2011 Pics," in iPhoto. After arranging all the photos and captions I decided I wanted to insert a new photo -- one that was not in "2011 Pics." So I inserted it into the folder

    Add new photo to existing calendar folder in iPhoto
    I am making a calendar in iPhoto, picking photos from a folder, let's call it "2011 Pics," in iPhoto. After arranging all the photos and captions I decided I wanted to insert a new photo -- one that was not in "2011 Pics." So I inserted it into the folder, but the picture does not show up on the scrolling menu of pictures at the left of the calendar-making page. This happened last year and in frustration I started all over again. But surely there is a way to add a new picture to a calendar that is already laid out.

    Yes, the Old Master file has a folder for each year where I find all photos from that specific year. I am attaching a screen shot of the file.
    In the meantime i have managed to download all photos (it did not download any video files though in mpg, avi, 3gp, m4v,mp4 and mov format) to a new iphoto library. Unfortunately the photos are quite mixed and often doubled up. I ma considering to purchase iphoto library which checks all duplicates in iphoto. this will save me a lot of time. What do you think?

  • How to select all the colomns_names from a table, with their datatypes ..

    hi :)
    i would like to know, how to select in SQL all the columns names from a table with their datatypes so that i get something like this :
    Table 1 : table_name
    the column ID has the Datatype NUMBER
    the column name has the Datatype Varchar2
    Table 2 : table_name
    the column check has the Datatype NUMBER
    the column air has the Datatype Varchar2
    and that has to be for all the tables that i own ! ..
    P. S : i m trying to do this with java, so it s would be enough if you just tell me how to select all the tables_names with all their colums_names and with all their datatypes ! ..
    thank you :)
    i ve heard it can be done with USER_TABLES .. but i have no idea how :( ..
    Edited by: user8865125 on 17.05.2011 12:22

    Hi,
    The data dictionary view USER_TAB_COLUMNS has one row for every column in every table in your schema. The columns TABLE_NAME, COLUMN_NAME and DATA_TYPE have all the information you need.
    Another data dictionary view, USER_TABLES, may be useful, too. It has one row pre table.

  • Hi,   My photo stream used to work fine.  But after removing all the photos to separate folders in my computer, my new photos are no longer streaming to my PC.  They appear in the photo stream on my other devices - iPhone5 and iPad Mini.  It's just my PC

    Hi,
    My photo stream used to work fine.  But after removing all the photos to separate folders in my computer, my new photos are no longer streaming to my PC.  They appear in the photo stream on my other devices - iPhone5 and iPad Mini.  It's just my PC that's missing the photos.
    When I open the iCloud control panel, I cannot turn on the photos.  That option is ghosted.  I'm running on Windows 7 with iCloud 3.0.  Any ideas on how I can fix this?  All help is appreciated!  Thanks!

    Hi Kevinmvb,
    Welcome to the Support Communities!
    The article below may be able to help you with this.  It sounds like you may have moved your photos out of the Uploads folder where they need to reside.
    iCloud: My Photo Stream troubleshooting
    http://support.apple.com/kb/TS3989
    Cheers,
    - Judy

  • TS1372 After trying all the above mentioned solutions im still getting the error message"An unknown error has occurred" followed by the error number 1439" Any more solutions or is my Ipod screwed?

    After trying all the solutions suggested by the the people at apple on their web site regarding the error message The ipod"ipod" could not be restored. An unknown error has occured (1439). After try all 9 of the resolutions provived i'm still getting the same message and am no nearer to restoring my ipod? Any suggestions or is my Ipod screwed?

    [email protected] wrote:
    I'm reluctant to post apple ID's in a public support forum, and would prefer to deal with this by private email.  or phone.
    Then contact Apple directly.
    This is a user to user technical support forum.  No one here has access to manage Apple ID's other than their own.
    There is no Apple presence here.

  • What is the keyboard shortcut to select all the white in a layer

    What is the keyboard shortcut to select all the white in a layer, I'm on windows and use to do it all the time but forgot!

    Do you mean ctrl-clicking the Composite Channel icon in the Channels Panel?

  • How to select all the frames in a document?

    i did select only particular active session.is it possible to select all the frames in a document?

    Hi vinothvijay,
    You can use below interface to select all the frames in the document.
    ISelectionManager* selMgr = Utils<ISelectionUtils>()->GetActiveSelection();
    if(selMgr)
       selMgr->SelectAll(ac,nil);
    Regards,
    Santosh K.

Maybe you are looking for

  • Changing a mapping - reloading configuration???

    Dear experts, I have created a scenario which is already active in the integration directory. If I change the mapping of this scenario in the repository, how do I make sure this new mapping is used in the scenario. Do I need to recreate the scenario

  • Problem to taking DB-Backup

    Hai I have using windows2000 os and oracle9i. I have try to take back-up my database. I will go the enterprise manager and click the database.It asked to user name, password. I haven't gave any username password at the time of i installed.I will try

  • Updated operating system and the ipad4th gen froze up and restored it's self and now I lost all my photos and videos from over a year ago,,any way to recover them?

    system restored it's self after a recent operating system upgrade 8.0 and kept shutting down and restarting ,asked to be linked to my mac ,,so I did and it totally reset it's self ,all my apps ,photos and videos are gone from the day I bought the ipa

  • Second hard drive failure

    ok so my hard drive died today. It cant be recognized in disk utility or as a target disk. this is the second drive thats died!!! also had my batterie die,, my macbook is the most fragile comp i have ever had. i have had 1 old CRT imac then an emac t

  • Export Produces 2-second MOV

    I've made plenty of movies in the past half year, and haven't changed my export settings, but after completing a 13-minute video, today, my export took only 3 seconds and produced an all-black 2-second MOV file. I can't seem to figure out what the pr