Illustrator :: Resizing Multiple Items Of Different Sizes

Jan 16, 2013

Is there a way to resize multiple items of different sizes all at once? Say I have five boxes measuring 1", 2", 3", 4" and 5" but i want them all to measure 6", is there a way to resize them all at once?
 
Mac OS X 10.7.5
Illustrator 16.0.0

View 8 Replies


ADVERTISEMENT

Illustrator :: Resizing A Paragraph Of Text With Different Font Sizes?

Jun 12, 2010

I am creating a restaurant menu which has a lot of different sized text.  Is there a way to mass change the sizes of the fonts all in one go?I'd like to be able to reduce all the lines by 1pt in one go, is there a way to do that?

View 3 Replies View Related

Illustrator :: Way To Change Multiple Artboard Sizes?

Jun 27, 2013

Is there a way to take a document that has multiple artboards and adjust all of these sizes without selecting them one at a time?

View 3 Replies View Related

Illustrator :: Printing Postscript From Multiple Page Sizes?

Apr 30, 2013

I'm working at a screen shop, printing .ps files for film. Most of the art is provided from the client on seperate artboards of varying size. In the print dialog box I select "custom" from media size options. This sets my page size to the size of the selected artboard. The problem is each page needs to be a different size so I am forced to print each page one at a time. Is there a way for illustrator to change the media size per artboard?

View 1 Replies View Related

Illustrator Scripting :: Get Width That Multiple Selected Items?

Apr 23, 2013

How can I get width that multiple selected items? (Not grouped.)
 
//---------- source code ----------
 var mm = 2.83464566929134 //unit conversion. (point->milimeter)
var W = docRef.selection[0].width/mm;
alert(W); 
//---------- source code ----------

View 3 Replies View Related

Illustrator Scripting :: Select Items On Multiple Artboard

Sep 27, 2013

I have script where I select items on multiple artboard but I can't seem to get get active art board of the selected item. Is this possible?
 
each artboard has a text item and I would like them in the same position on each of their own artboards that they are already one. right now it adjusts them all to one artboard. here is what I have so far
 
doc = app.activeDocument;
for(i = 0; i < selection.length; i++){
    var firstItemPosition = doc.selection[0].position;
    doc.selection[i].position = firstItemPosition;
    var activeArtboardIndex = doc.artboards.getActiveArtboardIndex();
    alert(activeArtboardIndex);
}

View 10 Replies View Related

Illustrator :: Scale Multiple Items By Specific Size Without Moving Their Positions?

Apr 22, 2013

I need to scale / tranform 30 - 40 circles from .5 to .25 that are in specifice locations, without moving the circles when scaled. AI CS6

View 9 Replies View Related

Photoshop :: Resizing Various Image Sizes All To

Jan 5, 2009

Is there a way to make an Action for batch processing to take a folder of various file sizes of photos and make them all retain there proportions but end up the same final size?

I am wanting to put on web quite a few photos but do not want to down size each one at a time. If I want them all to be about 200kb, how can I do that where a 5mb pic or a 500kb pic could all be processed with the same action to end up the same size?

View 2 Replies View Related

Photoshop :: Reducing Multiple Image Sizes In One Go

Oct 12, 2004

I have a whole directory of images which I took with my digital camera. I want to post them on my site, however I would like to reduce their size to fit the html pages. I know how to perform this task for individual photos, but since my directory consists of many images, this task will be very time consuming.

I was wondering if there is any way to have photoshop make the same image
size reduction on all images, by running some sort of script or any other way.
If there is such a way, does photoshop also save the new smaller images?

View 1 Replies View Related

Photoshop :: Batch Saving Multiple Sizes

Mar 22, 2007

I'm using Photoshop to create my web images and need to make an "Action" to use the "Save for Web" function where it'll save 3 different image sizes (Small, Medium and Large) with a suffix at the end of the file name ("_s", "_m" and "_l" respectively), but I can't seem to find any way of getting the software to add to the filename without rewritting it completely (which I have to do manually anyway).
I have found the "Output Settings" dialog window and this looks to do everything I want, but I have tried everything I can think of and can't seem to get it working.

View 1 Replies View Related

Paint.NET :: See If Some ICO Files Are Embedded With Multiple Sizes?

Oct 29, 2013

how I can see if some .ico files are embedded with multiple sizes?   I used the .ico plug-in and selected to embed all sizes, but I am not sure if this works.  I'd like to be able to confirm it.

View 1 Replies View Related

InDesign :: How To Fit Placed Items Multiple Up

Apr 10, 2014

