Illustrator :: Object Scaling Limit In AI

Apr 17, 2013

When I tried to scale an object to more than 200%, I kept getting the message that this would make some objects too large. I tried making my artboard larger but still got the same message. Am I doing something wrong?

View 2 Replies


ADVERTISEMENT

Illustrator :: Scaling Object With Reference To Another?

Aug 12, 2012

How can i do referential scaling, like scaling an object with reference to another? see the video. open in new tab or click on it too see the video.

View 12 Replies View Related

Illustrator :: Scaling 3D Revolve Object

Aug 9, 2012

I am working in 5.5 and have a 3D revolved globe object with a map art applied. It is currently in A2 art board size and I need to increase to A0. When I scale the object I get "The combination of artwork size and resolution exceeds the maximum that can be rasterized." I have tried adjusting the rasterize setting and the map art.

View 5 Replies View Related

Illustrator :: Object Scaling Doesn't Seem To Work Correctly With Objects Containing Bezier Curves

Feb 21, 2014

I created a closed object that had a Bezier curve as part of it's definition. I wanted to scale it by 110% and then use this second enlarged object to create a sort of a background underneath the first object to create a sort of a shadow effect. But rather than the second object being uniformly larger than the first it intersects the original object in ways that don't make sense to me.
 
Is there an easier/differnt way to create an effect like this? I can do it but have to manually adjust a lot of points in the new object so that they create a uniformly larger version of the original object but it's a lot of effort for something that works fine for normal polygons with straight lines (e.g. a star with 5 points).
 
i've attached an image of what I get with this technique of creating two examples of two objects one a 110% scale version of the other. The first star shows the effect I'm trying to get and the second shows the problem (the red border does not surround the black object uniformly around the perimeter)

View 19 Replies View Related

Illustrator :: Scaling Objects - Program Automatically Modify Alignment And Form Of Object

Dec 9, 2012

I have a problem: when i scale objects (even if I do a proportional scale clicking "Shift" button), the program automatically modify the alignment and the form of the object. for example if i scale a "stickman" which is completely symmetric, finally I have a figure with arms of different dimensions and proportions. Im using the cs5
 
The problem is not about the stroke dimension, is the path that is modified.

View 3 Replies View Related

AutoCAD 2010 :: Scaling Object In Just One Direction?

Dec 8, 2011

I am a beginner for CAD Drawing and a want to scale an entire drawing in just one axis without modifying the dimensions in other.

scale the attached drawing document along X axis by reducing the lenght to be fit into an A4 sheet. Without compensating the markings' visibility.

View 4 Replies View Related

GIMP :: Make Object Thinner Without Scaling It?

Feb 24, 2012

I am designing a logo, and have used a gimp script to create (a) the text that I need, and (b) a ring to enclose it. The ring is in a separate layer with a transparent background (I set the entire background to Alpha), and it surrounds the text. I created the ring using a script to transform a letter 'O' into a 'glassy' style object, which I then resized into an oval of the correct size and shape using the 'scale layer' tool.

The logo looks OK, but would be much improved if I could make the surrounding ring thinner. The ring has a 'glassy' effect which is just what I want, but it is a little on the chunky side. It would look much better if I could transform it to be about half the thickness that it currently is, to match the slimmer text inside the ring. I would like to do this without losing the 'glassy' effect of the ring.

I have already tried creating the ring with the thinnest font I could find that gave me the right shape, but this doesn't go quite far enough. Is there any way that I can thin the ring so that it keeps it's size, position and 'glassy' effect, but ends up with a thickness of about 50% of it's current width? Effectively, I just want to transform a fat ring into a skinny ring!

View 2 Replies View Related

Illustrator :: New Doc Sizing Limit?

Mar 14, 2013

I'm trying to create a 283.28" by 85" document, but the 283.28" part keeps automatically changing to 227.54".  Is there some kind of size limit?  What am I missing?

View 4 Replies View Related

Photoshop :: After Scaling Smart Object Remake It As Smart Object Again?

Mar 28, 2012

Using Photoshop CS5 - after scaling a smart object do I need to remake it as a smart object again?

View 3 Replies View Related

AutoCAD LT :: Can't Select Base Point For Scaling Object

Jul 23, 2013

I encounter this.... after i select object for scaling, can't select base point.

View 2 Replies View Related

AutoCad :: Scaling 2D Object In Model Space To Exact Size

Mar 29, 2013

Can i scale a 2D object to an exact length and width that i need to fit into a space?

Ive been reading around online and they say use scale/ref, however i noticed by giving the ref length, it does lengthen the object to the ref length, but the height's off!

View 9 Replies View Related

Illustrator :: CS6 Not Opening EPS File / Implementation Limit

Aug 3, 2012

I'm having a bit of problem with my CS6 Illustrator and it started in illustrator CS5, I can create an eps file within Illustrator save it as CS6, but when i go to open it again i get an error " Can't open the illustration. The illustration exceeds an implementation limit. I get an option to click ok and when i do i get a blank artboard with nothing on it.
 
I can see the artwork preview in the finder window when i select the eps file, I can open it in photoshop, convert it in preivew and if i place the file back into illustrator i can see the artwork and click embed to edit it.

