『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
The official community for FrameMaker.
新着順
Hi, one FrameMaker instance (technical writer located in India) cannot correctly render some characters in a MIF file. I don't recognize any systematical logic. What is really strange is, that the ciphered chars "ņ" and "ā" are correctly displayed in the same file at a different position. The problem is reproducible, but only on one specific computer/FrameMaker instance. Do you have an idea? I've already tried setting the Windows locale to UTF-8, but this did not help.https://superuser.com/questions/1033088/is-it-possible-to-set-locale-of-a-windows-application-to-utf-8 Adobe does not allow me to upload the original MIF file, therefore I've renamed the MIF to TXT and upload it here. If you want to open the file, please rename the file extension from TXT to MIF first.
I discovered an annoying ExtendScript bug. Background text is not reported as a character property change in ExtendScript. To see it, create a single paragraph and apply a Background color as an override. Click anywhere in the paragraph and run this code. It will show 0 in the alert dialog. It should show 2. #target framemaker var doc, pgf, textList; doc = app.ActiveDoc; pgf = doc.TextSelection.beg.obj; textList = pgf.GetText (Constants.FTI_CharPropsChange); alert (textList.length);
Dear all, I want to use the automatic numbering for paragraphs to convert an arbitrary integer into a string. The automatic numbering provides a great range of numbering systems (numeric, roman, ...) In the following script the text range does not behave - although I have used this method in other scripts with success. //@target framemaker var KLD_Z = KLD_Z || {}; // global script object //@include ..\GetText.jsx KLD_Z.main = function () { // <><><><><><><><><><><><><><><><><><><><><><> $.bp(true); var oDoc = app.ActiveDoc, oTL1, oTL2, oTR, sText, oMasterPage, oTxtFrame, oPgf, PT = 65536; oMasterPage = oDoc.FirstMasterPageInDoc; // Add a temporary text frame oTxtFrame = oDoc.NewTextFrame (oMasterPage.PageFrame); oTxtFrame.Width = 400 * PT; oPgf = oTxtFrame.FirstPgf; oPgf.PgfIsAutoNum = 1; // se
We have a user using FrameMaker (FM) 2019/2017 that has issue reading files from SharePoint 2019 (on-prem) document library. The issue is that when trying to read the file(s) on SharePoint 2019 from FM client, the files is not able to render on FM. However, the same steps to read file on SharePoint 2013 it has no issue - able to render the *.fm file on FM.
I have created an EDD based on the FM Structured EDD Development Workbook. This includes elements like Chapter, Title, Section, Para, Warnnote, Item, Footnote, Table, and more. However, I can't create a book. The structure view displays the highest level element as NoName and each file as BOOK-COMPONENT. The NoName element shows that FM does not know which part of the structure should be applied. The book I'm reading has practice files that are already structured. However, I can't find these practice files due to a broken link so I have been practicing with copies of existing files. Please give advice as I have an existing manual I need to make an EDD for but am stuck. The structure view shows: V NO NAME||----BOOK-COMPONENT ..... Chap 1 ----BOOK-COMPONENT..... Chap 2 ...etc
We have started using a custom marker to create revision highlights sections for our books. I would like to find out if it is possible to clear out the markers between revisions. In addition to the custom marker used for revisions, we are using two other types of markers to denote regulatory references. As a result, we don't want to clear all markers, just the custom one. Is there a method to accomplish this?
Hi all, I want to access to Framemaker Spelling Checker properties. Manually, when we go to Edit -> Spelling Checker -> Options, we can change them but is there a way to access and change them programatically? Thanks in advance
I have been trying few python libraries to read data from a PDF made using FrameMaker. I am able to fetch hyperlinks that point to external public web pages. But I am not able to find the hyperlink URI for cross reference links. For example, This is the annotation for cross reference hyperlinks.{'/A': IndirectObject(2374, 0), '/BS': {'/S': '/S', '/Type': '/Border', '/W': 0}, '/Border': [0, 0, 0], '/Rect': [53.9978, 711.363, 131.515, 699.124], '/Subtype': '/Link', '/Type': '/Annot'} This is the annotation for external hyperlinks.{'/A': {'/S': '/URI', '/URI': 'https://en.wikipedia.org/wiki/Apple_Inc.'}, '/BS': {'/S': '/S', '/Type': '/Border', '/W': 0}, '/Border': [0, 0, 0], '/Rect': [53.9978, 673.685, 178.073, 661.685], '/Subtype': '/Link', '/Type': '/Annot'} How can I fetch an URI like link for cross reference hyperlinks to open the pdf in a new tab, not redirect within the same tab, pointing to the exact section/figure/table mentioned in cross reference link?
I have a weird problem with a book in FrameMaker 2020. It is a book with multiple chapters, and the footer in each chapter has a "<$curpagenum> of <$lastpagenum>" ("5 of 20" for instance).While the counter works ok on the first page of the last chapter counting "5 of 20", the first page in the first chapter which should count "1 of 20", counts 1 of 5The chapters numbering properties seem to be correct in the book with the first files page numbering starting at 1 and the following chapters/page numbers being set to "continue". For some reason the first chapters <$lastpagenum> does not reflect the books total number of pages even if I have updated the book.I must be overlooking something... but what?
[Unicode] Character Variables in Framemaker About If your document, project or organization has a modest number of page text elements that can be considered single characters, adequately identified by their Unicode names, and needing focused treatment in your Framemaker documents, this posting may be helpful. The scheme is likely portable to other DTP/WP apps, such as InDesign, but the Definition syntax is apt to vary. Simple easy-to-remember scheme Each candidate character is a single Framemaker Variable. Name: U+FFFF FORMAL UNICODE NAME Name: U+1FFFF FORMAL UNICODE NAME Definition: <ChFmtAsNeeded>\uFFFF or in semantic & overlay cases Definition: <ChFmtAsNeeded>\xFF Examples by way of illustrating why… …followed by more narrative discussion after list. Name: U+1F16D CIRCLED CC Definition: <CCicons>\x63 Issue: FM has no SMP support yet (FRMAKER-10976)(and very few Unicode fonts populate 1F16D yet in any case) This addresses the SMP (Supplementary Mult
Variable Page Count has it's quirks: When the book files use "Continue Numbering From Previous Chapter in Book" then the variable increases from file to file, because it just takes the value from the last page. It can not be used to sum up in the other cases, because it is formatted (how to sum up V + VII + IX...?) The core to get the desired information for summing up the total is quite simple: KLD_Z.GetPageNums = function (oDoc) { /* Get information about page numbers Arguments oDoc document to be handled Returns object with the following properties: .nFirst Page number of first body page (integer) .nPages Number of body pages .iFormat Format of pagen number (an integer!) */ var oPage, obj= {}; obj.nFirst = oDoc.FirstPageNum; oPage = oDoc.LastBodyPageInDoc; obj.nPages = oPage.PageNum + 1; obj.iFormat = oDoc.PageNumStyle; // is an integer return obj; } //--- end GetP
Hi All,I have FM documents with links generated using Hypertext (message url). These links work perfectly in FM, but do not work in the PDF documents I generate from the FM documents.By contrast, the conversion does not break cross-references. These continue working in PDF.I have checked the optimization options and that didn't help. Can someone help me please? I'm using FM 2019 15.08.979. TIAAviva
I am a beginner, trying to get to grips with the Framemaker demo. How can you set up guides and get things snapping to them? I found instructions on a non-Adobe site saying that you create guides by dragging from a ruler, but that doesn't work.
Dear experts,I try to find any character format with the following script:var aLocNames = [], j, jMax, oFindParms, oPgf, sTag, tRange, tRange, zz; // tRange = new TextRange(); oPgf = oDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf; tRange.beg.obj = tRange.end.obj = oPgf; // set up the starting TR tRange.beg.offset = tRange.end.offset = 0; // Find any character format iFS, iFV, sSearch, iMode, bWord, bCase, bBack (wildcard) oFindParms = KLD_F.GetFindParameters (5, 0, "*", 1, false, false, false); KLD_Z.InitFA_errno (); // reset - it is write protected tRange = oDoc.Find (tRange.beg, oFindParms);// initial find zz = FA_errno; oDoc.TextSelection = tRange; // debug: indicate visually oDoc.ScrollToText(tRange); $.bp(true); sTag = tRange.beg.obj; //<<<<<<< How to find the tag name? aLocNames.push(sTag); while(FA_errno === Constants.FE_Success) { tRange = oDoc.Find (tRange.beg, oFindParms); zz =
In response to this post: https://community.adobe.com/t5/framemaker/display-of-imported-pngs/m-p/12237246 I tried to reply and typed my reply and hit post, and I got hit with a "post flooding" error right after I clicked Reply, entered my reply and clicked Post, so I thought I would follow up here: For Export to PDF - There are no special settings that I could findanywhere that would help me get the equations recognized as images when exporting to PDF. The equations remained recognized as text. For Export to PDF/XPS - There was a single setting that I could try(Optimize for Image Quality), but again, the equations were not being recognized as images. Only text. For Save As HTM/HTML - I tried Lin's recommendations (Save >Advanced, and Web Options) at a size of Cambria Math 14 point, many subscripts, especially those with a descender such as a "
I have an equation-laden document that I am writing. The equations are being created in a Word doc (.docx) using Word's native equation editor. The .docx file is then saved as an .htm/.html file and all the equations in the document are automatically saved as .pngs in a separate folder named as image.(n), where n is the image number. I double-click an equation in this folder to automatically open the equation in my image editor (SnagIT - I don't need anything as heavy as Photoshop as I am not doing any modifications to the equations) and save the equation without any changes to it whatsoever with a new name. I then import the image into Framemaker byreference. I don't mess w/ the dpi of the image when I select it forimport - any image in the folder that was created during the saving of the Word file shows a dpi of 96 in the Imported Graphic Scaling dialog box when I select it for import and although this seems nutty to me (because none of the images are over-sized). .
Hello Guys I would like to know if I can have some help to find out how a CMS could benefit us and if it is something to consider investing in. I have never worked with CMS before and I have read about but it is not clear to me yet. Thank you
Hello Is it possible to create an editable/fillable PDF from FrameMaker 2020? Thanks!
When i export to pdf and open the document in microsoft edge the contents is out of order, i am trying to correct this. My 130+ page document uses disconnected pages. I use stand-alone table of contents in the document. Any help is apprichiated.Mircosoft Edge & Chrome Screenshots
We just moved from Frame 2017 to 16.0.2.916 (whatever that means). I opened one manual's book file, opened all the files in the book, and printed the book to PDF using Adobe Acrobat. About half way through the list, frameMaker closed abnormally but it did produce a PDF file to that point.Has this happened for anyone else?
Is there a way to combine the two generated lists on one page?
I am building DITA documents in FrameMaker 2019. The hierarchy in the DITA map is not being reflected in the PDF output I generate. For example, in one small document I'm developing I have the following hierarchy of topics:- What is DITA - Why Choose DITA - Focus on Best Practices - Minimalism - Structured Writing - Topic-Based Writing - Content Re-Use - Core Structural Elements and Attributes - The DITA Specification - DITA Maps - DITA Map Definition - Book Map Definition - Concept Topic Definition
Hi, I have generated a TOC for the book, but the hyperlinks are not working for some chapters. These are chapters I have changed the file name. I created another book but they don't work either.
I noticed some files have colors such as color24, but some files have just a few available. How can I add more colors to a file or have the same in all? Thanks
I am publishing my FrameMaker book to Responsive HTML5 output. The images display in the HTML output, but images within the same section are overlapping each other. Also, text from the next style is displaying on top of the image. Has anybody run into this? My images are inserted in Anchored Frames. I have played around with various insert settings, but none of that seems to make a difference. Thanks in advance for any insight.
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.