Does anyone know if it is possible to gray out a radio button or check box? I would like to make a radio button or check box appear "grayed out" under certain...
Hi Dick, Set its Enabled property to False to gray it out. Rick Quatro Carmen Publishing 585 659-8267 rick@... www.frameexpert.com...
Rick Quatro
frameexpert@...
Mar 1, 2005 6:46 pm
5849
I want to test for a range of names for an object. That is, I'm looking for Name(XYZ*) where XYZ is always part of what I want and * could be numbers or...
Hi Rick, Ah, thanks much! I knew it had to be around somewhere, but I couldn't find any reference to "gray" anywhere in the docs. Muchas Gracias, Senior Dick...
I'm still working in FrameMaker 6.0 (an upgrade to 7.1 is in transit). In the Format>Document>Text Options of a recent document, I reduced the Superscript...
David, You can set it for each document by using Set oDoc.SuperScriptShift = .25; where oDoc is the document object. Of course, you will need code to open, ...
Rick Quatro
frameexpert@...
Mar 2, 2005 1:31 pm
5853
Thanks to Klaus in message 5718, I did the following: Find String('XYZ') InString(vVariable.Name) ReturnStatus(vXYZFound) Then, I proceded based on vXYZFound...
Hello Sean, ... Additionally, you could use the "Prefix" option to detect only the strings that appear at the beginning of the object names: Find String('XYZ')...
Thanks Alex and Klaus (incl. message 5173). I used the StringList to specify colors and, indeed, when deleting non specified colors, and writing to the console...
Hi Rick, I tried to find the "Enabled" property for a radio button, but I don't see it. Is it somewhere else, or is it called something else? Regards, Dick ......
Dick, The Enabled property is listed under Common Properties for All Controls on page 120 of the FrameScript 3.2 EslObject Reference. You might need to ...
Rick Quatro
frameexpert@...
Mar 2, 2005 6:51 pm
5859
Hello Dick, ... EslObject Reference: Form and Control Objects, Control Objects, Common Properties for all Controls (p. 134). Table 133: Common Properties for...
Hello Dick, the Enabled property is general property for all controls. New EForm NewVar(objEForm1) Name('EForm1') Caption('Formular 1') MaximizeBox(False)...
Thank you all (Rick, Klaus, and Karsten). I was looking in the Common Forms properties and simply missed the Common Controls properties section. Now I know....
I have another problem: For some reason, the following code is not activating the file. You'll have to substitute your book and file names in this test code if...
This will not work because a BookComponent object is not a Doc object. Only a Doc object can be an ActiveDoc. Rick Quatro Carmen Publishing 585 659-8267 ...
Rick Quatro
frameexpert@...
Mar 2, 2005 9:14 pm
5864
Hello Dick, ... This won't work because a BookComponent object is different than a Document object. To activate the document of a specific book component, you ...
Hi, I searched through the archives, but i wasn't able to find anything, Does anyone have any script fragments that would enable multiple find & replaces...
We just got FrameScript. What resources do you suggest that I, a scripting newbie, access to improve my skills with this application? I plan on digesting the...
A huge thank you to Rick Quatro, who is an amazing resource. For those interested in introducing FrameScript to their working environment, check out his...
Hi Doug, I have a few tutorials at http://www.frameexpert.com, which you should find helpful. I also have a book called "FrameScript: A Crash Course" that will...
Rick Quatro
frameexpert@...
Mar 3, 2005 11:55 am
5869
Hi Russ, Figure out how you want to store your Find/Change strings. I find that a FrameMaker table works best. Then you will need to open this document and ...
Rick Quatro
frameexpert@...
Mar 3, 2005 11:58 am
5870
I'll also recommend Rick's tutorials and his book, if you want to dig deeper. I found the book very helpful and don't think I would have gotten up to speed, at...
A co-worker wants to be able to track who has modified certain Frame files that she is in charge of. Is there any way to do that with FrameScript (or with any...
... I think using a source code control system would be the correct approach....
Marcus Streets
marcus@...
Mar 3, 2005 2:45 pm
5875
Hi Marcus, ... You are right, but it wouldn't be as much fun for me! Rick...
Rick Quatro
frameexpert@...
Mar 3, 2005 3:44 pm
5876
Hi Rick, Well, here is a basic outline of how you could do it for the last user. 1) Create a NotePreQuitDoc event script, which is triggered just before the ...