Any way to automatically fill a blank document with placed items making it multiple up?
 
A simple example would be a business card that I designed in InDesign. I have the margins, document size and bleed edges set, I would like to place them multiple up on various sizes to see what size would hold the most to trim. 8up typically go on a letter sized document etc. But now many could I fit on 12"x18", etc.
 
What I am trying to accomplish not having to align each one manually which is slowing my work flow down. Plus when customers have odd sized documents they want cut and padded etc, having the abilitiy for the software to automatically place items that are all alligned by their trim edges would save a lot of proofing and re laying items out.
 
The idea comes from my Silouette Cameo personal cutting plotter. The software lets you fill the cut area with a design and it is filled equally.
 
There has to be a way commercial users can do this with out figuring all the math?

View 1 Replies View Related

Photoshop :: Font Size Are Showing In Multiple Sizes

May 14, 2013

This problem of the font size being incorrect in the Character Palette is driving me nuts.

(Type Layer shows one size. Selected type shows another size. Single placed cursor shows another size...)
 
Is there a solution?

Seems like a major bug?

View 1 Replies View Related

AutoCAD Civil 3D :: How To Load Multiple Text Sizes

Oct 26, 2011

I am trying to load multiple Text Sizes into AutoCAD Civil 3D 2012 so that I can have a list of the standard text sizes (3/32", 3/16", 1/4", 3/8") to choose from the Annotation tab > Text Group > Annotation Text Height drop down list, instead of having to type them in each time.

At first I thought that I could just add the different text sizes using the TEXTSIZE variable command into my drawing template file, but apparently the Text Sizes entered are only retained for that particular session of AutoCAD Civil 3D.  Is there perhaps some other system variable that controls this setting being retained for more than one session??

Then I thought I could just create a program to load the sizes. I originally tried creating a C# .NET program to load the text sizes, but ran into a problem.  I then I tried creating another version of a C# program, as well as an AutoLISP script, thinking that it was perhaps some limitation to my approach (which still may be the case).  But I still keep running into the same problem.  The problem is that only the last text size specified is actually entered into the list of available text sizes.  The other text size values appear to be processed but are not retained in the Annotation Text Height drop down list.

The following is my first attempt with C#:

