Search found 1306 matches

by phspaelti
2010-06-19 09:21:20
Forum: Nisus Writer Pro Macros
Topic: arab numerals - roman numerals
Replies: 10
Views: 15397

Re: arab numerals - roman numerals

And here also a version for the reverse conversion. Again I used the input/output of Kino's macro, and just 'simplified' the conversion. I also 'loosened' the types of numerals the macro accepts. ### Roman Numeral to Arabic Numeral ### # Convert Roman numeral(s) in selection(s) to Arabic numeral(s)....
by phspaelti
2010-06-19 08:49:49
Forum: Nisus Writer Pro Macros
Topic: arab numerals - roman numerals
Replies: 10
Views: 15397

Re: arab numerals - roman numerals

Well I think it is probably wrong to think that Roman numerals are numbers in any sense that we know. They really just an abbreviatory way to write out numbers as words. One thing though is that Roman numerals reflect pretty directly the numbers as represented on an abacus. Presumably Romans would n...
by phspaelti
2010-06-17 17:24:31
Forum: Nisus Writer Pro Macros
Topic: arab numerals - roman numerals
Replies: 10
Views: 15397

Re: arab numerals - roman numerals

I know Kino is a very clever person, and excellent macro writer. So Roman numerals are much too stupid a technology for him. I think his approach to this problem is way too obscure. Sometimes less is more. So here is my approach. I have stolen Kino's excellent approach to handling the input, but I r...
by phspaelti
2010-05-06 00:48:00
Forum: Nisus Writer Pro Macros
Topic: How to make Macros?
Replies: 9
Views: 16302

Re: How to make Macros?

Actually, Nisus Writer Pro is a bit more capable than phspaelti suggests. If you add a bookmark to your document and then insert a cross-reference to that bookmark you can jump to the bookmarked text by double-clicking the cross-reference. This is explained in the User's Guide. I hope that helps. M...
by phspaelti
2010-05-03 05:49:17
Forum: Nisus Writer Pro Macros
Topic: How to make Macros?
Replies: 9
Views: 16302

Re: How to make Macros?

Actually, no. This is not what macros are at all. A macro is the ability to combine simple commands into a larger, complex command. What you are looking for is the ability to create a link within a document and this is unfortunately something that Nisus can't do. Nisus allows the following: - to cre...
by phspaelti
2010-05-03 05:32:32
Forum: Nisus Writer Pro
Topic: Borderless printing of images
Replies: 2
Views: 3955

Re: Borderless printing of images

It sounds like you are putting the images in-line. I would make the images float. This allows you to have the images in the margin, and even overlapping the edge of the page.
by phspaelti
2010-04-11 05:14:36
Forum: Nisus Writer Pro
Topic: Headings in the header
Replies: 8
Views: 8890

Re: Headings in the header

Kino wrote:
Esser wrote:It always insert a page break.
Yes, Section Break (Same Page) works as if it were Section Break (Next Page) for a page having a footnote. I hope this oddity will be fixed in a near future.
Well, there you go. I guess people like me, who never use footnotes, don't know about these things :)
by phspaelti
2010-04-10 03:11:50
Forum: Nisus Writer Pro
Topic: Headings in the header
Replies: 8
Views: 8890

Re: Headings in the header

But you can insert a section break "same page". Then there will be no page break. If you want the text of the header to change, you will need to insert a section break in NWP. As far as I know there is no other way. Anyhow to recapitulate: what you are looking for is the ability to insert ...
by phspaelti
2010-03-12 20:40:15
Forum: Nisus Writer Pro
Topic: printing Comments in Nisus Pro
Replies: 6
Views: 8892

Re: printing Comments in Nisus Pro

I'm not sure why Martin is so quick to dismiss a macro solution. The following is a 'quick and dirty' macro that would seem to do the job, but it has not been really battle tested. Use at your own risk (Place the cursor at the top of your file to start.) $selRange = TextSelection.activeRange :Insert...
by phspaelti
2010-03-05 23:06:30
Forum: Nisus Writer Pro Macros
Topic: Changing text size by the Size:Increase By menu option
Replies: 8
Views: 14152

Re: Changing text size by the Size:Increase By menu option

Hello Paul, there are at least two ways you can chain macros together. Let's assume you have 3 macros: Macro_A, Macro_B, Macro_C. You could write another macro like this: Macro_A Macro_B Macro_C That should work fine. From your comments I am thinking maybe you tried pasting the actual macro code of ...
by phspaelti
2010-02-15 10:04:31
Forum: Nisus Writer Pro
Topic: Splash Screen & Text Box
Replies: 16
Views: 23344

Re: Splash Screen & Text Box

I just keep Nisus open and running 24/7. So I guess I don't see the splash screen too often, or worry about how long it takes to load.

Philip
by phspaelti
2010-02-08 06:56:02
Forum: Nisus Writer Pro
Topic: How to customize header ?
Replies: 2
Views: 4982

Re: How to customize header ?

Have you tried using styles? You can adjust the styles to your liking using the Style sheet view. Or perhaps you are talking about a separator line (to separate the header from the document)? The following methods can be used: Use a leader tab Insert a line graphic (You'll have to make the graphic i...
by phspaelti
2010-01-29 17:13:06
Forum: Nisus Writer Pro Macros
Topic: soft hyphen macro
Replies: 2
Views: 6541

Re: soft hyphen macro

Just to flog a dead horse (and beat my own drum 8) ) replace the Nisus repository macro with the macro I provided a few comments ago in this thread. That macro will check and make sure you have hyphenation on.

Philip
by phspaelti
2010-01-29 01:11:42
Forum: Nisus Writer Pro Macros
Topic: portability of (perl) macros
Replies: 2
Views: 6770

Re: portability of (perl) macros

Thanks Martin.
I am slowly starting to figure this out.

best
Philip
by phspaelti
2010-01-28 01:26:12
Forum: Nisus Writer Pro Macros
Topic: Styles in new file created by macro
Replies: 5
Views: 9580

Re: Styles in new file created by macro

I see what you are saying. But it happens in saved macros too, if the text used to create the new document comes from a string as opposed to text. So the following macro shows the problem if even it is saved and run from the menu: $doc = Document.active $sel = $doc.selectedSubstrings Document.newWit...