Append String onto inputText value

Hi all,
I need to append the string value " - old" onto a value. How do I do this?
I had: <h:inputText rendered="#{diffHandler.costCode.isDeleted}" id="descriptionOld"
value="#{diffHandler.costCode.alternateDescription} - old">but when I go to save it, it throws an error. What I need is the -old to be appended onto the value and set when the save is pushed.
Cheers,
Illu

Make a separate property on your backing bean that handles it in the getter and setter.

Similar Messages

  • Access InputText Value in Declarative Component

    Hi,
    I have created a declarative component that contains an inputText component:
    <af:inputText label="#{attrs.ucitLabelText}" id="dc_it1" contentStyle="text-transform:uppercase;" converter="StringAsUppercase"/>
    When I use the declarative component on a page, is there any way to easily access the value of its inputText through the page backing bean? The declarative component is bound to the page, but what method can I use to access the inputText value?
    Thanks,
    Brad

    Thanks.
    I also figured out that I can simply do the following:
    When creating the declarative component...
    - Add an attribute to the declarative component (let's call it "inputValue")
    - Assign the inputValue attribute to the inputText value.
    When using the declarative component on a page...
    - Create a String property in the page's backing bean
    - Assign that property to the declarative component's inputValue attribute
    Then I can access the backing bean property to get the inputText value.
    Brad

  • How do you reset inputText values in a dataTable?

    I'm having what must be a simple and common problem,
    but nothing I've tried has solved it. I want to be
    able to refresh (reset) the inputText field values in a dataTable.
    I have a dataTable that holds required inputText components.
    I want to have a "cancel" button which would abandon any edits
    on these components and refresh (reset) them with their backing values,
    as well as removing the last row from the table (used to enter a
    new record). Because the inputText components are required,
    I made the cancel button immediate. I don't know what code I can
    put in the button's actionListener. Right now, the displayed values
    survive the round trip to the server and back to the browser, but
    I want them to be reset to their backing values.
    Here is the page, and the backing bean of a test example:
    <%@ include file="../include/taglibs.jsp" %>
    <h:dataTable id="table" value="#{pc_Test.list}" var="x">
        <h:column>
            <h:panelGroup>
                <h:inputText id="label_value" required="true" value="#{x.value}" />
                <h:message for="label_value"/>
            </h:panelGroup>
        </h:column>
        <f:facet name="footer">
            <h:panelGroup>
                <h:commandButton id = "btnn" value="new row" actionListener="#{pc_Test.newRow}" /> 
                <f:verbatim>  </f:verbatim>
                <h:commandButton id = "btnu" value="update" actionListener="#{pc_Test.update}" />  
                <f:verbatim>  </f:verbatim>
                <h:commandButton id = "btnr" value="cancel" immediate="true" actionListener="#{pc_Test.cancel}"/>
            </h:panelGroup>
        </f:facet>
    </h:dataTable>
    <f:verbatim>Summary=</f:verbatim>
    <h:outputText value="#{pc_Test.listString}" />
    package pagecode;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.event.ActionEvent;
    public class TestPage {
        public static class Example {
            public Example(String value){this.value = value;}
            public String getValue() {return value;}
            public void setValue(String value) {this.value = value;}
            public String toString(){return getValue();}
            private String value;
        public TestPage(){
            list.add(new Example("a"));
            list.add(new Example("b"));
            list.add(new Example("c"));
        public List getList() {return list;}
        public String getListString() {return list.toString();}
        public void update(ActionEvent event){}
        public void cancel(ActionEvent event){
            if (list.size()>3)
                list.remove(list.size()-1);
        public void newRow(ActionEvent event){
            list.add(new Example(""));
        private boolean readOnly;
        private List list = new ArrayList();
    }If it makes a difference, my implementation of JSF is MyFaces. Thanks!

    bump
    I'm not happy with having javascript reseting fields in a table before submitting:
    there's a noticable screen flash, and I'd like a server-side solution anyway.
    Question: UIInput has methods getSubmittedValue and setSubmittedValue,
    so I can use these to ignore or clear submitted values when I press an
    immediate command button. This takes care of subclasses like HtmlInputText
    but not for data tables. Is there a way to manipulate all the submitted values
    of a data table?

  • Append string to stringbuffer in same line

    I have stringbuffer in which i append string thiesestring is of variable lengt
    has different value .I want that when i append string to stringbuffer it append
    to same line .I use append method of stringbuffer.But the whole value is not
    in same line it breaks into many line all lines are not of same size.
    Thanks

    Try making the textarea larger and see if it still
    shows on a new line...Textarea width is very large .There are many line break sometimes all lines
    are of different length so there is no issue of word wrap .I check the output
    sometimes it gives newline when it encounter space but not always .there are also spaces in single line .Sometimes it gives new line when it encounter >
    and sometimes it continue in same line after enconter > .
    Thanks

  • Passing inputText value with command Button

    Hi,
    As i am new in JSF i dont know how to pass my inputtext value to backing bean with my commandbutton...
    My JSF code is.
    <h:form id="form3">
              <h:outputLabel for="" id="OL_Select_Case" value="Select Case" style="background-position: 100%; background-repeat: repeat; width: 100%; background-color: Gray"></h:outputLabel>
              <br>
              <h:inputText id="I1_Select_Case" value="#{ComplaintDetailsBean.caseNo}"></h:inputText>          
              <h:commandButton id="C1_Select_Case" value="Select Case" style="background-color: transparent;" action="/Maintanance1.faces"></h:commandButton>
              <br>
              <br>
              <h:inputText id="I2_Select_Owner"></h:inputText>
              <h:commandButton id="C2_Select_Owner" value="Select Owner" style="background-color: transparent ;"></h:commandButton>
              <br>
              <br>
              <h:selectOneMenu id="sel_owner" value="#{OwnerBean.owner}">
              <f:selectItems id="sel_item_owner" value="#{OwnerBean.perInfo}"/>          
              </h:selectOneMenu>
                <h:commandButton id="C3_Assign" value="Assign" style="background-color: transparent;" action="#{OwnerBean.getDetailThree}">
              <f:param name="caseNo_owner" value="#{ComplaintDetailsBean.caseNo}" id="caseNo_owner"/>
              </h:commandButton>
         </h:form>
         I want to pass value of inputtext "I1_Select_Case" with my commandbutton "C3_Assign" to my backing bean i.e. "OwnerBean.java"
    I have used here param tag....but its not working ....
    Plz suggest me...
    Regards.
    Shrikant.

    No its still not working.My JSF code is....
         <h:form id="form3">
              <h:outputLabel for="" id="OL_Select_Case" value="Select Case" style="background-position: 100%; background-repeat: repeat; width: 100%; background-color: Gray"></h:outputLabel>
              <br>
              <h:inputText id="I1_Select_Case" value="#{OwnerBean.comCaseNo}"></h:inputText>          
              <h:commandButton id="C1_Select_Case" value="Select Case" style="background-color: transparent;" action="/Maintanance1.faces"></h:commandButton>
              <br>
              <br>
              <h:inputText id="I2_Select_Owner"></h:inputText>
              <h:commandButton id="C2_Select_Owner" value="Select Owner" style="background-color: transparent ;"></h:commandButton>
              <br>
              <br>
              <h:selectOneMenu id="sel_owner" value="#{OwnerBean.owner}">
              <f:selectItems id="sel_item_owner" value="#{OwnerBean.perInfo}"/>          
              </h:selectOneMenu>
                <h:commandButton id="C3_Assign" value="Assign" style="background-color: transparent;" action="#{OwnerBean.getDetailThree}">
              <f:param name="caseNo_owner" value="#{OwnerBean.comCaseNo}" id="caseNo_owner"/>
              </h:commandButton>
         </h:form>
         My OwnerBean's code is:-
    public String getCaseNo() { 
    return caseNo; 
    public void setCaseNo(String caseNo) { 
    this.caseNo = caseNo; 
    public String getComCaseNo() { 
         return com.getCaseNo(); 
         public void setComCaseNo(String caseNo) { 
         com.setCaseNo(caseNo); 
    public String getDetailThree() { 
         FacesContext context = FacesContext.getCurrentInstance(); 
         HttpServletRequest myRequest = (HttpServletRequest)context.getExternalContext().getRequest(); 
         HttpSession mySession = myRequest.getSession();         
         //String caseNo = myRequest.getParameter("case_No");
         setCaseNo(myRequest.getParameter("caseNo_owner"));
         String owner2=getOwner();
         System.err.println(">>>>>>>>>>>>>>>>>BACKING BEAN ENTITYDETAILS>>>"+getComCaseNo()+"||||"+owner2);
         //javax.servlet.RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/complaintDetailsPop.faces");
         //String custName= request.getParameter("Name");
         //System.out.println("Name = "+custName);
         //request.setAttribute("Customer_Name","Irfan");
         //request.setAttribute("First_Name","Shrikant");
         //dispatcher.forward(request,response);
         //FacesContext fc = FacesContext.getCurrentInstance();
         //ServletContext sc = (ServletContext) fc.getExternalContext().getContext();
         //myRequest.getSession().setAttribute("entity_ID",entityID);
         //sc.getRequestDispatcher("/Assign_Case.faces");          
         //========---------------********************************************************----------------------------------
         return("getdetails"); 
         //String entityID = getFacesParamValue("entityIDParam"); 
         }Plz suggest me....

  • Default inputText value

    Hi!
    I created a public method in a my application module which takes 3 parameters (String).
    I performed a drag&drop of this method from my Data Control to a JSF page to create an ADF parameter form.
    It's working very well but now I need to set default values for those fields.
    So in my variable iterator, I added the defaultValue property to the variable :
    <variable Type="java.lang.String" Name="my_war" IsQueriable="false" DefaultValue="${bindings.MyIterator.currentRow.MyAttribute}"/>
    But it just doesn't work, no error, nothing... I also tried with an "harcoded" value like "aaa" instead of the EL but the result is the same.
    Do you have any idea?
    Thanks in advance for your help!

    Thanks for your reply.
    I'd like to avoid the use of a managed bean because my form is big (not 3 parameters but 20).
    For the default value, do you have something like :
    <variableIterator id="variables">
    <variable Type="java.lang.String" Name="your_var"
    IsQueriable="false" defaultValue="....." />
    </variableIterator>
    Then in your jsp :
    <af:inputText value="#{bindings.your_var.inputValue}"
    ... />
    Thanks.

  • Why are inputText values within a dataTable tag lost when validation fails?

    Hi, As a test, I have three fields outside of a dataTable tag and three fields inside a dataTable tag.
    I enter data into field1, field3 and all of the fields within the dataTable. Field2 is left empty and is required. I press the 'go' button which gets to the validation phase and immediately redraws the web page and says 'value is required' which is what it should do.
    What shocks me at this point is that the field values inside the datatable are lost. They are back to their original blank values.
    It like even though validation fails(the model is not updated), the datatable is redrawn using the model data which is still blank. The renderer forgets that those fields within the datatable had data typed into them.
    Is this a bug? and how do I get around it? I don't want to lose what was typed in.
    here is my example:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <body>
    <f:view>
    <h:form>
    <h:panelGrid columns="2">
    <h:outputText value="field1"/><h:inputText value="#{example.field1}"/>
    <h:outputText value="field2 required"/><h:inputText required="true" value="#{example.field2}"/>
    <h:outputText value="field3"/><h:inputText value="#{example.field3}"/>
    </h:panelGrid>
    <h:panelGrid columns="1">
    <h:outputText value="dataTable"/>
    <h:outputText value="---------"/>
    <h:dataTable value="#{example.lines}" var="line">
    <h:column>
    <h:inputText value="#{line.text}"/>
    <f:facet name="header">
    <h:outputText value="column1"/>
    </f:facet>
    </h:column>
    </h:dataTable>
    <h:commandButton value="go"/>
    <h:outputText value="errors"/>
    <h:outputText value="---------"/>
    <h:messages showDetail="true"/>
    </h:panelGrid>
    </h:form>
    </f:view>
    </body>
    </html>
    package test;
    import java.util.ArrayList;
    public class Example {
         private String field1;
         private String field2;
         private String field3;
         private ArrayList lines = new ArrayList();
         public Example() {
              lines.add(new Line());
              lines.add(new Line());
              lines.add(new Line());
         public String getField1() {
              return field1;
         public void setField1(String field1) {
              this.field1 = field1;
         public String getField2() {
              return field2;
         public void setField2(String field2) {
              this.field2 = field2;
         public String getField3() {
              return field3;
         public void setField3(String field3) {
              this.field3 = field3;
         public ArrayList getLines() {
              return lines;
         public void setLines(ArrayList lines) {
              this.lines = lines;
    package test;
    public class Line {
         private String text;
         public String getText() {
              return text;
         public void setText(String text) {
              this.text = text;
    <managed-bean>
    <managed-bean-name>example</managed-bean-name>
    <managed-bean-class>test.Example</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>

    I posted about this bug a month ago and then again twice more (as recently as last week) and got zero responses. I piddled away so much time thinking I was crazy to believe this framework could have such a gaping hole in the fuselage that it was crazy. The more unsettling part too was the fact that the logging in the jsf code is so pathetic that you have no clue even with it on full that it's throwing your data away, they have unit tests in their code, including in-container tests, and they didn't have a test that turned this up? Hello? A project that has been going for this long should not have torture traps like this in it. Sorry for my negative post. To end on a positive note, I am looking forward to finding out about oracle's stuff. And Sun wonders why no one uses their stuff.
    Does the Oracle JSF implementation require OAS?

  • Append string in BPEL

    Hello,
    I have three values coming in the XML elements like
    FirstName, LastName and ZipCode
    I want to append these 3 using inside BPEL (using BPEL way) and then at the end also append current TimeStamp.
    So final appended string will look like FirstNameLastNameZipCodeTimeStamp
    How can i go about doing this appending ? also, Do I have to create a holder element that will hold this appended string ?
    thx
    d

    Hi,
    Use Concat(), inside Assign activity, give the values like, concat(FirstName,LastName,ZipCode, currectTime), offcourse this FirstName and other values will come from XML elements which you can select in the Expression Builder
    concat(bpws:getVariableData('inputVariable','payload','/ns4:FirstName'),bpws:getVariableData('inputVariable','payload','/ns4:LastName'),bpws:getVariableData('inputVariable','payload','/ns4:ZipCodeName'),xp20:current-time())
    Next you can create a new Variable and assign this value concat() to it.
    -Yatan

  • Distinguishing between empty string and null values

    hi all,
    I am using an ODBC connection to connect my java app to database using JDBCODBC driver. I have 2 columns 'aColumn' and 'bColumn' in my table, both allow null values. I have one row in it, which has null value in aColumn and empty string in bColumn. I retrieve this row's data and assign it to 2 columns : 'aColumnVar' and 'bColumnVar' respectively. I find out that both 'aColumnVar' and 'bColumnVar' variables has null values (although bColumnVar should has an empty string as its value). Now my ODBC connection Data Source has the option "Use ANSI nulls, paddings, and warnings" ON. I turn it off and try again. This time both 'aColumnVar' and 'bColumnVar' variables has empty string as values (although aColumnVar should has null as its value).
    How can I make sure that i can get the data exactly as it is in the database in my variables?
    Thanks

    there is a wasNull() method on ResultSet. After you
    have obtained the value of a column e.g. by calling a
    method like getString you can call wasNull and if it
    returns true then the value on the database is null.
    Check the java docs, it might explain it better
    http://java.sun.com/j2se/1.4.1/docs/api/java/sql/Result
    et.html#wasNull()I am using MS SQL Server 7.0 under Windows NT 4.0 with JDK 1.2. My ODBC connection Data Source has to have the option "Use ANSI nulls, paddings, and warnings" ON.
    I try the wasNull() method but it is doing the same thing i.e. telling me that a column is null when in database it is null (right); and a column is null when in database it is an empty string (wrong). I suspect it is something to do with the JDBC-ODBC driver I am using.

  • Get inputText value from ADF table

    Hi
    I have a read-only table and a custom column of inputText for entering values by user. My question is that how can I get inputText values row by row in backing bean?
    I founded some solutions that got values from binding, but it isn't useful for me. I should get the user entered values.
    I am so confusing than can't find any solution for this common need.
    Thanks
    Ali

    hi user,
    My question is that how can I get inputText values row by row in backing bean?
    have a listener do as like of dvohra says.if it is not work for you means.
    have DCIteratorBindings class grab the corresponding iterator then iterate row by row to get the value. but it should a persistent attribute.
    thanks

  • How Can I replace newScale Text Strings with Custom Values?

    How Can I replace newScale Text Strings with Custom Values?
    How can I replace newScale text strings with custom values?
    All  newScale text is customizable. Follow the procedure below to change the  value of any text string that appears in RequestCenter online pages.
    Procedure
    1. Find out the String ID of the text string you would like to overwrite by turning on the String ID display:
    a) Navigate to the RequestCenter.ear/config directory.
    b) Open the newscale.properties file and add the following name-value pair at the end of the file:res.format=2
    c) Save the file.
    d) Repeat steps b and c for the RmiConfig.prop and RequestCenter.prop files.
    e) Stop and restart the RequestCenter service.
    f) Log  in to RequestCenter and browse to the page that has the text you want  to overwrite. In front of the text you will now see the String ID.
    g) Note down the String ID's you want to change.
    2. Navigate to the directory: /RequestCenter.ear/RequestCenter.war/WEB-INF/classes/com/newscale/bfw.
    3. Create the following sub-directory: res/resources
    4. Create the following empty text files in the directory you just created:
    RequestCenter_0.properties
    RequestCenter_1.properties
    RequestCenter_2.properties
    RequestCenter_3.properties
    RequestCenter_4.properties
    RequestCenter_5.properties
    RequestCenter_6.properties
    RequestCenter_7.properties
    5. Add the custom text strings to the appropriate  RequestCenter_<Number>.properties file in the following manner  (name-value pair) StringID=YourCustomTextString
    Example: The StringID for "Available Work" in ServiceManager is 699.
    If you wanted to change "Available Work" to "General Inbox", you  would add the following line to the RequestCenter_0.properties file
         699=General Inbox
    Strings are divided into the following files, based on their numeric ID:
    Strings are divided into the following files, based on their numeric ID:
    String ID  File Name
    0 to 999 -> RequestCenter_0.properties
    1000 to 1999 -> RequestCenter_1.properties
    2000 to 2999 -> RequestCenter_2.properties
    3000 to 3999 -> RequestCenter_3.properties
    4000 to 4999 -> RequestCenter_4.properties
    5000 to 5999 -> RequestCenter_5.properties
    6000 to 6999 -> RequestCenter_6.properties
    7000 to 7999 -> RequestCenter_7.properties
    6. Turn off the String ID display by removing (or commenting out) the line "res.format=2" from the newscale.properties, RequestCenter.prop and RmiConfig.prop files
    7. Restart RequestCenter.
    Your customized text should be displayed.

    I've recently come across this information and it was very helpful in changing some of the inline text.
    However, one place that seemed out of reach with this method was the three main buttons on an "Order" page.  Specifically the "Add & Review Order" button was confusing some of our users.
    Through the use of JavaScript we were able to modify the label of this button.  We placed JS in the footer.html file that changes the value of the butt

  • Mapping - Split string separated by value ;

    Hi,
    I have a mapping where 4 source values makes the key for 1 target value.
    In the target string (result after value mapping) i want to get the last value in the string "TargetValue1.
    <i>SourceValue1;SourceValue2;SourceValue3;SourceValue4;TargetValue1</i>
    Can this be done without UDF? If not how should the UDF look like?
    Best Regards
    /Claes
    Message was edited by:
            Claes Widestadh

    Hi,
    Yes I have concatenated 4 source values into one string to use them as key in a value mapping to get the target value. The result from the value mapping is a string with the 4 source value + the target value. What I want to do now after the value mapping is to spit this string to get only the target value.
    The string looks like this
    Source sting
    example 1) CC;-;ADJ;fre;
    example 2) CR;+;ADJH;TD;
    Target string:
    example 1) CC;-;ADJ;fre;<b>985</b>
    example 2) CR;+;ADJH;TD;<b>553</b>
    It is the value 985 or 553 that i want to map into the target field. The position for the target value (985, 553) is not a fixed position because of that the length of the source values can vary (see example obove). That means that I cant use the substring right?
    /Claes
    Message was edited by:
            Claes Widestadh
    null
    null

  • How to set List of String as variable value in BPEL

    I am using java embedding to invoke a method which returns a list of strings. I need to set these values in a variable in BPEL to be used later. I am getting following error while setting the value.
    <May 2, 2012 5:18:20 PM IST> <Error> <oracle.soa.bpel.engine.dispatch> <BEA-000000> <failed to handle message
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}mismatchedAssignmentFailure}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    parts: {{
    summary=<summary>Mismatch Assign.
    cannot set a nonelement value to an element-based variable.
    An attempt to assign a nonelement value to an element-based variable failed.
    Verify the BPEL source for invalid assign activities.
    </summary>}
    Following is the java code
    List<String> providers = Registory.getProviders("1");
    setVariableData("providerList", providers);
    I have defined a xml element in the wsdl defintion:
    <xsd:element name="providerList">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="providerId" type="xs:string" maxOccurs="unbounded" minOccurs="0" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    providerList variable is of type "providerList".
    What else do I need to do to convert the List to the xml elements ?

    Well I believe this is not officially mentioned anywhere, but this is the limitations for the java embedding activity. You can assign value to a single variable or to the single part element of variable only. I suggest you go with a java web service. you can check more details on java embedding activity @ http://docs.oracle.com/cd/E21764_01/integration.1111/e10224/bp_java.htm
    void setVariableData(String name, Object value)
    void setVariableData(String name, String part, Object value)
    void setVariableData(String name, String part, String query, Object value)

  • Use selectItem to update inputtext value

    I read through many posting in this forum regarding on how to use valuechangelistener in the selectonemenu tag to update an inputtext value through selectItem's value. Unfortunately, it didn't solve the problem I am facing.
    In a form on my JSP page, I have a list of InputText and some which has validator. I have a selectonemenu that renders out when the validator see that the value of the inputtext box is not specific enough. And this selectonemenu will show up all possible value that it could be. By selecting the selectItem it will replace the value of the InputText box.
    Possible solution was to push the valuechenageevent to happen in the UPDATE_MODEL_VALUES but the problem is when i submit the form, the lifecycle sees the validation error in the other InputText since i have not input anything in (if i did that) and will skip that phase, thus causing the value of the selectItem not able to replace the value of the inputtext box.
    Another way i did was to add the immediate attribute in the selectonemenu, this does update the inputText however the value of the other inputtext i have previously input will disappear which I think it happend becuase using immediate attribute will skip UPDATE_MODEL_VALUES phase again.
    I will descript the work flow of my JSP page.
    1. the form will populate a list of InputText and I enter the value in
    2. I will then hit the commandbutton which will trigger the validation
    3. on one of the validator it will render out a selectonemenu
    4. selectonemenu tag has valuechangelistener attribute which will update the inputtext value with the selectItem value which i have selected.
    Here is my JSP.
    <f:view>
    <h:form >
    <h:dataTable binding="#{myBean.table }" value="#{myBean.list}" var="bean" >
    <h:column>
    <h:inputText value="#{bean.input2 }" />
    <h:inputText id="Value" required="true" validator="#{myBean.validateInput }" value="#{bean.input }">
    <f:validateLength minimum="1" maximum="500"/>
    </h:inputText>
    <h:message for="Value"/>
    <h:selectOneMenu valueChangeListener="#{myBean.processValueChange}" value="#{bean.input }" onchange="javascript:form.submit();" rendered="#{myBean.nameList != null}" >
    <f:selectItems value="#{myBean.nameList}" />
    </h:selectOneMenu>
    </h:column>
    </h:dataTable>
    <h:commandButton value="add" action="#{myBean.add}" />
    </h:form>
    </f:view>
    I am thinking of maybe having commandbutton to submit form using onclick but don't know how that works out exactly or having individual form for every index of the datatable column. But then again i don't know how it would react to the outter forum that includes the whole datatable.
    Please can someone help me out and tell me how to overcome the problem when validator is in use for the InputText. I have been trying to figure this out for days!!!!

    hey.. I've read your post a couple of times and can't understand what your trying to do.. could you leave out what you think you need to do and just write what you want it to do? that might be why noone has replied?!!?

  • Illustr. CS5 Appending -01 onto filenam when export .jpg

    Hi, I'm having two really annoying problems when I export images from Illustrator CS5.
    Problem no.1
    Anytime I export an image file, Illustr always appends -01 onto the end of the filename even into an empty folder. Never had this problem before. I'm on Lion. Anyone think it may have to do with that?
    Prob no.2
    Also, is there a way to make Illustrator default to having the "Use Artboard" checked the Export dialogue?? It's so annoying having to check that everytime I need to export an image, which for producing comps is ALL the time.

    You know what,... you're absolutely right. It wouldn't make sense when there are several artboards. Right now I'm just hammering on this project and the sketch phase is just taking forever, using [one] artboard for each file. Just needed to quickly pump out a bunch of comps. [probably a better way to do it].
    It makes sense that exporting artboards should be numbered for you BUT if exporting only one, you'd think the system would be smart enough NOT to throw a number on the end. Whatevs.
    I should have thought of this before I posted, but I just remembered I could have been using the save-for-web dialogue. THAT remembers exactly where you last exported to. Yea, Mac has recent places too, shoulda thought of that as well... 
    Theyve obviously thought this thru more than me...   Thanks a million for your help!!

Maybe you are looking for

  • Disable addressbar in Assigned Internet Explorer

    In my assigned user account I want to run Internet Explorer to display the configured start page. This works. However, the user is still able to see the address bar and can enter a new address. Does Modern IE support hiding the address bar like Deskt

  • Reports available for disconnected licenses

    I am using NI VLM 3.1.  All my licenses are disconnected.  Even my 'server' is not on a network.  Is is possible to generate a report that shows me all the licenses residing on each computer?

  • Where is "PLSHPROF"? It's supposed to be in the $ORACLE_HOME/bin dir

    According to Oracle: The plshprof command-line utility (located in the directory $ORACLE_HOME/bin/)and yet on my Windows 7 machine, running 11gR2 J@J-PC /cygdrive/c/oraclexe $ find . -iname pls* ./app/oracle/product/11.2.0/server/plsql ./app/oracle/p

  • Forecast Consumption in SNP for shipped qty's

    Hello experts, I got a question for forecast consumption in SNP and whether forecast stays "consumed" or not after a customer orders gets shipped (Post Goods Issue). My example is: I have a weekly bucket forecast qty of 100 in DP and release this to

  • Connecting routers. ASA and 2921

    Here is a link to the previous post to explain where we were. https://supportforums.cisco.com/message/4133793#4133793 OK.. I have an ASA 5510 and a 2921. The ASA is used and vpn/firewall and and internet, The 2921 is used for inter-vlan routing.. My