Search found 1153 matches
- 2009-10-27 07:20:43
- Forum: Nisus Writer Pro Macros
- Topic: Macro for font convert.
- Replies: 6
- Views: 8800
Re: Macro for font convert.
No, you'll need to write the find expression exactly as Martin said with '.+' etc., and then you need to apply the actual font to the relevant bits of the expression. May I however suggest a different approach to this problem? Try going to the macro repository and download Kino's "Select by font" ma...
- 2009-09-04 09:18:58
- Forum: Nisus Writer Pro
- Topic: Problem converting footnotes to endnotes
- Replies: 4
- Views: 4357
Re: Problem converting footnotes to endnotes
On second thought I realize something. You might have a file that has no endnote style. In that case you need to add the endnote style. (The easiest way to do that that I can see, is to copy it out of some other document.)
- 2009-09-04 09:09:21
- Forum: Nisus Writer Pro
- Topic: Problem converting footnotes to endnotes
- Replies: 4
- Views: 4357
Re: Problem converting footnotes to endnotes
But you do also see the other form "Endnote", don't you?
Just select that, and then the footnote becomes an endnote.
Just select that, and then the footnote becomes an endnote.
- 2009-08-11 16:40:33
- Forum: Nisus Writer Pro Macros
- Topic: turntable
- Replies: 7
- Views: 10911
Re: turntable
Here is my version of such a macro that *does* work for tables with merged cells. # Macro Swap Rows and Columns with Merged Cells # version 1.0 # written 2009.3.16 by p. spaelti # # This macro has been inspired by and benefitted from code written by Kino. # # # The following macro transforms a table...
- 2009-07-14 08:05:12
- Forum: Nisus Writer Pro
- Topic: Feature request: split screen/window
- Replies: 12
- Views: 14583
Re: Feature request: split screen/window
Just note one thing though. The macro creates a copy of the document. As you edit the original the two windows will diverge. So this is quite different from a split screen.
- 2009-06-01 05:10:51
- Forum: Nisus Writer Pro Macros
- Topic: How to apply color properties
- Replies: 3
- Views: 6276
Re: How to apply color properties
The Color.black command is a command which returns a constant. The result is a rgb value (0,0,0). You can use this in commands like the "Set Text Color" command. That command assigns the color value to the current selection. In your case, I am guessing, the $value is not the current selection, but m...
- 2009-05-28 22:40:00
- Forum: Nisus Writer Pro
- Topic: drag-drop-type bug?
- Replies: 6
- Views: 5583
Re: drag-drop-type bug?
I can definitey confirm the bug. I have at times edited files where the drag-and-drop operation consistently results in a "freeze". The cursor disappears and trying to type results in a beep. One has to use the mouse and click at a location to re-obtain a cursor and continue work. Having said that I...
- 2009-04-25 07:05:32
- Forum: Nisus Writer Pro Macros
- Topic: Delete and backspace key
- Replies: 12
- Views: 14716
Re: Delete and backspace key
…and finally if you use the combining diacritic (U+0300) instead you can actually write the whole thing like this:
(for what it's worth…)
Code: Select all
Find and Replace '(?<=[aeiou])[\’\'´`]+', '̀', 'EsSa'
- 2009-04-16 07:35:06
- Forum: Nisus Writer Pro Macros
- Topic: Deleting the line you are in
- Replies: 9
- Views: 11131
Re: Deleting the line you are in
Yes, this is flaky and confusing. White space characters (or something looking such) between note texts are treated as \n when "One Note per Line" is checked in Note Styles and as \t when it is not checked. And those at the end of each page are treated as \f . Aha. Explained that way it all makes s...
- 2009-04-16 01:56:42
- Forum: Nisus Writer Pro Macros
- Topic: Deleting the line you are in
- Replies: 9
- Views: 11131
Re: Deleting the line you are in
Kino, thanks for your reply. I must say that I hardly ever use footnotes, so I really don't think about them. For the same reason I have not usually read your and Nobumi's comments on these matters very carefully However after reading about them, and then trying some tests of my own, I have to say t...
- 2009-04-15 18:49:13
- Forum: Nisus Writer Pro Macros
- Topic: Deleting the line you are in
- Replies: 9
- Views: 11131
Re: Deleting the line you are in
@Groucho: But js wanted to start from a selection that he already had. So your method doesn't really apply here. It did however give me an idea for a much simpler approach than Kino's. How about the following: Find and Replace '.+', '_Line_To_Be_Deleted_', 'Esa' Find and Replace '^.*_Line_To_Be_Dele...
- 2009-04-09 18:19:09
- Forum: Nisus Writer Pro
- Topic: Nisus and MobileMe
- Replies: 3
- Views: 3273
Re: Nisus and MobileMe
So the "1" (or some other number) was the trick. Thanks, I got it to work now.martin wrote:
As for the forum's list tag, it does work, but the syntax is a little awkward. For a bulleted list you should use:
And a numbered list:
- …
- 2009-04-09 06:06:21
- Forum: Nisus Writer Pro
- Topic: Nisus and MobileMe
- Replies: 3
- Views: 3273
Nisus and MobileMe
As a MobileMe user I recently began using the sync "Preferences" setting. Little did I know that this would not only synch my Mac's system preferences, but also the preferences for applications. The result is that if I make changes to the "Nisus New File" on one machine the same changes will later s...
- 2009-04-06 18:17:48
- Forum: Nisus Writer Pro Macros
- Topic: I think I found a bug
- Replies: 8
- Views: 10460
Re: I think I found a bug
Here's is where I think the problem lies. When I open the macro and check the color of the find string, for "normal" colors the format menu will show the correct color checked. So if the find expression has the text color "Red" then "Red" will be checked. But with "Gray" even if apply and save "Gray...
- 2009-04-06 17:21:11
- Forum: Nisus Writer Pro Macros
- Topic: I think I found a bug
- Replies: 8
- Views: 10460
Re: I think I found a bug
I can confirm Lou's problem, and whatever the value of Martin's remedy, it isn't applicable here. Here are the steps for reproducing the problem. Let's first try a case that works: 1. Open the find box 2. Enter '.+' as the find expression 3. Apply a text color (let's use "Red") 4. Test the find --->...