『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
The official community for FrameMaker.
新着順
How can I change the color of table border in Adobe Frame Maker?
Is there a way to underline superscript and normal text while keeping the underline all at the same level?
I am trying to set the font family, size and style of the selection using ExtendScript. Family and Style are applied correctly but the font size stays the same. FM2019. What am I doing wrong?FA_Errno is set to FE_Success after the operation. function fixText(targetDoc){ var i = 0; var arial = GetFontFamilyValue("Symbol"); var textProps = AllocatePropVals(3); i=0; textProps[i].propIdent.num = Constants.FP_FontFamily; textProps[i].propVal.valType = Constants.Integer; textProps[i].propVal.ival = arial ; i++; textProps[i].propIdent.num = Constants.FP_FontSize; textProps[i].propVal.valType = Constants.Integer; textProps[i].propVal.ival = 36 * 65536; i++; textProps[i].propIdent.num = Constants.FP_Underlining; textProps[i].propVal.valType = Constants.Integer; textProps[i].propVal.ival = Constants.FV_CB_SINGLE_UNDERLINE; var tr = targetDoc.TextSelection; targetDoc.SetTextProps(tr, textProps); Prin
If there are multiple headings in a page, how can I assign the heading at the bottom of the page toview in running header and footer (Running H/F 1 )
How to keep all the images in the document in the same size and exact places (with same margins) in Adobe Frame Maker?
How can I not underline Bullets in Adobe Frame Maker ?
Anyone have this issue? Framemaker generates an XLIFF file for translation purposes OK the first time. This file is then imported back into Framemaker, and it's imported OK. The problem starts when a second attempt is made to generate the XLIFF file. Framemaker goes to the last chapter of the book and then crashes completely. No error messages are shown, so there's no clue as to what is going wrong. Framemaker can be started OK but continues to crash when an attempt is made to generate the XLIFF from the same book and FM files. I suspect the FM book file is being corrupted by the first XLIFF generation so that when an attempt is made to use it again it stops Framemaker working.
I have developed a script that converts ditamaps into framemaker books. Due to the size and number of books to be created this script must run overnight. Seemingly randomly framemaker creates a popup message that warns me it doesn't know where referenced images files are located and that the images will appear as grey boxes. This popup prevents the script from running until someone clicks the "ok" button, at which point it will resume. Is there a way to prevent framemaker from generating these popups?
My find/change script steps through each document in a book as it executes. At the start of the script, I read each doc filename in the book into an array and then use the SimpleOpen method to make each document active; something I picked from a post a few months ago. However, I sometimes get an error that says, "No insertion point or active document. Cannot continue." Any thoughts on what I might do to fix this? I searched the forum, but no luck. Here's the code I'm using to open/activate each doc.// Open each doc using doc.Name and call executeHitlist function function searchDocs () { for (k = 1; k <= docCount; k++) { doc = SimpleOpen(openDocs[k]); $.writeln("Searching " + doc.Name + "..."); doc = app.ActiveDoc; executeHitlist (); } }
Dear friends, I'm looking for the Open() function parameter that dismisses the "Cannot display imported graphics" message and lets the book component Open function loop continue. I've tried:i = GetPropIndex(params, Constants.FS_RefFileNotFound);params[i].propVal.ival = Constants.FV_AllowAllRefFilesUnFindable; i = GetPropIndex(params, Constants.FS_AlertUserAboutFailure);params[i].propVal.ival = Constants.FV_DoOK; None of them helped dismiss the imported graphics error message. Will appreciate your input.Thanks!
I am working in unstructure FrameMaker 2022 and have a book file. I am trying (unsuccessfully) to establish a link in one file of the book that goes to a location within the book after it is published to pdf. Nothing I am trying seems to work - any ideas?
I have a document with a revision highlight page. This page utilizes a list of markers to list all the paragraphs that have changed since the last published document.The problem I am facing is that some of the changes affect a bullet list item. In the list of markers generated page, everything works for normal numbered paragraphs; however, for bullet list items I get a bullet instead of the list-parent paragraph number.My building blocks for the revision highlight paragraph is as follows:<$chapnum>.<$pagenum> <$paranumonly> <$markertext>In the example below, the '1.5' is the Chapter number. Page Number, and the 1.3.3 is the para number on that page.Is there a way to list the bullet list parent paragraph number whenever the marker affects a bullet list item?
I have read that one can use AI for generating code, but I have next to none experience with coding. I am merely curious as whether anybody has tried this with FrameMaker?
Hi, I am working on a script which should check, if a certain text frame on a master page has the Overflowed property and adapt the height and the position accordingly. if (lTextFrame.FirstSubCol.Overflowed == 1) ... However, I see that the script passes the "if" only, if the text frame in the file has already the Overflowed property, when it is opened. Not, if I open the file and then change text (via a variable) in this text frame, so that the text frame then assumes this Overflowed property. Could it be that I have to open the master page and go to the corresponding page, so that FrameMaker is able to notice this issue? foDoc.Redisplay(); before the if had not helped. Best regards, Winfried
I am not able to use smart Quotes even when I have turned on Smart Quotes Option.
How can I add Grammar check in Adobe Frame Maker?
Can Someone Explan what are Pair kem, Change bar, Tsume, and Superscript in Adobe Frame Maker?
I'm a brand new user so I'm going to assume this is a 'me' problem but I cannot seem to find any way of getting FrameMaker 2022 to default to mm's and A4 pages on start up. Everything I have found so far seems to suggest this is either a 'per session' or 'per document' setting ... which I hope is not true. I've looked through the maker.ini file and can't see anything there that looks like it is related, which makes me feel a bit nervous about being able to make those settings 'stick'. Can someone either point out what I'm missing, or confirm my fears? Thanks in advance
How to bolden the steps in numbering properties. I tried to use the option given in character format, but no option is there to bolden the steps. Please check the screenshot.
Hello,I have a book with 3 chapters.I have created a template with a page number at the top of the template.I would like to apply this template (page number) on all the chapters of the book.How to do this ?
Good Morning,I am trying to write a script that inserts an anchored frame in front of each element specified as "Caption". Below are my attempts. Could you help me? or advise something? Thank you in advance.var doc = app.ActiveDoc;var mainFlow = doc.MainFlowInDoc;FindElements(mainFlow);//~ function FindElements(flow) {//~ var elements = flow.FirstTextFrameInFlow.everyItem().getElements();//~ for (var i = 0; i < elements.length; i++) {//~ var currentElement = elements[i];function FindElements(flow) {var currentElement = flow.HighestLevelElement;var nextElement = currentElement.HighestLevelElement;while (currentElement.ObjectValid()) {FindFigures(currentElement);currentElement = nextElement;nextElement = currentElement.HighestLevelElement;if (nextElement === currentElement) {break;}}}function FindFigures(element){var currentFigure = element.ElementDef;var nextFigure = currentFigure.NextElementDefInDoc;while (currentFigure.ObjectValid() && currentFigure.Name = "Figure");Ne
I just installed FrameMaker 2022 and converted files from Framemaker 2019 over to 2022. I cannot get the job option ncm to work. It is installed here: C:\Program Files (x86)\ElmSoft\FrameScript7\SampleScriptsWe have Framescript and Timesavers installed.This is the same path we used for Frame 2019. The other job options work though so it does not appear to be the flushing error. The distiller has the -f configuration. Here is the error message: Loaded SP TimeSavers v. 5.54.. 1997-2008 Shlomo Perets, MicroType (Israel)*** reading TimeSavers settings . . . completed%%[ Error: invalidfileaccess; OffendingCommand: file ]%%Stack:(w)(cepilog.tmp)/cepilog%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%%%[ Warning: PostScript error. No PDF file produced. ] %% Any help would be appreciated.
I'm building some regex searches and ran into one I can't seem to solve. I'm searching for all incorrect capitalization and punctuations of Split "S" (the aircraft maneuver). The expression I'm using is:[Ss]plit[ -]“?[Ss]”?(?<!Split “S")The goal is to find all combinations of initial caps and punctuation (space, hyphen, quoteddbl) and using a look ahead to exclude the correct term. It works great at finding all the variations, but also finds [Split "S]"...ignoring the right double quote punctuation. I'm having no luck, so thought I'd turn to the experts.
I am working on a structured book with ExendScript and I want to change the top-level NoName element to an element definition that is in my element catalog. I can't figure out how to do it with ExtendScript. I also want to wrap the BOOK-COMPONENT element in another element that is in my element catalog. Any pointers would be appreciated.
How to do internal and external linking in Adobe Frame maker?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.