Can Illustrator modify a design to be tiled, like for backgrounds?

I know Photoshop has a way of doing it (where is that function again?) where it can take an image and you can offset it or something so if its put as a tiled background on a web page, it will all fit it.  Does Illustrator have a way of doing something similar?

Look up Pattern Swatch in the help files.

Similar Messages

  • Can I modify the value of an enviroment entry for an EJB without having to re-deploy.

    I wish to modify the value of an envrioment entry for an EJB. The entry already exists and has been created using
    <env-entry>
    <env-entry-name>myFlag</env-entry-name>
    <env-entry-type>java.lang.String</env-entry-type>
    <env-entry-value>true</env-entry-value>
    </env-entry>
    I can access the value using code similar to the following:-
    InitialContext initialContext = new InitialContext();
    String value = (String) initialContext.lookup("myFlag");
    However if I try the following:-
    InitialContext initialContext = new InitialContext();
    initialContext.rebind("myFlag", "false");
    I get an OperationNotSupportedException thrown.
    Do I need to use LDAP directly (rather than through JNDI) to modify this value or is there another / better way? If I do need to use LDAP directly what would the code look like ?

    Hi,
    As per J2EE specification:
    Naming environment entries allow customization of a component during deployment or assembly without the need to access or change the component?s source code. The container implements the naming environment, and provides it to the component instance through a JNDI naming context.
    The Deployer can modify values of environment entries that have been previously set by the Application Component Provider and/or Application Assembler.
    Generally only those variables/properties are set in environment entries which are likely to be different on various Application server configurations/installations, so it is not required/advisable to change these entries programmatically. Any way iAS-6.0/6.5 doesn't support changing environment entries programmatically, it binds all the JNDI names during Server startup after reading it from the registry.
    For your purpose you can use a boolean variable in your code to set your flag, and may be put it into session.
    Please feel free to ask further questions.
    Sanjeev,
    Developer Support, Sun ONE Application Server-India.

  • Can I modify the design notes status list?

    I'm one of the people who quite likes using design notes.
    Does anyone know if I can modify the standard status list?
    I'd like to add a couple of new items so that I do not have
    to always add them as value pairs.
    DREW

    We ran into the same issue so we chose to create our own email submit button. We even allowed our users to enter their email, subject line and body using response boxes. We used the standard button and added the following Javascript on the click event.
    var mail;
    var vAddress = xfa.host.response ("Please enter the email address","EMAIL RECEIPIENT","[email protected]",0);
    var vSubject = xfa.host.response ("Enter subject line","WHAT IS EMAIL ABOUT","Here is the file you wanted",0);
    var vBody = xfa.host.response ("Enter body of email","Details", "Here is the file you requested. Thanks for your time",0);
    if (vAddress == 0 || vSubject == 0)
    xfa.host.messageBox ("Email Cancelled","This file will not be emailed",0,0);
    else
    mail = "mailto: " + vAddress + "?subject=" + vSubject + "&body=" + vBody;
    event.target.submitForm({
    cURL: mail,
    bEmpty: true,
    cSubmitAs: "XDP",
    cCharset: "utf-8"
    If you want the body of the email to be blank just remove:  + "&body=" + vBody
    Hope that helps

  • Can one help me design a perfect test code for database conncurrent access

    Hi everybody,
    I am stuck!! I want to test how a database server behaves when n (e.g. 100) users concurrently doing: connect, retrieve, update. Required is that all connections are kept open until the test is terminating. In other word, 100 users login at the same time, retrieving the data (different one) at the same time, and updating in the same time.
    As a solution, I have let the main thread to create 100 threads in for loop, set them to be daemon, and call join() on them. The threads are of TestClass that implements Runnable. In the run method, I do the following in sequence: connect, retrieve, update, retrieve, end. The code is shown down (without cserver info and logging stuff for simplification purposes).
    The problem is that the logger shows that the thread tasks are done sequentially, i.e.,
    - thread(TH)-1 connects,
    - TH-1 retrieves,
    - TH-1 updates,
    - TH-1 retrieves,
    - TH-2 connects,
    - TH-2 retrieves.
    - TH-2... and so on.
    I thaught that I will get something like: TH-1 connects, TH-2 connects, TH-1 retrieves, TH-3 connects, TH-3 retrieves, TH-2....
    What did I do wrong? or my expectations were wrong? if the later is correct, what is the right way to establish a reasonable test class?
    public class TestClass implements Runnable {
    public void run() {
    // connect me      
    Connection connection = getConnection();
    // give me this amount of data
    String[]  data = getSomeData(connection);
    // do some update
    updateData(connection, data);
    private void updateData(Connection connection, String[] data) {
    // change data and save it back to the database
    private String[] getSomeData(Connection connection) {
    // get data
    private Connection getConnection() {
    // establish a connection and return it back
    public class Main {
    public static void main(String[] args) {
    Random generator = new Random();
    for (int i = 0; i < 100; i++) {
    thread = new Thread(new TestClass());
    thread.setDaemon(true);
    thread.start();
    try {
    thread.join(); // main waits until all threads are done
    } catch (InterruptedException iex) {
    threadMessage("I have been interrupted!!");
    }Edited by: greenearth09 on May 12, 2009 2:07 PM
    Edited by: greenearth09 on May 12, 2009 2:09 PM
    Edited by: greenearth09 on May 12, 2009 2:10 PM

    Hi again,
    I got strange behavior that never ends even if I used 5 threads:
    Thread[] ths = new Thread[5];
    for (int i = 0; i < 5; i++) {
          thread = new Thread(new TestClass());
          thread.setDaemon(true);
          thread.start();
          ths[i] = thread;
    for (int i = 0; i < 5; i++) {
    try {
    ths.join(); // main waits until all threads are done
    } catch (InterruptedException iex) {
    threadMessage("I have been interrupted!!");

  • How can I modify data from a Transparent Table without ABAP code.

    Hi,All
    How can I modify data from a Transparent Table (like TCURR),  and important thing is I want do all that with no ABAP code here. It is like that we always do that in a Oracle database use TOAD or PLSQL third party tools, with no script code here.
    I had fond that there is a way can do that:
    1, type 'se11',and Display Database table 'TCURR', click Contents, then click Execute to display all data
    2, type '/h' and let debugging on
    3, select one of this data then click 'Display',enter in debugging system.
    4, then make a breakpoint in the code. But... display a dialog let I type a 'ABAP Cmnds', I want to know what can be type in for that?
    and, My system is ECC6.
    thank you all
    Edited by: xuehui li on Aug 20, 2008 6:30 PM

    Hello,
    Your approach (with Vijay's suggestion) MAY work.  However, depending on how tight security is at the company that you are working at you may or may not be able to acutaly change the value of the SHOW field to EDIT.  This will be especially true if you are working in a Production environment.  Vijay's other comment is true as well.  This is not a recommended approach to change data (especially data with a financial impact like TCURR) in a production environment.  The auditors will not be impressed.
    Explore the option of a maintenace view or look at tcode TBDM to upload a file which includes daily rates from providers like Reuters or try tcode s_bce_68000174 which is a maintenance view on TCURR.
    Regards
    Greg Kern

  • I do not see where to enter IP addresses in the Open VPN setup. Also, how can I set it up so that I can choose different servers in the same way as I can currently choose them with my VPN app but for PPTP?

    I think I have it working on my iPhone 5. But, I do not see how I can control the exit point that I would like for the VPN. Are all the exit points shown in the VPN setting now going to work with Open VPN, or do they remain PPTP? If I am reading correctly, they look like they remain PPTP. If I cannot control the exit point for open VPN, which exit point is the default in the profile you provided me?I note that Open VPN Connect does not work with any of the new 64 bit devices like the iPhone 5S, the iPad Air, and the new iPad MIni. Is there any chance that you guys will come up with an update for your app so that open VPN can be made to work on all iOS devices? That would be nice, particularly if the Open VPN Connect app does not give me a choice of exit points.Thanks,
    I do not see where to enter IP addresses in the Open VPN setup. Also, how can I set it up so that I can choose different servers in the same way as I can currently choose them with my VPN app but for PPTP?
    Just a quick note to tell you that Open VPN has updated their app so that it is compatible with 64 bit ARM devices like the iPhone 5S, the iPad Air, and the iPad Mini Retina.That does not resolve the problem of how to easily choose among the various possibilities for the exit server. We need to find an easy way to choose.

    Thank you for trying the new Firefox. I'm sorry that you’re unhappy with the new design.
    I understand your frustration and surprise at the removal of these features but I can't undo these changes. I'm just a support volunteer and I do not work for Mozilla. But you can send any feedback about these changes to http://input.mozilla.org/feedback. Firefox developers collect data submitted through there then present it at the weekly Firefox meeting
    I recommend you try to adjust to 29 and see if you can't make it work for you before you downgrade to a less secure and soon outdated version of Firefox.
    Here are a few suggestions for restoring the old design. I hope you’ll find one that works for you:
    *Use the [https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/ Classic Theme Restorer] to bring back the old design. Learn more here: [[How to make the new Firefox look like the old Firefox]]
    *Use the [https://addons.mozilla.org/en-US/firefox/addon/the-addon-bar/ Add-on Bar Restored] to bring back the add-on bar. Learn more here: [[What happened to the Add-on Bar?]]

  • My mastro page is not the final page. I can't modified it. The mastro is long 800px but in the design page is long 1000, why?

    my mastro page is not the final page. I can't modified it. The mastro is long 800px but in the design page is long 1000, why?

    Than you Aish for answer to me
    is the first time I use Adobe Muse, my problem is the following:
    I want me to do a landing page with a preload.
    I have done one page very long (5400px)  and i worked just in one mastro because i didn't need other pages.
    I have made a group with my menu and the slide. I put the menu at the bottom of the slide because i want the slide appear first of the menu: like a presentation... once the presentation ended scrolling down and my menu will appear and so the site. I want me to do the effect of the menu fixed and everything beneath scrolling up and down.
    When i have done it, i realized it couldn't work, because the slide together with the menu remain fixed, but the slide covered everything beneath.!!!! I realized again tha maybe it's better having a page for preload and then let the website to start, so i change my pages in adobe muse.
    I added another page in my plan window in adobe muse,  i made another mastro page i change the properties in the page make it shorter  and i drag the new mastro in the new page, then i copied in the empty page my slide.From there in ahead it doesn't work anything in my mastro page.
    Then i deleted everything but not the landing page of the beginning, because i found a preload widget in internet, but now when i activate my mastro in the page in the Plan mode, and with the double click i go inside, i can't modified anything also if i click the option "unlock all in page", and when i go in the site preview everything is uncorrect and it'isn't like my mastro page.
    Sorry for my very long mail and i hope you will understand.
    Thank you again
    regards
    Paola

  • Can I have a decreased / cheaper monthly priced membership for some time, by keeping active only Photoshop CC, Illustrator CC, InDesign CC and Acrobat?

    Hello, and good evening from Athens, Greece.
    I would like to ask a question concerning my CC membership.
    I’ve started 1 and a half year ago by paying 29,99 € for the entire CC (all programs). Now, it’s 49,99 € and I’m having a really difficult time to keep it this way. I’m living in a country which is in the middle of crisis and my profession as a graphic designer, is not an exception to reduced spendings on advertising.
    My question is, can I have a decreased / cheaper monthly priced membership for some time, by keeping active only Photoshop CC, Illustrator CC, InDesign CC and Acrobat? I don’t need for now the other apps. Can I have a membership plan only for those applications? I would very much appreciate your respond, a help and a solution to my issue.
    Thank you very much.
    Michael.
    P.S. Forgot to tell, that I have a purchased Design Standard CS3 Suite. If this helps.

    No... there is a special Photography plan
    Special Photography Plan (includes Bridge)
    http://helpx.adobe.com/photoshop/kb/differences-photoshop-creative-cloud-photography.html
    Every thing else is all or nothing
    Cloud Plans https://creative.adobe.com/plans
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html

  • Can't modify text on Type Overlay in Acrobat Pro 9.0

    I'm trying to modify a menu for a local restaurant. They gave me the file as a .pdf file, and it's listed as a Type Overlay file. Advanced editing and touch up text tool do not work (I'm trying to delete an item that is no longer served).
    The entire menu page comes up as an object / picture, not as text. Using the touch up text tool does delete the desired text, but it changes the entire layout of the page, moving text over several columns and covering existing text. Trying to realign the text by putting space in the missing pieces location just compounds the problem in several bizarre ways.
    How do I determine what type of format this is. It says there are no layers, it appears to be one image, but deleting or changing any portion of the image causes undesired movement of text. How do I delete, or insert text as the menu changes?
    Thanks!
    John

    Here's an update to the problem I was having.
    I couldn't find any way to edit the pdf "as is" in Acrobat, but through obstinance and trying everything at my disposal that had even a slim chance of working, I came up with a solution.
    By opening the pdf up in Adobe Illustrator, it gave me the ability to cut / paste, delete and modify the text without problems or errors. I was then able to resave as a pdf. The file works great, and though I still can't modify it in Acrobat, Illustrator works fine until I get the original file.
    On a related note, Illustrator allowed me to remove the menu background from the pdf file and save it (the text only) as another pdf, getting rid of clutter but maintaining alignment so it still prints on the menu paper and stays in line with the graphics.
    I hope this helps others!
    John

  • How can I modify the logon screen on the portal

    Hi,
    We have designed some BI queries, when we open Query Designer and execute them (CTRL + R) an Internet Explorer open and ask us to log on this BI Portal.
    On this Portal login screen, I can only provide my user name and password.
    We would like the user to be able to select the language and to change is password.
    How can we enable those changes ?
    Thanks,
    Hugo

    Although in iSQL*Plus 9.0.1 you can't modify the default
    login HTML, you can create your own static HTML "login"
    page. Just make sure the correct login credential
    parameters are passed to the iSQL*Plus URL. Your users will
    have to call your new static page instead of the default
    iSQL*Plus login page.
    Copy the HTML from the default login page and change the
    FORM ACTION to include the host and port:
    <FORM ACTION="http://host.port/isqlplus" METHOD="post">
    and change the "Connection Identifier" field to a drop down
    list of the connection identifiers you want:
    <TD CLASS="label">Connection Identifier:</TD>
    <TD>
    <SELECT NAME="sid">
    <OPTION SELECTED>SID1</OPTION>
    <OPTION>SID2</OPTION>
    <OPTION>SID3</OPTION>
    </SELECT>
    </TD>
    Add your own logo, joke of the day, and put it in
    production....
    iSQL*Plus 9iR2 has an option for a drop down list of connect
    identifiers to be configured in the default login screen.
    This allows sys admins to restrict the DB servers that can
    be accessed. No other connect identifiers can be used, even
    from CONNECT commands in scripts.
    On the OTN home page there seems to be an "early access"
    link for down loading the 9i Database R2.
    -- CJ

  • How can I modify / update T002C's only one field

    Hi everyone ;
    I would like to write dialog programing code. After I am writing call screen screennumber, I would like to generate a design in screen painter.But screen painter doesn't open. There is an error.
    Error says ' EU_SCRP_WN32 : timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'#' and I search about this error. I solve the problem. Solution is T002C table's secondary language field must be writing , not empty.
    When I would like to update the field's of T002C tables sap is giving an error. Error is 'Table maintenance not allowed for table T002C'.
    How can I modify the field's of table T002C?

    dont know about the stock taking object but may be the grpo object would help
    HTH
    Message was edited by:
            Manu Ashok

  • Can't modify selection that says "Mixed Appearance"

    In older versions of Illustrator, I used to be able to make a selection of multiple objects and give them a stroke or other attribute. Now it says “Mixed Appearance” and I can't do anything to the selection. How do I modify a multi-selection if it says “Mixed Appearance?”

    Having a selection of rectangles (with different strokes), textobject and a gradient mesh I can still change the stroke to a different color for all of them in version CS6.
    So. what's different about your selection?

  • How do I get to use my printer post script fonts in Illustrator and In Design

    I am running the CS2 Suite with Photo Shop, Illustrator, and In Design.  I have purchased a Xerox 8550 post script printer, and it comes with 40 really cool post script fonts. I know that Adobe uses the common files folder in program files to store the fonts, but it dosn't list the fonts that are resident in my printer.  Is there any way that I can tell the common files area that I have these resident fonts, if so, how?
    Thanks,
    Tom

    That would be up to the printer driver. When installed, it should create either a full set of PostScript fonts, a set of bitmap placeholder fonts or offer a way to manage fonts on the printer, including downloading them manually - if allowed. The driver is also the place where to look for font substitution rules. Double-check the manual/ help files for the printer, I'm sure it's explained somewhere...
    Mylenium

  • I own a Mac OSX version 10.4.11 with Illustrator, Photoshop, & In Design CS.  I want to upgrade to a

    I own a Mac OSX version 10.4.11 with Illustrator, Photoshop, & In Design CS.  I want to upgrade to a mac book pro with the latest version of these programs.  Can I do this and how? 
    Thanks, Joan

    I understand that it is difficult to determine which forum to post in since there are so many. This particular forum (sharing and storage) was created to help those transitioning from Photoshop.com to Adobe Revel. I am moving your post to the correct forum so that it can get proper attention.
    I'll put this posting in the installation community so the experts there can help you.
    We also have many other forums relating to other Adobe products
    http://forums.adobe.com/community/
    http://forums.adobe.com

  • Can I modify the Arduino sketch 'LIFA_Base​.pde' to include some motor control

    Hi there,
    I am new to Labview and Arduino. I have two Inertial Measurement Unit sensors and I wish to send the readings to a PC via Bluetooth. I read that I can perform this using the LIFA. Can I modify the Arduino sketch ‘LIFA_Base.pde’ to include some motor control? I wish to use the readings earlier to control the motor to move different directions. At the same time, I wish the readings can be sent continuously to the PC wirelessly?

    The newest LIFA_Base.pde has motor controls. The issue that I see is that the VIs are designed to be connected to the Arduino through serial.
    You could have an Arduino connected to the computer and another Arduino connected to the motors. Each Arduino is equipped with Bluetooth to create the wireless connection.
    Alternatively, and probably easier... create your own case in the LabVIEWInterface.pde to handle Bluetooth commands from the computer. In this case, you would only need one Arduino with Bluetooth (connected to the motors). *Assuming your computer has Bluetooth and you can send Bluetooth commands.
    It is hard to give suggestions without knowing the whole system. Hope this helps.
    Edit: Also, you should upload your Arduino (LIFA) related questions to the LIFA Board: https://decibel.ni.com/content/groups/labview-inte​rface-for-arduino
    CLD Certified 2014

Maybe you are looking for

  • Power View can only print one sheet at a time with Power BI Mobile Apps

    I have PowerView for Excel 2013 on Power BI Preview. I have 2 reports sheet and 2 hidden data sheets on Excel. I'm getting error on Mobile Application in Windows 8 RT tablet. I should see 4 reports in preview page, but I see 2 correct reports and 2 e

  • Problem in Azure SQL Database Basic Tier

    I have a WinForms Application was using Azure SQL Database (Web) It was working fine with web version (for last 2.5 years).  After Microsfot's new offerings of New Tiers of Azure SQL Database,  I tried Basic Tier. Observation for last 24 hours accord

  • PC-UI check code behind Tabs

    Hi all, Does anybody know how to see which ABAP code is triggered when pressing a Tab in a PC-UI application? In CRM5.0 I'm using the Individual Objects (CRMM_PRD_IOBJECT) PC-UI application, and I want to check what is done behind when we go to the C

  • Smart forms Issue

    Hello all , i have a problem i.e  the credit department would like the ability to automatically fax to the customer the statement of account form . Please tell me the possible soulutuins to how to do this, Thanks & Regards,

  • Master Database Migration

    Hello, I need to move/copy a master database from SQL 2005 under Window Server 2003 (32 bit) to another server with Window Server 2008 R2 (64 bit) and SQL 2012. What is the best way to accomplish the task? Thanks Ed Saraf