Search the web
Sign In
New User? Sign Up
framescript-users · FrameScript Users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6265 - 6294 of 9208   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6265
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...
Eb
e_oliver13
Offline Send Email
Aug 2, 2005
12:00 am
6266
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@...
Send Email
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@...
Send Email
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...
ta_nyamada
Offline Send Email
Aug 2, 2005
4:32 am
6269
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. ...
Karsten Natebus
karsten_natebus
Offline Send Email
Aug 2, 2005
6:54 pm
6270
Hello ... this sample is deleting all elements with a specified element definition in the current document. Set objDoc = ActiveDoc; If (Not objDoc) LeaveSub; ...
Karsten Natebus
karsten_natebus
Offline Send Email
Aug 2, 2005
7:09 pm
6271
Hello, ... read the message /5353 from Klaus Müller. best regards karsten /...
Karsten Natebus
karsten_natebus
Offline Send Email
Aug 2, 2005
7:47 pm
6272
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...
ta_nyamada
Offline Send Email
Aug 3, 2005
9:30 am
6273
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...
karsten_natebus
Offline Send Email
Aug 3, 2005
9:42 am
6274
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...
ta_nyamada
Offline Send Email
Aug 3, 2005
10:35 am
6275
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...
karsten_natebus
Offline Send Email
Aug 3, 2005
1:02 pm
6276
Hello Karsten, All issues have been solved. I really appreciate your kindness. Best regards, Takaaki Yamada -- Set oCurrentBook = ActiveBook; If not...
ta_nyamada
Offline Send Email
Aug 4, 2005
7:39 am
6277
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...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Aug 4, 2005
9:37 pm
6278
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...
kenbens
Offline Send Email
Aug 4, 2005
9:46 pm
6279
... www.Frameexpert.com is a good start. _______________________________________________________________________________________________________________ This...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Aug 4, 2005
9:57 pm
6280
Hello, see you the samplescripts on: http://www.itl.de/html/englisch/consulting/fsl/itl-pool.html http://framescript.de/lernen.html ...
karsten_natebus
Offline Send Email
Aug 5, 2005
7:01 am
6281
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. ...
karsten_natebus
Offline Send Email
Aug 5, 2005
10:34 am
6282
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...
sbats123
Offline Send Email
Aug 5, 2005
1:26 pm
6283
Hello Steve, ... Try 'Author'+Quote+'s Notes' instead. Regards, Klaus ... From: framescript-users@yahoogroups.com [mailto:framescript-users@yahoogroups.com] On...
Müller, Klaus
klaus_mueller23
Offline Send Email
Aug 5, 2005
1:30 pm
6284
... 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...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Aug 5, 2005
1:41 pm
6285
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...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Aug 5, 2005
2:18 pm
6286
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...
convextech
Offline Send Email
Aug 5, 2005
7:38 pm
6287
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@...
Send Email
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...
Klaus Mueller
klaus_mueller23
Offline Send Email
Aug 5, 2005
7:44 pm
6289
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...
convextech
Offline Send Email
Aug 6, 2005
5:23 pm
6290
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@...
Send Email
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...
convextech
Offline Send Email
Aug 6, 2005
5:47 pm
6292
Hello convextech, ... Verify that this subroutine is valid. (Not contained in the posted script snippet.) Do you process structured documents? ... Does that...
Klaus Mueller
klaus_mueller23
Offline Send Email
Aug 6, 2005
10:05 pm
6293
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...
convextech
Offline Send Email
Aug 8, 2005
12:28 pm
6294
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...
convextech
Offline Send Email
Aug 8, 2005
9:20 pm
Messages 6265 - 6294 of 9208   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help