Wanted: Script to duplicate objects and apply colours

Hi
I am looking to pay someone to write a script which can duplicate objects and apply colours.
I have a full break down of the project together with a Illustrator Action that demonstrates the functionality of the required script.
If you are interested, please email [email protected] for full details.
You can also send me a private message.

big_smile wrote:
- script which can duplicate objects and apply colours.
- Illustrator Action that demonstrates the functionality of the required script.
Can you post a screen shot of the resulting outcome, derived from your current action, so we can see the desired result?

Similar Messages

  • Find inline objects and apply object styles...

    Hi Eveyone,
    I am trying to find placed inline rules and apply object styles through javascript. Because we need some baseline shift to those rules. I getting some error while find the rules. FInd the syntax below,
    app.findObjectPreferences=app.changeObjectPreferences=null;
    app.findChangeObjectOptions.properties =
      objectType: ObjectTypes.unassignedFramesType
    app.findObjectPreferences.strokeWeight=1;
    app.changeObjectPreferences.appliedObjectStyles=app.activeDocument.objectStyles.item("WOL" );
    app.activeDocument.item(0).changeObject();
    Can anyone look into this help for me. Thanks in advance.
    Regards
    Thiyagu

    Hi Dave,
    I have tried the script after removing "s" in it. Now i am getting error like "object doesn't support the property or method 'appliedObjectStyle'". Please look into this and help me out. Herewith i attached the 'error' dialog snapshot.
    When i tried this in loop its working fine. Find the script below.
    app.findObjectPreferences=app.changeObjectPreferences=null;
    app.findChangeObjectOptions.properties =
      objectType: ObjectTypes.unassignedFramesType
    app.findObjectPreferences.strokeWeight=1;
    myFindObj=app.findObject(true);
    for(i=0;i<myFindObj.length;i++){
        myFindObj[i].appliedObjectStyle=app.activeDocument.objectStyles.item("WOL");
    alert ("DONE!");
    Regards
    Thiyagu

  • Edit one object and apply changes on similar objects automatically

    Hi,
    I have a lot of similar layers in my document and would like to link them somehow, so that a change in one of their sublayers (moving it, for example) is applied to the corresponding sublayer in all other layers.
    Is that possible?
    PS: Here's an example:

    Symbols.
    Check the help files.

  • Colours different on object and inspector

    Hi,
    For most colours, there seems to be a subtle difference in the appearance of the fill colour of an object, and the colour for the object shown in the inspector/colour chooser. The object shown on the page has more saturation or brightness than in the floating palettes.
    This is immediately noticeable to me on the default green colour for a new object from the toolbar menu (eg. a new circle). In fact, if I click the magnifying glass on the colour palette and click my object, even though they're meant to be the same colour, both the inspector and object change colour slightly, proving that it's not just my eyes. I can repeat this again and again on the object of default green fill until the object is bright green (green starts on 183 of RGB and ends up on 255.)
    The problem is the same with text and lines in Pages, but this does not happen in TextEdit. Text copied directly from TextEdit into Pages has a slightly different color.
    Does anyone else experience this? Any fixes?
    Thanks

    This was brought up in the Keynote forum quite some time ago, compllete with a handy demonstration by Kyn.
    I would suggest sending feedback and seeing if it shows up in keynote too. If it doesn't then it was a missed fix in color handling that was not forwarded to the Pages team.

  • Illustrator thinks I want to resize an object...

    Hi, so this is an issue that really annoys me and I'm not sure if there's a solution for it and/or if someone has complained about it.
    Basically, if I make a small shape, something about 50x80px and I try to grab the shape to move it to a different location, illustrator just assumes that I want to resize the object and acts as if I grabbed the corner points. I specifically try to click away form the resizing points and it still does it. Its really annoying because the only way I can grab the object is by zooming in and making sure the cursor is now a lot smaller than the shape to move the object. The problem with doing this is that by zooming it forces me to scroll with the object to the place I want to be.
    When this happens, my cursor doesn't change to the 'resizing' cursor... the one with the 2 small arrows pointing opposite directions. It stays as the regular cursor.
    I am using the Illustrator CC updated to the latest as of this date.

    Vhalor,
    I believe it is safest to hold Alt/Option when you use the Direct Selection Tool, to avoid the danger of dragging only some Anchor Points.
    I wonder whether it is time for the list.
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media, see below. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Scripts: Select an object with a note, duplicating and applying swatch

    I am trying to write a Javascript that can do the following:
    1) Select an object whose note has <Object Name> (so its layers is also selected)
    2) Duplicate the layer of that object
    3) Rename the new layer to <Layer Name>
    4) Apply a swatch to the object on the new layer (the object is only single colour)
    5) Apply a new note to the object (over-writing the original note).
    I also want to write a separate script that can do the following:
    1) Select an Object whose note has <Object Name> (so its layer is selected as well)
    2) Hide all other layers
    3) Save a copy of the document with a specific name
    I can do this as an Illustrator action. However, I need several different copies of the scripts where the Object Name, Layer Name, Swatch and File Name changes.
    Re-recording the action to change the names is cumbersome.
    I have looked at the Illustrator scripting reference, but cannot see any commands for select objects by their notes.
    I was wondering if someone could give me some pointers on how to proceed (Or possibly, if feeling very generous, could write the script for me )

    That's my error changing variables before posting… I can't edit that post now but this should fix it… Plus give you a very basic UI to enter a value…
    #target illustrator
    var n = prompt( 'Please enter your \'Note\' string…', 'muppet', 'Note finder' );
    findNote( n );
    function findNote( n ) {
              var doc = app.activeDocument;
              var allMyArt = doc.pageItems;
              var toSelect = Array();
              for ( var i = 0; i < allMyArt.length; i++ ) {
                        if ( allMyArt[i].note == n ) { toSelect.push( allMyArt[i] ) };
              doc.selection = toSelect;
    Oh I didn't mean b4 n after running a duff script… What you do with actions so I can see what objects are duplicated where then coloured…

  • What happens when the multiply effect is applied to both the object and the graphic within?

    Hi everyone,
    I could really use some help with this...
    I'm getting a booklet ready to be printed. Originally, half of the pages were to be printed on paper with a (physical) colour. For budget reasons however, I've now decided to print the paper colour, and have the content of the pages overprinted on the tint in the background, which I've applied to the pages in the background of an additional master page.
    When I set the objects to multiply, they blend with the background colour, which is the effect I'm looking for, as there would be no 'paper white' on the pages that I want to appear as though printed on coloured paper.
    There's something confusing me though; you can also set the graphic within the object frame to multiply. This makes the graphic appear darker, which I don't really understand, since there is no extra colour within the graphic that accounts for this. I've looked at the output in the resulting pdf, and it looks like it's not just an on-screen effect, but the extra amount of (in this case) yellow would also be visible in the printed result.
    Does anyone have an explanation for this? Please see the graphic for a visual example.
    Thanks in advance, kind regards
    Robbin

    Hi.
              Yes. There is a heartbeat mechanism between all cluster members so they detect when a
              member has left the cluster. The primary server recognizes when it's secondary server
              has failed, and then proceeds to search for another member of the cluster to make as
              it's new secondary.
              Regards,
              Michael
              David Whitehouse wrote:
              > I'm trying to figure out what happens when the server holding the replicated state
              > for an object fails.
              > Does the server with the primary object (or the replica-aware stub) recognize
              > the failure and select a new
              > server to hold the replicated state?
              >
              > For instance, Assume I have a cluster defined with three servers - 1,2,3 - with
              > an instance of object A on server 1
              > and the replicated state ino on server 2. What happens if server 2 fails? Is the
              > state now replicated to server 3?
              >
              > Thanks, David
              Michael Young
              Developer Relations Engineer
              BEA Support
              

  • How can I duplicate a smart object and then edit it, without affecting the original?

    I have a vector element from illustrator that I am placing in a tshirt mockup in photoshop. I have the layout essentially how I would like, but I am trying different color variations. I would think to just duplicate the first placement and then edit the color of the resulting copy, but this affects both the copy and the original. I looked into it a bit further, and found that I should try the "replace contents" option under smart objects, and that this would change the copy. So I go back to illustrator, made a copy of the original vector, and then made the color change I had in mind, and then saved it as a separate document that I could then use in replacing the contents of the copied. This however, is still affecting both smart objects!
    I have tried this as both linked smart objects and embedded smart objects without success.
    Ultimately, I simply want to maintain the position of the original layer with the duplicated and edited layers. If you know of a better way, please share!

    I'm on CC on a Mac.
    What 21 is talking about is making some sense.
    I am able to create new smart object via copy, then create a variation on the original file linked in the parent smart object. Then I save that from illustrator with a different file name. Then I go back to photoshop and replace contents of the new smart object, linking it to the newer illustrator file.
    This gets around the problem, but it takes a few more steps than the same thing did it in earlier versions of photoshop.

  • Read, Modify and Apply Report XML using Java Script

    Hi Guys,
    Is there any way that we can Pragmatically Read, Modify and Apply Report XML using Java Script or some other way.
    Thanks
    Kaushik
    Edited by: Kaushik K on Jun 20, 2012 8:36 PM

    Requirement ::
    Users should be able to add Column to the Report Dynamically at Runtime.
    (There are around 1000+ Users, Answers Approach is not acceptable)
    So we are planning to provide a Multi Select / Shuttle Box Option for Users to add Columns dynamically. (Only for Table View)
    What we planned to DO ::
    Create a Presentation Variable Prompt, Which reads the Metadata Table (Presentation Table.Column Name, populated using the Metadata Dictionary)
    And Create a report with One Column and the Column Fx like @{var_dynamic_columns}{'"Time"."Year","Time"."Month"'}
    With this, OBIEE is rewriting the Logical SQL Currently as "Select "Time"."Year","Time"."Month" from "A - Sample Sales" "
    But getting an error
    The number of columns returned in retrieving column metadata was invalid (expected: 1; received: 2)
    So we want to see, if we can rewrite the Advanced XML of the Report to have dynamic columns based on the Values from the Presentation Variable.
    Please help me if this is a viable solution or any other better solution.

  • Command to  provide list of all objects and their scripts from database

    Hi,
    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2
    Kindly ge me the advice
    Thanks in Advance

    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2If you want the all the metadata of whole database, then it is quiet difficult to get from DBMS_METADATA, as it is very complex because you need to gather for each object of each schema in whole database and to spool.
    http://www.orafaq.com/node/57
    I want to know, what is the use of entire database metadata, Certainly need of objects of metadata.
    or if you want to whole database, then i suggest you go for export full backup and import as impdp sqlfile option,

  • Hello,  Is there a script that I can change all the colors of a layer in to 1 PMS color, unite every object and than give it an offset of -0,2 mm ?

    Hello,
    Is there a script that I can change all the colors of a layer in to 1 PMS color, unite every object and than give it an offset of -0,2 mm ?

    the offset has to be semi-automatic, apply an Offset Path Effect (by hand), create a Graphic Style out of it (by hand), then the script can apply this graphic style to objects.

  • HP Photosmart 6510 e-All in One Series I want it to print off my PC in just Black and not Colour?

    Please help! I have been in to settings for the printer on my Lap-top and can not find anywhere that will allow me to adjust to just printing in Black and White when I need it and not Colour all the time, which it is doing!

    Hi @Anna11,
    Welcome to the HP Forums!
    I understand that you are trying to print in black only instead of color with your HP Photosmart 6510. I am happy to help with changing these settings!
    For further assistance, I will need to know some more information:
    If you are using a Windows or Mac Operating System, and the version number. To find the exact version, visit this link. Whatsmyos.
    If the full feature software and drivers has been installed.
    Please see this post, Want Good Answers? Ask Good Questions, by @Bob_Headrick, so you can get the most out of these forums.  
    Thank you for posting, and I hope to hear from you soon!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Script to stop and start Business Object and its components

    Hi Guru
    I have installed Business Objects and few of its componenents.
    Please assist where I can find a proper script to do a clean stop and start of its services.
    My server is Windows 2008 SP2.
    Target services to have a scripts are;
    1. MySQL server 5.1.
    2. Apache Tomcat 5.5.20.
    3. BW Publisher Service 12.
    4. Server Intelegence Agent.
    Appreciate some assistance here. Thanks!
    -Ace-

    All of those components are available as Windows services. You can use the relevant
    net stop
    commands to stop them.
    Regards,
    Stratos

  • Apply "Script Labels" to Object Styles?

    Hi again,
    I think I've kind of found a solution to my previous thread. But it involves using Script Labels in order to get it to work. Problem is I've tonnes of text boxes with Object Styles applied that don't have any Script Labels applied to them. Is there a way I can apply a script label to all of my existing text frames that have a particular Object Style already applied to them?
    Thanks in advance.

    You could use essentially the same script I just posted but set the label rather than the itemLayer of each found object. However, it seems like a convoluted approach.
    Dave

  • Any ideas how I can insert a pdf into word, using the insert object option. However the pdf i want to insert has text and lines annotated, but once inserted the comments don't appear????  any help would be greatly appreciated.

    Any ideas how I can insert a pdf into word, using the insert object option. However the pdf i want to insert has text and lines annotated, but once inserted the comments don't appear????  any help would be greatly appreciated.

    You will need to find a forum for MS Word since that is the software that you are trying to manipulate in this.  If you think the processing/creation of the PDF plays a role then you should ask in the forum for the software that you are using to create the PDF.
    This forum is for issue regarding downloading and installing Adobe trial products, so in any circumstance, your issue does not fit in this forum.

Maybe you are looking for

  • Attachment of a data disk to new VM.

    After attachment of an empty disk the VM, It shows 3 disks in list: Disk 0: The OS Disk. Disk 1: Temporary resource  Disk 2: Data disk (what we attached) Why Disk 1 should not be used for data storage and what is the meaning of temporary storage?

  • How do you set up sagepay as a payment gateway?

    I got carried away with my new creative cloud subscription ad Muse then promptly myself in the foot by taking on a client using Business Catalyst. Can anyone tell me what I need to do to get Sagepay payment gateway working?

  • Error Messgae

    I am trying to fix the :internal error" in adobe and I have a new error message #1606?????  Any  suggestions?

  • Can anyone tell me how to change the names of the networks I have set up on Airport Express

    Can anyone tell me how to change the names of the networks I have set up on Airport Express please? I now work in a UN compound and my network is my own name, would prefer some anonymity so seeking to change the wifi network name that others might se

  • Self Registration in Enterprise Portal 7.0

    Hi all, I have done the steps for doing Self Registration. I have configured the SMTP Server. Also, the email notification in case of successful Self Registration is enabled. The action UME.Selfregister_User is added with the Everyone role. The SAP A