Viewing 3 posts - 1 through 3 (of 3 total)
- AuthorPosts
- November 2, 2007 at 4:51 am #4903wOxxOmMember
When no text is selected invoking text case conversion commands does nothing. Yet it’s very handy to convert current word to lowercase/uppercase/titile case without first selecting it. How about extending these commands to work with current word when nothing is selected?
November 2, 2007 at 6:06 pm #4911Yutaka EmuraKeymasterWe are not adding new features any more before the version 7 release. You can write a macro doing exactly this, and assign that macro to your favorite keyboard and a toolbar button. Here is the macro:
document.selection.SelectWord();
document.selection.ChangeCase(eeCaseUpperCase);
document.selection.Collapse();
November 6, 2007 at 5:25 am #4943wOxxOmMemberthank you very much, I will use this:
x=document.selection.GetActivePointX(eePosView);
y=document.selection.GetActivePointY(eePosView);
document.selection.SelectWord();
document.selection.ChangeCase(eeCaseUpperCase);
document.selection.SetActivePoint(eePosView,x,y,false); - AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.