View 2 Replies View Related

Illustrator :: Why Is There A Limit To PNG Export Image Sizes

Jun 26, 2012

This came to my attention around the CS4 era, but I've recently noticed still remains with CS6 - but just why is there a limit as to what image sizes we can export PNG files at [AKA around the 8000x8000 area at 400dpi for me]?
 
Surely as long as we have the computing power [and RAM] than we should be able to export beyond the 10000/400dpi pixels range [or does it depend on the computer]?

View 6 Replies View Related

Illustrator :: 3D Letters With A Black Inside Stroke - Adjusting Cap / Limit?

Aug 14, 2013

I've got some letters with a black inside stroke. These are 3D letters, therefore the stroke must be in the inside otherwise it spills out the edges if I put it outside or centered.
 
I've tried adjusting the cap/limit and all other options on the stroke menu without luck How can I fix these corner errors? I'm on Illustrator CS5.

View 4 Replies View Related

Illustrator Scripting :: Regex - Limit Input To A Positive Number (float Or Int)

May 14, 2013

I wish to limit the user input of and edittext to only allow a positive number, float or int. I do not yet know my Regex good enough to do this. I realize that I must get better at regex but in the meantime how to do this ?
 
I have used this so far on the edittext:
 
function checkTextInput()
{
if (this.text.match(/[^0-9.]/g))
{
this.text = this.text.replace(/[^0-9.]/g, "");

}

 
Which matches
000.0001
0.45.000.1
...1
which is not desired.
 
Desired is
0.n
.n
n.n

View 1 Replies View Related

Illustrator Scripting :: Applying Stroke Miter Limit With Apple Script

Feb 24, 2013

I have a bit of a problem with apple script, I'm creating a Text item and setting the stroke to 0.4pt then i want the stroke miter limit to be set to 2 but it wont work i get :-
 
Adobe Illustrator got an error: Can’t set properties of text frame 1 of layer 1 of document 1 to {stroke miter limit:2}. (error -10006) but im am able to apply a stroke miter limit of 2 on a path item, is there a way of converting the text frame to a path item then applying the stroke miter limit to it.
 
on TicketFront_(posX, posY)
     tell application "Adobe Illustrator"
          activate
          set ticketItem to make new text frame in theDoc with properties {contents:{"Some Text"}, position:{(35.7 + posX) * 2.834645, (173.5 - posY) * 2.834645}}
          set properties of the text of ticketItem to {text font:text font "Raleway-Thin", size:5.54, justification:center, fill color:{class:spot color info, tint:100.0, spot:spot "PANTONE 4535 U" of document 1}, stroke color:{class:spot color info, tint:100.0, spot:spot "PANTONE 4535 U" of document 1}, horizontal scale:126.46, stroke weight:0.4}
[code]...

ive also tryed putting convert to paths ticketItem in the script which converts the text to paths but the stroke miter limit still dont work.

View 17 Replies View Related

Edge Animate CC :: Get Responsive Scaling AND Adaptive Scaling Combined?

Feb 21, 2014

New Responsive Scaling feature is great.
 
It's enabled me to add an Edge Animate file to my responsive Wordpress site using the Edge Suite Plugin.
 
Only problem for me is that although the 3.7MB file I’ve created scales perfectly on all devices it struggles to play on smartphones. (I assume it's too big and too power hungry to play smoothly on smartphones - even since I've added a pre-loader.)
 
So, in an ideal world, what I need is a separate low res Edge Animate file that only plays on smartphones.
 
Failing that, I’d be happy with a 'Down-level Stage' image which could replace the Edge Animate animation.
 
For a moment I thought I’d found a solution when I came across this Adobe TV movie: [URL]
 
Unfortunately this clever solution only works when the new Responsive Scaling feature is NOT selected. As soon as it is selected, the animation no longer changes from one layout size to another when the browser window is reduced.
 
I don’t mind whether the fix is in Edge Animate, Wordpress or the Edge Suite Plugin - I just want a solution!

View 3 Replies View Related

Illustrator :: Art Deforming When Scaling

Jan 29, 2014

Artwork becoming deformed after scaling or moving it?
 
I attached a screenshot of a piece of clipart that I scaled down twice with the original showing on top. You can see in the art in the middle position that it's been changed while the original size and smallest size seem to be fine. They are all the same, copy, pasted and rezied.
 
It's happening very often, and once it does I end up having to re-import or redraw the art.

View 7 Replies View Related

Illustrator :: Art Changes When Scaling Objects In AI CC?

Jul 16, 2013

how line art changes when scaling object in AI CC? For example I have a logo file to deliver to client that doesn't have the font. In AI CS6 and below you can hold the shift key and resize objects smaller and keep the shape's intergrity. I've noticed in AI CC that resizing fonts converted to paths smaller does not hold the characters shape as well as previous versions of Illustrator. I understood the industry practice of converting fonts to paths as the last thing to do prior to shipping out a design to production. But what happens to logo files that get sent out to clients/vendors, for these files it is paramount to keep the shape intact.

View 16 Replies View Related

Illustrator :: Why Does File Distort When Scaling

Sep 29, 2012

Certainly elements - not all - of my illustrator file (cs5, MacOS) distorts when I down scale it's size.

View 15 Replies View Related

Illustrator :: Path Becomes Distorted When Scaling Down (CS6)

Mar 2, 2013

I know, I know. This question has been asked a million times already. Unfortunately the Align New Objects to Pixel Grid / Snap to pixel grid tip doesn't work for me. When I scale the image down to tiny proportions, the path becomes horribly, sickeningly distorted. It certainly seems like the pixels are being snapped to some kind of grid, but as you can see in the screenshot, the option is disabled. I tried switching between RGB and CMYK with no luck but I havent messed with the document profile past that. I am not yet ready to spend another few hours recreating the image.
 
I am using Illstrator CS6. Everything except the "web studio" is a path.

View 3 Replies View Related

Illustrator :: Logo Distorted When Scaling Down

Sep 2, 2013

How could this happen? I tried to scale a logo down to fit a stamp and Illustrator destroys it by distorting the paths.

This is the original logo

And this is what Illustrator does with it when i scale it down. (Image is scaled to same size to better illustrate the distortion)

View 5 Replies View Related

Illustrator :: Scaling Area Type Within A Box?

Dec 12, 2013

Is there a way in Illustrator CS6 to scale text inside a text box so that the text and box scale together proportionately?  Not using the scale tool where you have to enter percentages, but using a keystroke.  In Quark, you can do this by holding down Command + Shift and dragging the box.  This will make the text and box bigger keeping the same dimensions.  It's a very quick and easy way of changing the size of your text. 

View 4 Replies View Related

Illustrator :: Shortcut For Scaling Has Turned Off?

Dec 12, 2012

My shortcut for scaling has turned off and I can no longer scale by clicking on the bounding box and dragging the arrow. Instead I have to go to the transform option inorder to scale . How do I get the shortcut where I can just click on the object back? I am on CS5

View 1 Replies View Related

Illustrator :: Why Does Scaling Distort Objects

Apr 5, 2013

I can't get certain graphics to scale down correctly correctly.
 
Take a look at the 2 jpegs enclosed - one solid, the other with 1px outline. The graphic men were originally 40mm tall.
 
In each case the one on the left is the original. The one on the right is the same graphic reduced to 25% then enlarged to 400%. Both should look the same.
 
How to stop these distortions from happening? I've tried adding and releasing Compound Path, Grouping and Ungrouping, Selecting and deselecting 'Scale Stroke and Effects'. No combination works!
 
I'm especially confused about 'Scale Stroke and Effects'. Surely when it's selected, the outline should reduce to 0.25 px. It doesn't - it stays at 1px.

View 9 Replies View Related

Illustrator :: Scaling Arrows Disappeared?

Oct 21, 2012

Beginner here, but my scaling arrows have disappeared.  How can I reset this?

View 1 Replies View Related

Illustrator :: Greeting Card - Scaling Project For The Web

Jan 27, 2013

I've designed a greetings card that is 1022.23x1021px
 
I need to scale this because i want to make it a coming soon page for a future website
 
In which dimensions I need to scale the whole work (drawing/text) up/down to be seen on 4/3 and 16/9 monitors?
 
there are smartphone and tablets standard dimensions too I guess, do i need to create multiple artboards ?
 
As I explored Dreamweaver CS6 I noticed the dimensions are shown in the "design" view at the bottom for these devices, may be I could use them?

View 4 Replies View Related

Illustrator :: Shift - Constrained Scaling Not Working

Jul 1, 2010

When I hold down shift to scale an object or image to keep the proportions constrained, it does not work. This has only recently started to happen and it also happens on photoshop.
 
I don't have entourage running, which I read could be a culprit.
 
Would I need to reinstall my CS2?
 
I am using a Mac Powerbook G4, OSX 10.4.11 Adobe CS2

View 6 Replies View Related

Illustrator :: Scaling And Alignment In CS5 - Image Get Distorted

May 23, 2012

Scaling - for some reason the image get distorted after scaling. see example: 
 
Each time I scale it'll do it differently. this time it made the right side thicker. 
 
Alignment - the bounding box has offset and when aligning it doesn't align the objects right:

View 3 Replies View Related

Illustrator :: Scaling Down (about 10 Times) Gets Noticeable Distortions

Jul 4, 2013

I have a simple vector image:

And after scaling down (about 10 times) it gets noticeable distortions:

Is it correct behaviour? How can I avoid it?
 
I tried with "snap to grid" and without it, nothing changes. I'm using Illustrator CC.

View 5 Replies View Related

Illustrator SDK :: Accurate Scaling Of Anatomical Data?

Oct 30, 2012

I am using AI to import anatomical tracing data (paths and symbols). The data coordinates are in millimeters.  I create an artboard as follows:

The file import code reads the data and then passes the bounds data to the art routine, CreateDataArt, as minv and maxv.  As can be seen (abRect) the bounds of the data are 13 mm wide by 14 mm top to bottom.  Two paths are then drawn into the artboard as shown here:
 
Note that the rulers are in millimeter units and that the art board is nowhere the correct size.

View 1 Replies View Related







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