Hi All, I'm having problems finding and replacing symbols in a paragraph. I tried the find command but ran into problems when the file contained symbols that...
Hi Ernest, For sake of clarity, I will try to answer in a couple of posts. Below is some code that you can use to find the strings that use the Symbol font in ...
Rick Quatro
frameexpert@...
Aug 2, 2005 1:38 am
6267
Hi Ernest, Here is the rest of the code in place. Let me know if you have any questions. Set oPgf = TextSelection.Begin.Object; // Get a list of strings in the...
Rick Quatro
frameexpert@...
Aug 2, 2005 1:38 am
6268
Hello all, I want to search and delete the following three things: 1) Text: '\x09' 2) Element: 'Tablesheets' 3) Variable: 'Table Sheet' I'm at a loss to...
Hello Takaaki, ... the fist sample deletes all var's with a specified VarFmt and the the second sample replace alle var's with the the VarFmt definition. ...
Hello ... this sample is deleting all elements with a specified element definition in the current document. Set objDoc = ActiveDoc; If (Not objDoc) LeaveSub; ...
Hello Karsten, Thank you for your help. But the following line brings about another problem. Set objDoc.ShowAll = True; Its error dialog box says 'Run Error...
Hello Takaaki, is objDoc a valid object? Set objDoc = ActiveDoc; If (Not objDoc) LeaveSub; EndIf Set objDoc.ShowAll = True; or use another variable for the...
Hello Karsten, Sorry, it's not a valid object. Now I don't have any error dialog. Thank you. But I still have a problem. My script does not remove '\x09'. I...
Now. You would like to delete a line end. Here is a sample from Klaus Müller (msg. 4733) Replace the Values in the New StringList command. New StringList...
Hello Karsten, All issues have been solved. I really appreciate your kindness. Best regards, Takaaki Yamada -- Set oCurrentBook = ActiveBook; If not...
I'm trying to have my script modify properties of a graphic object based on an ini file. So far I'm stumped because whatever I do, I can't build a new property...
I bought Framescript a few years ago, but so far I haven't been able to figure it out. Does anyone know of a good place to learn how to write simple scripts? I...
... www.Frameexpert.com is a good start. _______________________________________________________________________________________________________________ This...
Hello Eric, The syntax in your script is not possible. You cannot attach variables for property names to property list objects. Use the following codesample. ...
I have a script that removes a number of explicitly named codnitional text tags from all chapters of a book. It works fine with one exception. I have a...
... I knew that. ;) As well as the fact variables can't be used in any of the other property or propertylist commands. But building the command in a variable...
Now I'm disappointed. The ScriptText option is only available with 3.1. :( So, until the IT department finally gets round to figuring out exactly what our...
I'd like to automate a find/change function which searches for several wildcard strings & applies a character format to them. I've tried editing sevaral...
If you use the Find FromTextLoc command, you can use the same wildcards that you can using in the Find/Change dialog box. Rick Quatro Carmen Publishing 585...
Rick Quatro
frameexpert@...
Aug 5, 2005 7:44 pm
6288
Hello convextech, ... Take a look at the Find FromTextLoc command in the reference. ... Take a look at the Apply TextProperties command in the reference. Kind...
Guys, I am in a real bind here. I've been writing/running/testing FrameScripts to find wildcard text which is in italics, and change it to a predefined...
You should post some of your code, particularly the part the applies the character format. Rick Quatro Carmen Publishing 585 659-8267 rick@... ...
Rick Quatro
frameexpert@...
Aug 6, 2005 5:32 pm
6291
I've copied and pasted this script together piecemeal from one you've done & some others I've found. The weird thing is, my coworker tried to update all on the...
Hello convextech, ... Verify that this subroutine is valid. (Not contained in the posted script snippet.) Do you process structured documents? ... Does that...
Figured out what it was - someone was using character tags for simple color application, i.e., there were tags called Blue, Black, Red, etc. Thanks for solving...
I'm able to apply this script on a single document but not on a whole book. What am I doing wrong? Here's the code: // Test for an active document or book. If...