Skip to search.
framescript-users · FrameScript Users

Group Information

  • Members: 630
  • Category: Software
  • Founded: Aug 20, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Messages

  Messages Help
Advanced
Messages 4374 - 4403 of 10298   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4374 framescript-users@yah... Send Email Dec 1, 2003
8:31 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the framescript-users group. File :...
4375 dan visel
viselsparknotes Offline Send Email
Dec 2, 2003
4:00 pm
Hi FrameScript list, Is there a way to make a list of element ranges? I'd like to make an array that would hold information on where listed elements are in a ...
4376 "Müller, Klaus"
klaus_mueller23 Offline Send Email
Dec 2, 2003
4:13 pm
Dan, ... You can make a integer list of elements; see the script below. Of course, you could make multiple lists to store also the element range, if necessary....
4377 Jeff Cunningham
jclefty2000 Offline Send Email
Dec 2, 2003
9:03 pm
I searched archived and found info on moving anchors but I am still having trouble achieving my task. Anyone have a simple script that will move a figure...
4378 rsdelong Offline Send Email Dec 2, 2003
11:21 pm
... having trouble achieving my task. Anyone have a simple script that will move a figure anchor that is on a paragraph by itself to the previous paragraph...
4379 Klaus Mueller
klaus_mueller23 Offline Send Email
Dec 2, 2003
11:39 pm
Hello Jeff, ... Assumed that a "figure anchor" is a AFrame anchor: Set vPgfNameError = 'MoveToPreviousPlease'; Set vPgfNameFigure = 'GoodFigureParagraph'; Set...
4380 dan visel
viselsparknotes Offline Send Email
Dec 4, 2003
6:16 pm
Hi all, If I'm exporting a textfile from FrameScript (using 'New TextFile'), how do I send a tab character? Sending a CHARTAB doesn't seem to do this - if you...
4381 Rick Quatro
frameexpert@... Send Email
Dec 4, 2003
7:57 pm
Hi Dan, Try using this for your tab character. New String NewVar(vTab) IntValue(8); Use vTab in place of CHARTAB. Rick Quatro Carmen Publishing 585 659-8267 ...
4382 Malcolm Mclean
mmclean_email Offline Send Email
Dec 4, 2003
8:29 pm
hmmmm, bounced the first time - try again ... From: Malcolm Mclean Sent: Thursday, 04 December 2003 3:10 PM To: 'framescript-users@yahoogroups.com' Subject:...
4383 Michael Müller-Hil...
michaelmh Offline Send Email
Dec 4, 2003
10:04 pm
... FrameMaker's tab is a decimal 8, but the rest of the world wants the tab at 9. New String NewVar(vRealTab) IntValue(9); gives you a string variable to work...
4384 Rick Quatro
frameexpert@... Send Email
Dec 5, 2003
2:17 am
Actually it was a mistake on my part. Rick ... was...
4385 Frank Dissinger
frank_dissinger Offline Send Email
Dec 5, 2003
11:16 am
Hi everyone, I need a script. It should process a FrameMaker file containing the contents of a C header file I get from our programmers. The purpose is to...
4386 "Müller, Klaus"
klaus_mueller23 Offline Send Email
Dec 5, 2003
12:44 pm
Hello Frank, Take a look at the code snippet below. Kind regards, Klaus Set vDoc = ActiveDoc; If (not vDoc) LeaveSub; EndIf Get Object Type(PgfFmt)...
4387 Frank Dissinger
frank_dissinger Offline Send Email
Dec 5, 2003
2:36 pm
Hello Klaus, Thank you very much!!! This was not just a "code snippet" it was the entire script. And it works like a charm. And you did it so quickly!!! Again,...
4388 ODS
dblayout Offline Send Email
Dec 5, 2003
11:16 pm
I need to add a small text frame to a master page that will contain some Arabic text. The Arabic text reads from right to left. How do I change 1 text frame to...
4389 Reng, Winfried
winfriedreng Offline Send Email
Dec 8, 2003
7:58 am
Hi Chris, ... FrameMaker does not support right to left languages. That means you must fake that: o Text must be right aligned. o Characters must be in reverse...
4390 rosalind.banwell@...
rbanwell2002 Offline Send Email
Dec 8, 2003
10:57 am
Hello all, I want to import a text file into a FrameMaker document using the FM option "Merge lines into paragraphs". I try the script below but still get a...
4391 livelinxbenb Offline Send Email Dec 8, 2003
12:12 pm
Hello All, I tried to compile the code below and recieved the following linking errors: Linking... testdll.obj : error LNK2001: unresolved external symbol ...
4392 Joseph W Crowther
jwcrowther Offline Send Email
Dec 8, 2003
4:04 pm
Hi all, I'm having a little problem updating an SGML script to XML. The file Extension override in the structapps.fm doesn't seem to be working and when I run...
4393 gcarladwin Offline Send Email Dec 8, 2003
4:57 pm
Hello, I was creating some groups of graphic elements, and I started with the group first, like: New Group DocObject(vDoc) ParentObject(vPageFrame)...
4394 Richard
sbrv22 Offline Send Email
Dec 8, 2003
6:09 pm
Hello, i solved this problem with something like that: Event NotePreFileType Find '.sgm' InString(Filename) NoCase ReturnStatus(SuffixFound); If SuffixFound ...
4395 Joseph W Crowther
jwcrowther Offline Send Email
Dec 9, 2003
8:57 am
Thanks Richard, I'll giev it a go. Shuld i change the sgml calls to xml? cheers Joe ... file ... dialogue. ... welcome. ... # ... NewVar ... 9999 ... # ... ...
4396 Richard
sbrv22 Offline Send Email
Dec 9, 2003
12:10 pm
Hello, ... may i missunderstood your problem. ... If you are working with FM 7.0 you can get problem because FM recognise xml by default and not sgml. I read...
4397 Klaus Mueller
klaus_mueller23 Offline Send Email
Dec 9, 2003
11:11 pm
Hello Rosalind, ... I never used that import option, but actually it doesn't seem to work. Although "ByCopy" should read "HowToImport(DoByCopy)", ...
4398 livelinxbenb Offline Send Email Dec 10, 2003
7:15 am
Ok, figured it out: If you are compiling in Visual Studio 6: 1) Project -> Settings -> Link -> Object Library Modules: Make sure you write in all the FDK *.lib...
4399 Joseph W Crowther
jwcrowther Offline Send Email
Dec 10, 2003
1:44 pm
Many thanks for the feedback. I'm a little confused as to why it worked with SGML and when i change the options to xml it doesn't work! I have tried...
4400 rickrett Offline Send Email Dec 14, 2003
6:50 pm
Hi Everybody! I need to save a bunch of files as Framemaker 6 (from FrameMaker 7). Is there a FilterID for FrameMaker 6? Is this how I would do it in my Save...
4401 Klaus Mueller
klaus_mueller23 Offline Send Email
Dec 14, 2003
7:29 pm
Hello Rick, ... You can use the FileType(SaveFmtBinary60) option: Save Document DocObject(ActiveDoc) FileType(SaveFmtBinary60); Kind regards, Klaus...
4402 rickrett Offline Send Email Dec 15, 2003
12:24 am
Thanks Klaus! One more thing... Is there a different FileType for a 6.0 book file? The following line does not work. SAVE Book BookObject(BookObj)...
4403 Klaus Mueller
klaus_mueller23 Offline Send Email
Dec 15, 2003
2:10 am
Hello Rick, ... Unfortunately, there's no SaveFmtBinary60 option for book files. Instead, you can use Save Book BookObject(ActiveBook)...
Messages 4374 - 4403 of 10298   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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