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 6542 - 6571 of 9213   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6542
Hello Scripters, Here's my task wich drives me crazy but seems so easy.... A) Insert Cross-reference marker B) Import a word document in the same line, so that...
Ralf Löbelt
ralfloebelt
Offline Send Email
Nov 1, 2005
3:13 pm
6543
Hello Ralf, i missing the correctly parameter in the sub's. The second run command has not the correctly sub. The TextLoc(vPgf) parameter used a invalid...
Karsten Natebus
karsten_natebus
Offline Send Email
Nov 1, 2005
6:08 pm
6544
Hello Scripters, I have a chunk of code that works with FrameMaker+SGML version 6.0p405. However, it fails with my client's FrameMaker 6.0p405. The book...
Rick Quatro
frameexpert@...
Send Email
Nov 1, 2005
8:07 pm
6545
Rick, I have Frame 6.0p357 and FS 3.2R2, and get the same result. oBookComp returns Null. Alex. ... __________________________________ Yahoo! Mail - PC...
Alexander Maynes
alex_maynes
Offline Send Email
Nov 1, 2005
8:19 pm
6546
Hello Rick, use this code snipped Set oBook = ActiveBook; Set sIndex = 'C:\Test.fm'; New BookComponent NewVar(oBookComp); Set oBookComp.Name = sIndex; The name...
Karsten Natebus
karsten_natebus
Offline Send Email
Nov 1, 2005
8:28 pm
6547
Hello Rick, ... oBook is not a valid preview bookcomponent. Best regards Karsten 'MAC' Natebus Script Interface Builder - S.I.B R1.1 available!!! ...
Karsten Natebus
karsten_natebus
Offline Send Email
Nov 1, 2005
8:34 pm
6548
Hi Karsten, You are right. According to the documentation, the Name option only works with FrameMaker+SGML. Thanks for the help. Rick ... formats!...
Rick Quatro
frameexpert@...
Send Email
Nov 1, 2005
8:57 pm
6549
Hi Karsten, Thanks for the help. oBook does work with structured FrameMaker but apparently not with standard Frame. Thanks again. Rick ... formats!...
Rick Quatro
frameexpert@...
Send Email
Nov 1, 2005
8:57 pm
6550
Hi, Currently my build setup uses FrameScript to generated PDFs for my sources. I start the book from a batch file as: %FRAME_EXE%...
vijiva
Offline Send Email
Nov 2, 2005
3:49 pm
6551
You have two ways to do this that I can see: One, is to just launch FrameMaker and have the Initial script attempt to open the book. The script can attempt to...
Rick Quatro
frameexpert@...
Send Email
Nov 2, 2005
4:37 pm
6552
I can't use the first option, since I already have a initial script to be loaded when a book is opened in framemaker. I will try the RunEsl option and get back...
vijiva
Offline Send Email
Nov 2, 2005
5:11 pm
6553
Hi, Okay I tried the following: From my batch script, instead of using %FRAME_EXE%, I used: RunEslBatch -f "%ESL_SCRIPT%" -a"%BOOK_ROOT_DIR% ...
vijiva
Offline Send Email
Nov 2, 2005
7:05 pm
6554
... After that Open Book line, you could just insert the line SET ActiveBook = bookobj; or else you could replace each "ActiveBook" by "bookobj" in the script....
Guido Carl
gcarladwin
Offline Send Email
Nov 3, 2005
3:25 pm
6555
Forget about using the Initial script with this method. Instead, role the code into the %ESL_SCRIPT% you have set up below. Rick...
Rick Quatro
frameexpert@...
Send Email
Nov 3, 2005
3:33 pm
6556
Hi Guys, I was just wondering what everyone thought about the editor as well as the debugger functionality in FrameScript 4? Those features alone are enough...
John Francis
jfrancis999
Offline Send Email
Nov 3, 2005
4:51 pm
6557
Hi John, The script editor is pretty nice; it is based the Scintilla/SciTE Text Editor. It has syntax-highlighting and line numbers, which are essential for ...
Rick Quatro
frameexpert@...
Send Email
Nov 3, 2005
4:59 pm
6558
I tried rolling contents in the Initial script to the ESL_SCIRPT, but it is not working, since I use events like NotePostOpenBook & NotePostDistill in the...
vijiva
Offline Send Email
Nov 3, 2005
5:59 pm
6559
Is there a way from FrameScript to have FrameMaker execute the "Read Application Definitions" command? I want to be able to provide a script, structapps file,...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Nov 3, 2005
6:20 pm
6560
Hi I'm a regular user of FrameScript but haven't started writing any of my own yet, and now I need to do this: Loop through all the paragraphs in a document ...
whitewaterpuppy2001
whitewaterpu...
Offline Send Email
Nov 7, 2005
1:05 am
6561
Hi, I am a new user to FrameScript and I am having difficulty with what I am sure is a relatively simple task. I am working with a structured document and need...
Alan Broomhead
abroomhe
Offline Send Email
Nov 7, 2005
5:26 pm
6562
Hi Alan, There are various ways to do this, depending on where the element is, but this should be the easiest way. If you check the english element's Object ...
Rick Quatro
frameexpert@...
Send Email
Nov 7, 2005
5:59 pm
6563
Hello Allen, Find the textrange of the element. Set vTR = objNewElement.TextRange; Move the offset around a position. Set vTR.Begin.Offset =...
Karsten Natebus
karsten_natebus
Offline Send Email
Nov 7, 2005
6:15 pm
6564
... It all depends on what the elements represent. As <entry> is the cell, you could manipulate the cell contents of the cell object. Assuming vElement is the...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Nov 7, 2005
6:20 pm
6565
Sorry, I forgot it should be the .offset that is increased. ... Eric L. Dunn Senior Technical Writer ...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Nov 7, 2005
6:23 pm
6566
When running a script from the script window, the FrameScript constants ThisScript and MainScript both equal ScriptEditor. This is annoying and renders the run...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Nov 7, 2005
8:51 pm
6567
Hello Eric, ... constants ThisScript and MainScript both equal ScriptEditor. This says Frank Elmore to it: 'When running the script in the editor window, it...
Karsten Natebus
karsten_natebus
Offline Send Email
Nov 7, 2005
9:02 pm
6568
... But....... The Debug assigns the filename to ThisScript (and MainScript). And with all due respect, the above is a non-answer. The script window and ...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Nov 7, 2005
9:46 pm
6569
I'm at the end of my tether. In my script I use the following command to import an XML file at the beginning of an element: Import File File(vCurrentFile)...
eric.dunn@...
Ford_Prefect...
Offline Send Email
Nov 9, 2005
8:51 pm
6570
Given a conditional text marker, I need to be able to access the text that is hidden. In other words, I want to access the conditional text without having to...
yourmom_of_course
yourmom_of_c...
Offline Send Email
Nov 9, 2005
9:24 pm
6571
Hi Eric, Do you get the same thing if you try to Open the XML document wiht FrameScript? Rick Quatro Carmen Publishing 585-659-8267 rick@... ...
Rick Quatro
frameexpert@...
Send Email
Nov 10, 2005
2:38 am
Messages 6542 - 6571 of 9213   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