using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.Runtime;
public class CreateTextSizes : Autodesk.AutoCAD.Runtime.IExtensionApplication
{
public void Initialize()
{
// Create following Text Sizes:  0.09375 (3/32"), 0.1975 (3/16"), 0.25 (1/4"), 0.375 (3/8")

[code].....

The following is my attempt with AutoLISP:

(defun c:LOADTEXTSIZES()
(Command "TEXTSIZE" 0.09375)
(Command "TEXTSIZE" 0.1975)
(Command "TEXTSIZE" 0.025)
(Command "TEXTSIZE" 0.375)
(Command "TEXTSIZE" 0.09375)
)

View 1 Replies View Related

Revit :: Printing Multiple Sheets With Different Sizes To Print

Feb 10, 2013

We are looking for an easy straightforward way to print / export an entire set of sheets to pdf.The sheets have different papersizes and we want them to be named with the sheet number + name, and possible a prefix by choice.We have Adobe Acrobat X installed as pdf printer.So far we managed to print an entire set to pdf with these somewhat annoying issues:

1. The naming adds the word "sheet" between the chosen prefix and number-name.can we get rid of this?
 
2. The prints seem only to follow the actual Revit Print-setup, on papersizes.Which means that we need to have print-sessions on every paper size used in a project.Strange that in Revit the paper print-setup, doesnt follow the sheet definitions.(?)Is there a way within Revit to solve this to a more automated workflow?Or do we have to implement third party plugiins / solutions?

View 3 Replies View Related

AutoCAD 2010 :: Rectangles With Different Sizes - Multiple Offset

Apr 3, 2010

Let us say that i have some rectangles with different sizes is there any way to offset one time.

View 9 Replies View Related

AutoCad 2D :: Attribute Text - Multiple Sizes In Block

Mar 2, 2012

We have a client whom insists on 1/8" text and my blocks are all sized for 3/32". What I wanted to do is create two visibility states for the block. One using the 1/8" text and one using the 3/32" and be able to switch between them. I can get the border of the tag to work, but the text doesn't switch sizes.

Is this even possible? Is there a better way to deal with all my tags and needing to have two different versions of them? (Tags such as fixture tags, note tags, etc...)

View 4 Replies View Related

AutoCad :: Can't Select Multiple Items

Jul 21, 2006

No matter what command i try in autocad (move, erase, copy, etc)..i can only select one item at a time. When i choose one item it goes dashed (as they normally do), but when i click the second item the first one i chose goes back to solid and if i press return only the second item i selected if affected. Similarly if i choose 3 items , it forgets the first two and only keeps the third one.. Is this an Autocad options thing or a windows Mouse thing?

View 8 Replies View Related

InDesign :: Print Booklet Not Allowed Because Of Multiple Page Sizes

Feb 25, 2011

Dialog box:"The active document uses multiple page sizes Print Booklet works only with documents that use a consistent page size."OK, but the page sizes are all the same.

View 26 Replies View Related

AutoCAD 2013 :: Multiple Items On Clipboard

Nov 27, 2012

Is there any way that Autocad can have multiple items placed on the clipboard for insertion use like the Microsoft Office Word program has (up to 24 inputs). This would be a good feature to allow going to one file, copying what you need and then switching to your current drawing file and placing them as needed.

View 2 Replies View Related

AutoCad :: Unable To Select Multiple Items

Jan 15, 2010

Suddenly I can only select one item at a time. If I move onto another item, the first one de-selects. I haven't knowingly made any changes. What has happened and how to put it right? I can select multiple items via 'click and drag', but only within one drag - another drag then de-selects the first drag again.

View 9 Replies View Related

AutoCAD Civil 3D :: Assigning Pay Items To Multiple Objects?

Feb 20, 2012

I can not remember how you do this QTO seems to only let you pick one object at a time surely there.

is a faster way crossing windows does not seem to work within the command.

View 2 Replies View Related

Maya :: Unable To Select Multiple Items In The Outliner?

Apr 28, 2013

I am using a MacBook laptop without external mouse and on Maya 2013 I could select multiple outliner items with the CMD + ALT keys. Since Maya 2014, this does not work anymore. how I can multi-select ? (I am not talking about the SHIFT key because my items are not contiguous).

View 8 Replies View Related

AutoCAD Inventor :: Add Single Column To Multiple Items

Jan 9, 2012

A quick way to add a single column to multiple items in the Content Center? The column would be the same across the board, and I really don't want to edit several hundred family tables one at a time if I don't have to.

View 2 Replies View Related

Photoshop Elements :: Why Do File Sizes Change / When Use Process Multiple Images To Add Watermarks

Feb 22, 2014

I'm using Elements 11. In order to add watermarks to many JPG pics at once, I use the function "Process Multiple Files".
 
I select a source folder and a destination folder, and adds a three digit serial number to each file. I do NOT tick the checkbox marked "Change picture size". After that I define the watermark I want printed on my pics and hits OK. All the files in the source folder are processed and saved, with a new name in the destination folder. Fair and square.
 
But. The file size of the new file is heavily reduced, compared to the original. It goes from 10 MB down to 500 KB (in general). Why is that? Is there any way I can prevent it?

View 5 Replies View Related

Photoshop :: Multiple Batch Resizing In CS5

Sep 1, 2012

I want to resize dozens of jpeg photos so they are all the same size.  Rather than doing them one at a time, is it possible to do them as a batch in PS CS5?

View 2 Replies View Related

Photoshop :: Resizing Multiple Photos

Jul 21, 2009

I am trying to resize multiple photos by using the batch option. I have created an action and then go into batch and select that action. It's not working. Anybody have any ideas on how I can resize my photos all at once??

View 1 Replies View Related

Photoshop :: Resizing Multiple Images At Once?

May 5, 2003

photoshop to resize multiple images at once?

I've got all these huge size images taken with a digital camera that I want to shrink down to 640x480 or so for upload to my galleries at pbase.com. I'd hate to do them one by one.

View 1 Replies View Related

Photoshop :: Multiple Picture Resizing

Oct 3, 2005

My camera is often used to take pictures in different events for my college. I am required to email those pictures to a person. But before I send them I must resize them all to 580 by 435. The way i currently do it right now is i go to "Image Size" and resize each individual picture from there. I was wondering if theres a way to just be able to resize all of the pictures in a folder to a specific size without having to do it one by one. it would make my life alot easier since its usually about 20 pictures at a time.

View 4 Replies View Related

Photoshop :: Resizing Multiple Images

Apr 16, 2004

I am resizing photos for the web and it is a tedious job to do one at a time.

Is there a way to do all at once?

They are all going to be the same size.

View 1 Replies View Related

Photoshop :: Resizing Multiple Images

Jun 9, 2004

Is there a way to resize multiple large images(like ones just downloaded from your digital camera) to a size that several can be e-mail at one time?

Not really interested in loss of quality, just want to share several images by e-mail.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved