Photoshop :: Creating New Style From Existing Settings In Text Element?
Aug 1, 2013
The only way I know to create a new character style is to create one, set the parameters, and then use it and apply it to text elements.
Is there a way to create a character style FROM existing characteristics of existing text?
View 3 Replies
ADVERTISEMENT
Apr 1, 2012
I sometimes use a trick of creating a virtual copy to get a text element of a NxN image. For example, I might use 8 images for a 3x3 and need a fourth "image" (i.e., column 1, row 2) for text. I like to take image 3 and make a virtual copy, then get that looking the way I want as my text box. When I print, I don't have to create a collection to order my images as long as the sequence-taken, along with the text box in position 4, is okay. I guess in LR 3, the virtual copy sorted after the original.
Well, I just tried the trick and the virtual copy comes before the original. I still wanted to shy away from creating a collection, so played another trick - I used the option to change the capture time under the Library module's Metadata menu, and bumped the text box up 1 second later. But the sort hasn't changed! I even forced a reconsideration of the sort by changing from capture time sort to added time sort, then back again.
Though I'm being "devious" here, it does seem to not be working correctly. Maybe sorting ignores metadata of virtual copy images?
View 1 Replies
View Related
Oct 25, 2012
I've wrriten a script that will create custom annotative scales and a new text style. (It works fine up to that point) The next steps I'm trying to add to the script is to select a text object, set it to the new style, make it annotative and add all of the annotative scales to that text object. CHPROP allows me to make the text object annotaive but I haven't found a command that will let me change the style or add annotative scales to the text object. Any commands I can use in a script to do this ? (or know if this is even possible)? I have 2000+ drawings I need to run this one, I hope I can find the commands to script this with.
View 2 Replies
View Related
Mar 19, 2013
PublicSharedSub CreateTextStyle(ByVal TextStyleName AsString, ByVal FontFileName AsString, ByVal OblAng AsDouble)
Dim DataB AsDatabase = Application.DocumentManager.MdiActiveDocument.Database
Dim MyTransaction AsTransaction = DataB.TransactionManager.StartTransaction()
Try
Dim MyBlockTable AsBlockTable = MyTransaction.GetObject(DataB.BlockTableId, OpenMode.ForRead)
Dim MyBlockTableRecord AsBlockTableRecord = MyTransaction.GetObject(MyBlockTable(BlockTableRecord.ModelSpace), OpenMode.ForWrite)
Dim MyTextStyleTable AsTextStyleTable = MyTransaction.GetObject(DataB.TextStyleTableId, OpenMode.ForRead)
[code]....
and i call it from sub:
Call CreateTextStyle("330", "romans.shx", DTR(330))
but error comes up
at Autodesk.AutoCAD.DatabaseServices.Transaction.GetObject(ObjectId id, OpenMode mode, Boolean openErased, Boolean forceOpenOnLockedLayer)
View 2 Replies
View Related
Nov 26, 2012
I want to programatically create a text style in the current database based on a font located in the AutoCAD /fonts folder. After that, I want to assign that text style to a newly created DBText.
I am close but can't quite get it. Let's see what I have:
I still got errors and left it as comment.
using (Transaction newTransaction = newDoc.Database.TransactionManager.StartTransaction()){ TextStyleTable newTextStyleTable = newTransaction.GetObject(newDoc.Database.TextStyleTableId, OpenMode.ForRead) as TextStyleTable; if (!newTextStyleTable.Has("ROMANS")) //The TextStyle is currently not in the database { newTextStyleTable.UpgradeOpen(); newTextStyleTableRecord = new TextStyleTableRecord(); newTextStyleTableRecord.FileName = "romans.shx";
[code].........
I get key not found error. Do i have to lock the document?
View 3 Replies
View Related
Jun 26, 2012
AutoCAD LT 2013
For some reason my qleader settings will not retain as they once did. I have used them in the past with no issues, but can't seem to get AutoCAD to remember what I want. It's a real pain.
I've tried toying with mleaders. I like them for the most part, but I can't get my text to be background masked automatically (like I can with qleader). I also will need to change my text styles as my current style scales the text size. MLeader allows me to set the scale (MLEADERSCALE) for the different scales in my drawings which is nice, but without the background mask, I'd rather use QLeader.
Any way making the text with automatic background masking? I don't mind creating a text style with background mask.....if that is possible somehow.
View 9 Replies
View Related
Dec 8, 2011
There used to be a product called Cadmin, that was a very useful tool for changing common elements in a group of door window assembly styles at the same time.
I have a source file with 870 door window assembly styles that I want to modify a division in. The division has the same unique name in all of the assemblies, and I want it to end up the same in all styles. Is there a way to do this that I am not aware of or do I have to select 870 styles individually?
View 2 Replies
View Related
Mar 28, 2013
Copying an element which has a graphic style applied now breaks apart the style into individual elements if the style is applied to text, the text is outlined too. This never use to happen. Have tried changing the paste board setting but this changes nothing.
View 8 Replies
View Related
Mar 15, 2005
Is there an easier way to create gridlines as a design element? I know you can set/adjust the grid in the preferences, but I would like to be able to have the gridlines as something editable (changing colors/scale, etc.) and as an element in the piece (as opposed to just a guide overlay that's not integrated).
Up til now I've been doing this the hard way, using guides and the line tool to create/copy/move each line, etc. building it piece by piece...while this works,
View 5 Replies
View Related
Jun 1, 2012
I'm having problems creating the element in DBTEXT BackgroundWorker in VB! Develop a function to create the element dbtext in the current document, when I use this function within <Autodesk.AutoCAD.Runtime.CommandMethod("")> it works perfectly, but when it is used within BackgroundWorker raises the point of different alignment indicated. And the problem is solved when you run the AUDIT command in the project, then the alignment points are corrected. The same problem is occurring for the blocks that have attributes, in this case the alignment points are also displaced the attributes of the standard indicated.
Public Function NewDBText(ByVal InsertPoint As Point3d, ByVal Rotation As Double, ByVal LayerName As String, ByVal ForceColor As String, ByVal AttacPoint As AttachmentPoint, ByVal TextValue As String, ByVal Height As Double) As ObjectId Try Dim DBTextBase As New DBText DBTextBase.Rotation = Rotation DBTextBase.Layer = LayerName
[code]....
View 2 Replies
View Related
Sep 19, 2011
we've made a part from an assembly and put the stress analysis to the test. Unfortunately the analysis doesn't complete it's run, because of an error:
"An error occurred while creating the finite element mesh. The cause may be invalid geometry or features that are extremely small in comparison to the overall dimensions of the part. To fix the problem, please suppress those problematic features or use standard meshing method."
We can't change the thickness of the sheet-metal, because it's a model which comes from a supplier with a different cad-program. And supressing any features isn't possible, because it's a base-solid.
But where can we change it to the standard meshing methode? The program is recently re-installed on my computer, the settings haven't changed since it's been installed. We can't find the feature.
View 2 Replies
View Related
Oct 14, 2009
I'm chasing the syntax on what i hope is a very simple procedure.
We have a project for re-design and manufacture here (Australia) of a machine that has been designed and detailed in one of our US offices. For this reason, we will be wanting all dimensions in mm etc, rather than inch.
My intention is to open the idw(s), update the styles library (done, i think...), change the active standard to "AS Metric" (got the code sorted for that too), and then change all dimensions to AS Metric.
So far i have each of these 3 processes in a different sub, called from a master. But my problem is in changing the style. I could change a dimension's style to match that of another existing style:
Set oGeneralDimensions = oSheet.DrawingDimensions.GeneralDimensions.Item(1)
but I am having trouble setting is to the active style.
My module:
Sub ChangeStyle()
Dim oIDWDoc As DrawingDocument
Set oIDWDoc = ThisApplication.ActiveDocument
Dim oSheet As Sheet
Dim oDim As DrawingDimension
Dim oDimStyle As DrawingStandardStyle
Dim oGeneralDimensions As GeneralDimension
[Code]....
View 9 Replies
View Related
Jun 29, 2012
I am looking for a way to change the text style used by a table style with Visual LISP. So far I have been able to get the IAcadTableStyle object from the acad_tablestyle dictionary, but there is no property for text style. Is this even possible? Code and results are below.
(defun DumpTableStyles ()
(setq dict (vla-get-dictionaries (vla-get-activedocument(vlax-get-acad-object))))
(setq TableStyles (vla-item dict "acad_tablestyle"))
(vlax-for TableStyle TableStyles
(vlax-dump-object TableStyle)
)
)
[Code]....
View 3 Replies
View Related
Feb 1, 2012
Is there any way to lock a text style so that the associated font style can not be changed?
View 2 Replies
View Related
Feb 18, 2005
how to create a fuzzy fiber, a string, (think of yarn that is used for knitting sweaters), and only found a link to creating rope. I want to create a soft, fuzzy piece of yarn. I've experimented with several brushes and found the chaulk brush and grass brush work pretty well, but when I try to apply a bevel, it flattens the look so it is unrealistic. Please suggest what I should do in my layer styles.
View 6 Replies
View Related
Sep 7, 2012
I have copied the "Diamond Plate" from the Inventor Apperance Library to my document. Now I want to edit the texture that this style is using.
1. Where is the texture map that this style using located? When I edit the style, I can't tell what is telling it the filename. I have mundged every file on my hd that it could possible be (hoping it would cause an error), but that didnt work either. Another thing I tried was in the QAT "Duplicate as Generic", but that did not show me the texture file either.
2. Is there a way to change the angle of the texture?
View 1 Replies
View Related
Jul 7, 2013
I have an image that is going to serve as an online ad. I would like to have it look like a glass button like so many online ads do these days. However, most tutorials out there give instructions for how to do it with only text over the button. How would I do it if it's got three different sections to it? A photo on the top half and two colors on the left and right on the bottom?
View 2 Replies
View Related
Feb 15, 2014
Can I import (or create) default Lightroom settings from an existing document and save them? Make them a personal default set opening with all future LR catalogs?
View 2 Replies
View Related
Jul 21, 2013
I changed from 2012 to 2013 Inventor,
When I open an existing drawing, I have this error msg.
View 4 Replies
View Related
Dec 28, 2013
I have a 3D Text using VideoCopilot's Element 3D effect on a 2D Solid Layer. With a camera, I can orbit it around in 3D space with other 3D layers. But when I pre-compose all of it and orbit the camera, the 3D Text doesn't move, only the other 3D layers. How can I move everything together? I've tried all of the combinations of Collapse Transformations/3D switches...
The project file (CS6): https:[url].....
View 3 Replies
View Related
Jun 21, 2013
I need to twick my lisp routine (attached) to run it without asking.This lisp asks if I want to "Update" or/and "Import," while I have a source dwg. and I want to: (Update and Import).
so how to remove asking and just run the command? I need that routine to assing to a button in OpenDCL project (I think I know how to do that thogh),
View 4 Replies
View Related
Sep 4, 2012
When shooting Canon 5DII in JPG, Adobe Elements and Lightroom both import the complete images with all variations selected under the cameras Picture Style settings.When shooting in RAW, Adobe ignores these variables and imports ONLY the RAW image directly from the image sensor, ignoring all settings selected under Picture Styles. This is true in both sRGB and AdobeRGB.There is nothing about this in the Canon 5DII manual.This makes Picture Styles useless when shooting in RAW !?
View 6 Replies
View Related
Apr 5, 2011
How does one display obscured lines using different linetypes in the 2D wireframe setting under visual style settings. I need to adjust this setting to view all drawings as 2D wireframes in the viewports in all layouts for more accurate dimensioning (which I do in paperspace)?
View 0 Replies
View Related
May 30, 2008
I want to create a yellow font that has a transparent stroke inside of it. Also I want to add another white stroke behind the text on the outside. I have done this by adding a black stroke inside the text and then coping the layer and adding a white stroke to the outside and putting this layer behind the first. I then select the black stroke with the magic selection tool and delete it. This gives me the effect that I want, however when I delete the black stroke the font is not smooth like it once was.
View 4 Replies
View Related
Oct 12, 2004
how to create a poster in a 'fillmore' 70's psycadellic style in photoshop?
Bearing in mind that i am in no way well versed in photoshop and make up most things as i go along.
Kinda like this sort of thing...
fillmore poster
View 6 Replies
View Related
Jul 23, 2003
i need to make some graphics that are drawn diagram style.
i need to make one of an ear, eye and nose, what would be the best way to go about doing this.
can i so this in PhotoShop or should i get out the pen and paper.
View 3 Replies
View Related
Apr 25, 2012
My Corel software sometimes exhibits a kind of glitch where a text element won't show up just after I've created it and most of my fonts disappear. If I go to wire frame view I can see that the text is there, it's as though the text is just white, but I can't change the color to anything else. I can change the font, but I have to do it blindly because most of my font list disappears.
View 5 Replies
View Related
Mar 22, 2013
I have text with two strokes apllied to it. I want to cut/delete the first stroke to have the apperance of a stroke that has a gap between the text fill and the stroke. Or if there is an easier way to have the outline apllied, expanded (for lack of a better term) off of the fill?
View 3 Replies
View Related
Apr 2, 2014
I am working on a document - about 100 pages, mostly text with a couple of images.
Unfortulatly Indesign keeps crashing when I change the settings in the paragraph styles. eg changing the indents on a list item, or the amount of space before on the body text.
I am on Indesign creative cloud, and Mac Version 10.9.2
View 9 Replies
View Related
Jul 20, 2012
I want to make an in-store advertising video for a retail shop. I will be using Adobe Photoshop to create the images and create the movie using Windows Live Movie Maker. The movie will run on a Hannspree 42" LCD TV.
Below are some images of the TV I need the movie to run on:
What settings do I use when in Photoshop for this TV?
For example, I choose File > New > Preset: Film & Video > Size: ..........but what size?
Is there a certain pixel size, aspect, resolution etc that I need to be aware of for LCD TVs and/or this model in general?
Here is an image:
I have noticed that Windows Live Movie Maker has an Aspect ratio option, such as:
But I still want to know what settings I use in Photoshop.
View 2 Replies
View Related
Mar 20, 2013
I have a problem with the connection between an existing and new walls in revit, I attached a screen shot. I tried the wall join button , but I'm still unable to make the connection look right.
View 3 Replies
View Related