|
![]() |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
I am trying to switch which frame contains copy, based on a copyfit.
If copy fits in Frame A ("textblock"), then Frame B ("textblocklong") is suppressed. If copy does not fit in Frame A, then Frame A is suppressed and Frame B is used. Copy will always fit in Frame B. I cannot figure out to get this rule to put copy into Frame B("textblocklong") only when FrameA !Copyfit It does manage to suppress frame B when copyfits It does manage to suppress frame A when !copy does not fit It does not manage to put content into Frame B when !copy does not fit This novice needs some help with this rule. if (FusionPro.Composition.CurrentFlow.name == "textblock") { if (!Copyfit(new MagnifyAttributes("text", 100, 100, 0, 0))) FusionPro.Composition.CurrentFlow.content = ""; }else{ (FusionPro.Composition.CurrentFlow.name == "textblocklong") FusionPro.Composition.CurrentFlow.content = ""; } } |
#2
|
||||
|
||||
![]()
In the OnCopyfit callback rule, you can't modify the contents of any text frame, or suppress a frame, other than the one being currently processed.
What you can do, in OnRecordStart, is use the FusionProTextMeasure object to determine whether the text would fit into a particular frame, then set each frame's suppress property, or its text contents, as appropriate. This will work fine as long as the (smaller) frame doesn't wrap its text around any other frames.
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() |
#3
|
|||
|
|||
![]()
Can you help me with that OnRecordStart text Measure rule to suppress the frame? I very novice here and do not know how to write that. How do you write the text measure to determine if copy does not fit in the frame?
var tm = new FusionProTextMeasure; tm.useTags = true; tm.CalculateTextExtent(Resource(BCText)); var tmWidth = tm.textWidth; if (tmWidth > "XX??") //if text exceeds frame { FindTextFrame("textblock").suppress = true; FindTextFrame("textblocklong").suppress = false; } else { FindTextFrame("textblock").suppress = false; FindTextFrame("textblocklong").suppress = true; } Thanks for your help. |
#4
|
||||
|
||||
![]()
Something like this:
Code:
var smallFrame = FindTextFrame("textblock"); var largeFrame = FindTextFrame("textblocklong"); var TM = new FusionProTextMeasure; TM.maxWidth = smallFrame.GetSettableTextWidth(); var err = TM.CalculateTextExtent(Resource(BCText).content); if (err && err != -1) throw "Error measuring text: " + TM.messages; var fitsInSmallFrame = TM.textHeight < smallFrame.GetSettableTextHeight(); smallFrame.suppress = !fitsInSmallFrame; largeFrame.suppress = fitsInSmallFrame;
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() Last edited by Dan Korn; March 8th, 2013 at 04:35 PM.. Reason: typo |
#5
|
|||
|
|||
![]()
I just don't know this stuff well enough and I don't know what to do.
I put in your wonderful rule, and it does not seem to understand the text measure. It always uses frame("textblock") and does not use frame("textblocklong") ever. file attached. Last edited by sandig@customprinters.com; May 19th, 2014 at 02:56 PM.. |
![]() |
Tags |
copyfit, frame, suppress |
Thread Tools | Search this Thread |
Display Modes | |
|
|