Skip to main content
Known Participant
December 12, 2018
Answered

Change the Selected text to Upper Case

  • December 12, 2018
  • 1 reply
  • 545 views

Hi, I have the below to code to select the Paragraph. But after that I need to update the selected text to UPPER CASE. Please help me getting the code for this.

var doc = app.ActiveDoc;
var flow = doc.MainFlowInDoc;
var textFrame = flow.FirstTextFrameInFlow;
var pgf = textFrame.FirstPgf;
var textRange = new TextRange ();
textRange.beg.obj = pgf; 
textRange.beg.offset = 0; 
textRange.end.obj = pgf; 
textRange.end.offset = Constants.FV_OBJ_END_OFFSET;
doc.TextSelection = textRange;

//Para got selected now i need change the paragraph to UPPERCASE without disterbing other formats

This topic has been closed for replies.
Correct answer frameexpert

I am sorry about that. Use this one instead:

Fcodes ([FCodes.KBD_ALLCAP]);

1 reply

frameexpert
Community Expert
Community Expert
December 12, 2018

Fcodes ([FCodes.TXT_UPPERCASE]);

Add this to the end of your code. Fcodes only work on the active, visible document. If you want to do this on an invisible document, like while you are processing a book, it will be a little more complicated.

-Rick

www.frameexpert.com
Known Participant
December 13, 2018

Hi Frameexpert,

Thanks for your response,

your code is updating the CharFmt and PgfFmt to uppercase, and the Pgf looks in uppercase. But the actual text is in lowercase only. When you copy the updated text to a notepad, it will be lowercase only. I just want to update Lowercase alphabets to uppercase alphabets without modifying its Pgf and Char formats.

It is similar to the option "ab   Ab  AB" available in the "Text Formatting" toolbar of the Framemaker application.

Please guide me how to use this option in FM Scripting.

frameexpert
Community Expert
frameexpertCommunity ExpertCorrect answer
Community Expert
December 13, 2018

I am sorry about that. Use this one instead:

Fcodes ([FCodes.KBD_ALLCAP]);

www.frameexpert.com