Xara :: How To Customize Numbered / Bulleted Lists In Text Tool
May 12, 2012there maybe opportunity to customize the numbered/bulleted lists in Text tool in Xara Designer Pro 7?
I am not sure maybe somewhere read that it is possible
there maybe opportunity to customize the numbered/bulleted lists in Text tool in Xara Designer Pro 7?
I am not sure maybe somewhere read that it is possible
t is possible to create numbered/bulleted text in photoshop, with indentation as it is done in MS Word.
Just something like the text that appears to the left of the image of that house. The image displayed shows the various components of a water distribution system for a single home which collects rain water and deposits it in a storage tank. The only text that I have written in photoshop is the title and the web address.
This is for some course notes but I wanted to replace the original scanned text (which is in dark blue) for some photoshop text in black colour. But I want the text with the same indent format. Can this be done in Photoshop?
I have a paragraph style for numbered lists with rule below set to text width. But the rule doesn't extend to the left below the numbers. Is there a way to do this automatically without having to set negative left indents for each one? There are 80+ list items and since I'm not using a monospaced font, the rule would need to be slightly different lengths throughout.
View 1 Replies View Relatedit is possible to justify the text of a bulleted list in the same way as for a paragraph? I can do it in Microsoft Word but I can't seem to do it in Illustrator.
When I justify the text of a paragraph in Illustrator it works perfectly fine. But when I do it for bulleted text, it gets all weird.
which kind of possibilities are to customize the Floor Shadow for an object?
Basically I would like to change the angle, and of course works the dragging of the shadow to a different place, but have to do for several objects and not sure I can do consequently on the same way with the mouse. (even with keeping the CTRL)
Is there maybe way to set this angle entering numbers?
I want to be able to pull the numerical value of a text and be able to increment it by a specified amount to then rewrite the text to the new number...
More specifically i have a floor plan with numbered rooms say 1-100... These numbers refer to a separate schedule with the actual room names and i am trying to keep them in order by plotted sheet... Say area "A" on the first sheet is numbers 1-10...
If halfway through the naming process i notice that i forgot a room in section "A" i now need to increment all the numbers 11-100 by one to 12-101 and add the room number to section "A" that now contains 1-11...
Currently i use TCOUNT to individually select each number in order 11,12,13,14 - 99, 100... to increment this way is very tedious and it would be easier if i could just select the numbers 11-100 with a bounding box and be able to extract the text, convert it to a number, increment, rewrite the original text for every selected text no matter of order..It has been so long since i have written lisp that i am not really sure where to begin..
This morning the shop brought back a set of drawings and requested that I provide a cut list for the fab department. Our drawings consist of an assembly drawing and materials list on the first page with several individual parts on each of the following pages. I am looking at including a column in the ML for the operation ( laser, saw, shear) and sorting the list by it. However when I do this the Item Numbers on the list are all confused. If a person were to look at a balloon on a drawing and then attempt to find it in the list it would be difficult and time waster.
The questions.
1. Is there a way to renumber the item list after sorting the material?
2. If I place an assembly view off the edge of the sheet for each of the following sheets and then place a materials list on each sheet, is it possible to create a plugin that would find which parts are on the sheet and hide all the other parts on the list? I have just started going through the "my first plugin" tutorial and this sounds like a place where it should be useful but I don't know which tags I need to look for.
I applied a ceiling perspective to my text and the words appear jagged. Why and how do I fix this?
View 2 Replies View RelatedI have used GIMP before, uploading artwork I created from it on to deviantART. However, this has been quite a while ago, back when it was GIMP 2.4 or so.
I recently just got a Wacom Bamboo tablet though, and wanted to get back into making art. I redownloaded GIMP (this time version 2.8) and while I am very satisfied with the update, there is one thing that has bothered me.
I'm not exactly a fan of the new format for the tool options of the brushes from how they used to be.
Basically, I prefer to how the tool options for the brushes were for GIMP 2.4 over the updated 2.8. Is there a way I can keep version 2.8 with the slight adjustment of having the tool options formatted the way they were in 2.4?
For me it's more of an inconvenience adjusting the brush size and whatnot, and I'm so much more used to how it was formatted in older versions.
if you can customize / move tool bars & zoom in/out using mouse wheel with AutoCAD 2012 LT ?
View 5 Replies View Relatedknow if there a way to use fields in a table to pull the measurements out of dimensions snapped in a drawing (or layout) and place them in that table.
I create framing drawings and am looking for a quick way to put together a cut list without having to manually type dimensions into a table.
We are using inventor 2011 and I would like to make the text wrap where I want it to not where the cell length determines. Can I do this in the ipropeties of the part? When I edit the parts list to move wrap the text manually the text turns blue of course, but this also negates the updating of parts automatically. In the part I use an expression to ensure that the description reverts back to the iproperties of the part ie =<G_L> X <G_W> - <MATERIAL>. I would like it to insert a text wrap then proceed to the next line with <STOCKNUMBER> - <PARTNUMBER> so I would look like:
12" X 6" - G40.21-44W
PL. 1/2 - PL-100
Is there anyway to add a tool palette into a work space using the customize user interface?
View 2 Replies View RelatedSomeday the light bulb is going off and I will understand mapcar and lambda. However.....I have a program that reads an excel file sheets. Sometimes the sheet only has 1 column, sometimes 2 or more.
I need to convert the saved values from the sheet to a list with the text spaced evenly. Unfortunately the text lengths vary. I would like a subroutine to pass the list to and return a list of strings with text aligned with padded spaces allowing for the longest text in each column. I am using the new list in a dialog box with fixed_width_font=true (so columns align).
Example 1-
(setq List1 (list "Col1-Line1" "Col1-Line2" "Col1-Line3-longer" "Col1-Line4"))
(AlignText List1)
returns
"Col1-Line1"
"Col1-Line2"
"Col1-Line3-longer"
"Col1-Line4"
so no padding needed
Example 2 -
(setq List2 (list (list "Col1-Line1" "Col1-Line2" "Col1-Line3-longer" "Col1-Line4") (list "Col2-Line1-longer" "Col2-Line2" "Col1-Line3" "Col2-Line4")))
(AlignText List1)
returns
"Col1-Line1 Col2-Line1-longer"
"Col1-Line2 Col2-Line2 "
"Col1-Line3-longer Col2-Line3 "
"Col1-Line4 Col2-Line4 "
Example 3 -
(setq List3 (list (list "Col1-Line1" "Col1-Line2-longer" "Col1-Line3" "Col1-Line4") (list "Col2-Line1-longer" "Col2-Line2" "Col1-Line3" "Col2-Line4") (list "Col3-Line1-longer" "Col3-Line2" "Col1-Line3" "Col3-Line4")))
returns
"Col1-Line1 Col2-Line1-longer Col3-Line1-longer"
"Col1-Line2-longer Col2-Line2 Col3-Line2 "
"Col1-Line3-longer Col2-Line3 Col1-Line3 "
"Col1-Line4 Col2-Line4 Col3-Line4 "
how to do a bulleted list in Photoshop 6? So that the second line of text in a bullet lines up where it is supposed to without having to put extra spaces in?
View 2 Replies View RelatedIn Xara Designer Pro 7, when I have selector tool active and want to drag over a number of elements to select them the selector tool will change the size of the canvas (page). Is that not a bug? I used this way of selecting elements often, and it is not good for me with this new behaviour.
Is it a bug or is it a new setting which I then need to change?
I want the bullet to remain with the text like it would in a MS Word bulleted list.
View 2 Replies View RelatedTrying to get a flag note (note# in a triangle) in a bulleted list (NOTES: field at top left of drawing).
Currrently, I have created a dynamic block (triangle with the number) and it's put in front of the applicable note but it's kind of a kludge.
I would like to use the Notes: field as an MTEXT, bulleted list. Some of the notes would have bulleted number in a triangle.
Here I would like to know how to make a bulleted list nest in CorelDraw x6?
Example:
A___ The text;
B___ The text;____1_ The text;____2_ The text;
C___ Text
In photoshop, How would I create a grid with sequential number in any corner of each square?
View 2 Replies View Relatedhow to select only even or odd numbered files in lightroom? I need to reduce the quantity of images in my timelapse sequence. since there are 8250 images and doing this maually would be tediuos and make me want to kill myself.... : )
View 10 Replies View RelatedHow do I unbold the numbered list? The first phrase is bolded in my list but I do not want the numbers to be bold.
View 20 Replies View RelatedThe list was going great on all three levels until level 8.2.2 (that's what it should show), but I am showing 6.2.1. I'm pretty sure I have all the correct levelled Paragraph Styles.
This video shows the gist of it. One thing I have noticed is when clicking on the 8.2.1 (the last correct numbering in the list) the option 'clear overrides in selection' is available from the Paragraph Styles window.This is not available on the faulty 6.2.1. so I'm hoping this is playing an important role.
I tried adding another Paragraph Style and resetting that number but what's really strange is that it stays on 6.2.1. and I can't see the point of creating another paragraph style on whilst staying on level 3.
I've seen in a number of graphics people have augmented them with an overlay of a series of 1's and 0's (Binary #'s). They slightly plure them but manage to keep the numbers still slightly visible.
is there a recommended font to use when doing this?
I'm using Windows 7x64 and have recently installed Lightroom 4.3. Initially worked well but after installing Photoshop CS6 I can no longer see images. The metadata and histograms are there but no images. What I see is a set of gray frames, one for each image in the imported group. Each frame is numbered sequentially, and the total gray frames is the same as the number of images in the imported file.
Using the "Develop" mode I still see only a gray box, though the histogram is live, and as I move the cursor across the gray box it shows R, G, and B characteristics as if the photograph is visible.
When I try and open images using image sequence, it does not open all the consecutively numbered files. It only opens about half of them 471 or 873. Why is this? I have copied the files, batch renmaed a few times, and still it does not open all 873. I can tell this by the short length and when I go to export it only says "files up to 471" and it is not the entire folder.
View 7 Replies View RelatedCan autocad automatically create a sequentially numbered array. I do concert seating and am looking to create an array of seats and have them be numbered automatically as I create the array.
View 4 Replies View RelatedI need a way to take images of a preset size and slice them up into seperate little image squares which are each saved with a sequential number starting with the first square (top left) but in a grid type pattern - so the first square would be saved as '1-1.jpg' and the one to the right of it would be '1-2.jpg' and the one to the right of that would be '1-3.jpg' etc. Then the next row would be like '2-1.jpg', '2-2.jpg', 2-3.jpg' etc. and so on.
Is there anyone who would possibly be able to help write an action to do this automatically?
I know it's a large request but I'm not so good with complex actions and don't know where to begin with this.
Please help if you can. The final 'diced' images are to be used in a website which is a college project of mine, I'm fine with building the website, I'm just not so good with actions and really don't want to have to slice a number images individually (I'm currently estimating there will be a large number of little squares per image - something in the region 300 or so...). If anyone can help I'll work out the exact figures and dimensions so it can be done.
Is there a way to make non rectangular text boxes in Xara designer? Say I have a star shaped object in the page and I want the text INSIDE the star.
Also, is there a way to color fill a text box?
Using: Xara Photo & Graphic Design 6
AMD Athlon II X2 255 Processor 3.10 GHz
2.00GB (1.75 GB usable) RAM
64-bit OS
I follow the tutorial in the Xara Help, but cannot get the results shown. I draw the circle, compose the text, and set it to the middle Select both circle and text Arrange/Fit Text to Curve....the text appears around the lower, right side of the cirle After all this I am unable to manipulate the text (It's a piece of cake to do this in Publisher 2010, but it has some minor problems in appearance)
(Using XDP7)
I endlessly find that I have text line objects which I later wish had been proper text areas (because I want to control the size of their bounding box, for example).
Is there any sensible way to convert a text line object into a text area object - it's a bore to do it by creating a new text object and then cutting and pasting the text, and it is seemingly a trivial thing for the software to do automatically.
Alternatively, is there an option (perhaps a hidden one) to have all text objects created as areas rather than lines?