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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 7284 - 7313 of 9208   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7284
Frame 7.1 FS 4.0 The command: Find FromTextLoc(ActiveDoc.MainFlowInDoc) String('\n') NoWrap ReturnStatus(vStatus) ReturnRange(vRange); Finds "soft returns"....
eric.dunn@...
Ford_Prefect...
Offline Send Email
Dec 4, 2006
9:03 pm
7285
I thought I'd ask the experts before trying to write anything with my meager skills. Is it possible to write a script that will purge all master and reference...
Martinek, Carla
copper6500
Offline Send Email
Dec 4, 2006
9:32 pm
7286
Hi Eric, You should be able to use: NEW String IntValue (9) NewVar (forced_return); New Text TextLoc(vLineBreakLoc) forced_return; Cheers, Mark ... From:...
Mark O'Connor
lemoco
Offline Send Email
Dec 4, 2006
9:35 pm
7287
Hi Eric, You can use this to insert a soft-return: New Text TextLoc(vLineBreakLoc) 9S; Rick Quatro Carmen Publishing 585-659-8267 www.frameexpert.com Frame 7.1...
Rick Quatro
frameexpert@...
Send Email
Dec 4, 2006
9:41 pm
7288
Thanks to Mark and Rick. Should have found Marks solution myself. DOH! Guess I was just facing scripting block and the simple hex to decimal of \x09 in the...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Dec 4, 2006
11:18 pm
7289
Klaus Mueller mentioned it in one of his posts. It is somewhere in the documentation, I think, but I don't remember where. It is pretty handy. Rick Thanks to...
Rick Quatro
frameexpert@...
Send Email
Dec 5, 2006
1:25 am
7290
Here's an interesting conundrum: The following script, copied from one of Rick's previous posts, works perfectly and replaces all soft returns in a document. ...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Dec 5, 2006
4:38 pm
7291
And here finally, the working alternative: Set vCurrentPara = ActiveDoc.FirstPgfInMainFlow; Get TextList InObject(vCurrentPara) NewVar(vTextList) LineEnd; Loop...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Dec 5, 2006
4:53 pm
7292
Hello Carla, You may want to try the attached script RemoveUnusedFormats.fsl. It allows you to delete all unused formats, master pages and specified reference...
Müller, Klaus
klaus_mueller23
Offline Send Email
Dec 5, 2006
5:40 pm
7293
Hello all, I'm a newbie with Framescript. I'm working in structured Frame. I have a number of different elements in my documents that have the same attribute...
Peter Rule
p_ruleau
Offline Send Email
Dec 5, 2006
6:03 pm
7294
Hello Peter, Sorry for the brief response, but I don't have my structured Frame scripts handy. IIRC, you need to create a new attributelist with the desired...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Dec 5, 2006
7:31 pm
7295
Thanks Eric, That was pretty much as far I got with the ref materials/this site etc. - and I was stumped!! I'm not sure if I'm over-cooking this but today I've...
Peter Rule
p_ruleau
Offline Send Email
Dec 6, 2006
4:30 am
7296
Hello Peter, you forgets the list to update. see my little sample script. best regards karsten http://framescript.natebus.de ...
framescript@...
karsten_natebus
Offline Send Email
Dec 6, 2006
8:09 am
7297
I'm trying to automate the production of PDFs from a set of FrameMaker books using FrameScript. I have a script to open each book, do an update, then print to...
kenbaldwin
Offline Send Email
Dec 6, 2006
5:30 pm
7298
I have a custom color definition that is used in over 50 Frame documents. It is called 'my_color' and it is currently RED. I would like a script that would...
dblayout
Offline Send Email
Dec 6, 2006
11:30 pm
7299
I have a custom color definition that is used in over 50 Frame documents. It is called 'my_color' and it is currently RED. I would like a script that would...
dblayout
Offline Send Email
Dec 6, 2006
11:33 pm
7300
Thankyou Karsten, With some more stuffing around(!) this is what I've ended up with (provided here for the benefit of any others novices like me looking to...
Peter Rule
p_ruleau
Offline Send Email
Dec 7, 2006
3:38 am
7301
Ken- I also had this issue. I checked the archives and it seems that there is no way to suppress the Inconsistency warnings. What I did instead was create a...
Jay Hershkowitz
jay_hershko
Offline Send Email
Dec 7, 2006
3:09 pm
7302
Hello All, I have an interesting FrameMaker programming problem that I am having trouble solving. I have a PDF that will help explain the problem at ...
Rick Quatro
frameexpert@...
Send Email
Dec 7, 2006
5:53 pm
7303
Hi Rick. Unless I greatly misunderstand you, I believe you just need a series of nested loops, driven by a series of string lists. The rough algorithm is: New...
Simon Bate
simonbate
Offline Send Email
Dec 7, 2006
8:33 pm
7304
OK, Here's a hack, er, excuse me, an algorithm. Before you populate each of the string lists, begin by adding a member[1] that contains "IgnoreMe" (or whatever...
Simon Bate
simonbate
Offline Send Email
Dec 7, 2006
8:53 pm
7305
Hi Simon, You are right, except if one or more of the lists is empty, it short-circuits everything. Rick Hi Rick. Unless I greatly misunderstand you, I believe...
Rick Quatro
frameexpert@...
Send Email
Dec 7, 2006
9:02 pm
7306
I swear, everytime I try to do something it seems to become far more complicated than it should be. If you want to insert text at the end of a paragraph, how...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Dec 7, 2006
10:47 pm
7307
// Paragraph containing the insertion point. Set oPgf = TextSelection.Begin.Object; // Text location at the end of the paragraph. New TextLoc NewVar(tTextLoc)...
Rick Quatro
frameexpert@...
Send Email
Dec 7, 2006
11:10 pm
7308
Hello all, All help appreciated. Another seemingly simple query that has vexed me. I'm trying to loop a variable incrementing its value by 1. I have the loop...
Peter Rule
p_ruleau
Offline Send Email
Dec 8, 2006
4:42 am
7309
Hello Peter, you can do this with the New Integer command. Sample: Set lv_strA = '1234567890'; Set lv_intB = 1; New Integer NewVar(lv_intA) Value(lv_strA); ...
framescript@...
karsten_natebus
Offline Send Email
Dec 8, 2006
6:05 am
7310
That's it. I'm certain if I spent more serious time scripting I wouldn't get myself into these messes. I just seem to always overlook constants, standard ...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Dec 8, 2006
2:39 pm
7311
Okay, Looked at Simon's answers, and nested loops do the job. Which is all good and fine if It's a known quantity of properties and settings. New StringList...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Dec 8, 2006
2:54 pm
7312
Hello, Occasional scripter here, FM 6.0 Unstructured, FS 4.0R2. I have been experimenting with creating a custom palette in FrameMaker (a technique I recently...
Alexandra Duffy
cloud_nine_v...
Offline Send Email
Dec 8, 2006
8:53 pm
7313
Never mind - Rick Quatro set me straight on how to do this. Thanks Rick! Have a good weekend, all. Alexandra...
cloud_nine_video
cloud_nine_v...
Offline Send Email
Dec 8, 2006
9:18 pm
Messages 7284 - 7313 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