Re: [libreoffice-users] Exporting Text File to PDF (One Page At A time)

2013-02-24 Thread John D. Herron
I believe you can print your ODT files to PDF either as one single file 
or as a collection of one-per-page files.


jdh


On 02/23/2013 09:16 AM, Hal Vaughan wrote:


On Dec 28, 2012, at 5:01 AM, lordmax tdf lordmax-...@email.it wrote:


Hi to all

Il 28/12/2012 02:02, Girvin R. Herr ha scritto:



Hal Vaughan wrote:

I'm exporting ODT files to PDF, but I want to export only 1 page at a
time, so I'm using a BASIC macro to handle this.

I've been searching, but since somewhere around 3-4am EST, I have not
been able to access oooforum.org and most links lead to there.

I can't find examples elsewhere that show me how to export a PDF file
from in BASIC or how to specify, again, from BASIC, what pages to export.

Can anyone give me links for examples that are not on oooforum.org?
Or tell me what classes I would be using for this so I can look them
up in the IDL to find out how to specify the page (or pages) to export
and how to use the PDF exporter?


Thank you.




Hal




If you need a single pdf for every page of your document it's better to create 
a single pdf and then separate every page with an external program specialized 
in this.


I haven't been able to get back to this for a while.

So I have to ask why one would say this?  In many cases the purpose of doing 
something from a macro inside LibreOffice is to have an integrated solution so 
one doesn't depend on having to run external programs.

I've been looking into this and this is quite possible - granted, it took me 
about 6-8 hours to find all the details, but it's possible.  I'll be posting a 
sample within the next few days.

It just seems to me saying it's better to do something else is a can't do 
attitude that defeats much of what one would want to do with macros.



Hal



--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] Save as doc crashes LO

2013-02-14 Thread John D. Herron
No problem saving a writer document as .doc (MS Word 97/2000/XP/2003, 
either Save or Save_As) in LO 4.0.0.3 on Ubuntu Natty.


jdh


On 02/13/2013 08:56 PM, steveedmonds wrote:

Hi.
Saving a writer document as .doc crashes my LO on OpenSuse. Could someone
please try on 4.0 and if it persists I will file a bug.
perf_calc_translations.odt
http://nabble.documentfoundation.org/file/n4037263/perf_calc_translations.odt
Cheers, Steve




--
View this message in context: 
http://nabble.documentfoundation.org/Save-as-doc-crashes-LO-tp4037263.html
Sent from the Users mailing list archive at Nabble.com.



--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] Need comfirmation about no function of Modeless Dialogs in 4.0

2013-01-31 Thread John D. Herron

...and for me as well

(produces empty window ~ 55mm x 55mm
with title reading LibreOffice 3.6).

jdh


On 01/29/2013 03:33 PM, Leif Lodahl wrote:

It works for me (I see an emty grey window but not with a title).

Running LibreOffice 4.0.0.2 on 32bit deb_Linux.

Hopes this can help ;-)

Chhers,
Leif Lodahl


2013/1/29 Fernand Vanrie s...@pmgroup.be


We uses the Basic codelines below to make Modeless Dialogs, sinds 4.0 we
end up with a non-visible window
is this a Windows only problem or a more general regression due to changes
in the API ?,
it was working until 3.6.4  Windows

Greetz

Fernand

Sub Main
   oDoc = ThisComponent
   oParentFrame = oDoc.CurrentController.Frame
   oPeer = oParentFrame.ContainerWindow
   oToolkit = oPeer.Toolkit

   oWindow = CreateNewWindow(oToolkit,**oPeer,150,150,200,200)
   oFrame = CreateUnoService(com.sun.**star.frame.Frame)
   oFrame.initialize(oWindow)
   oFrame.setCreator(**oParentFrame)
   oFrame.setName(NewFrame)
   oFrame.Title = New Frame

   oParentFrame.getFrames().**append(oFrame)

   oWindow.setVisible(True)
End Sub


Function CreateNewWindow( _
   oToolkit,oParent,nX,nY,nWidth,**nHeight) As Object
   aRect = CreateUnoStruct(com.sun.star.**awt.Rectangle)
   With aRect
 .X = nX
 .Y = nY
 .Width = nWidth
 .Height = nHeight
   End With
   aWinDesc = CreateUnoStruct(com.sun.star.**awt.WindowDescriptor)
   With aWinDesc
 .Type = com.sun.star.awt.WindowClass.**TOP
 .WindowServiceName = dialog
 .ParentIndex = -1
 .Bounds = aRect
 .Parent = oParent
 .WindowAttributes = _
   com.sun.star.awt.**WindowAttribute.MOVEABLE + _
   com.sun.star.awt.**WindowAttribute.CLOSEABLE
   End With
   CreateNewWindow = oToolkit.createWindow(**aWinDesc)
End Function


--
For unsubscribe instructions e-mail to: users+help@global.libreoffice.**
org users%2bh...@global.libreoffice.org
Problems? http://www.libreoffice.org/**get-help/mailing-lists/how-to-**
unsubscribe/http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.**documentfoundation.org/**
Netiquette http://wiki.documentfoundation.org/Netiquette
List archive: 
http://listarchives.**libreoffice.org/global/users/http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be
deleted






--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] LibreOffice losing position between sessions - solved!

2012-04-19 Thread John D. Herron


At 06:45 PM 4/14/2012, you wrote:
In openoffice, if I saved a document, when I next opened it, the 
cursor was automatically positioned where it was when I left off. 
This doesn't seem to be happening in libreoffice, as the cursor is 
always at the top of the document, meaning one has to remember some 
other way where I was up to. I can't find any option to turn this 
invaluable feature back on.


Is this a design decision, an oversight, or am I missing an option 
somewhere?


Cheers,
Ron


In all the years I've been using OO and LO (omg, am I getting 
old...) I never once had the
good fortune of re-opening a document and automatically having the 
cursor (or pointer,
however you prefer to call it) fall onto the location where I had 
left it before closing the doc.


Before I close a document, I mark the spot where the cursor is located
by inserting a bookmark (Alt - Insert - Bookmark and enter a name
of your choice for the bookmark in the dialog box ).

Then, to go back to that spot, after I reopen the document I 
right-click in the lower
left corner, where the page count is shown, and the bookmark name 
pops up: a
click on the name itself brings me to the bookmarked position in the 
text.


Hope this helps.
john




-- For unsubscribe instructions e-mail to: 
users+h...@global.libreoffice.org
Problems? 
http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/

Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot 
be deleted








--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] LOo 3.5.1.2 upgrade in Ubuntu Natty does not 'see' old templates

2012-04-10 Thread John D. Herron
My new LOo 3.5.1.2 (Build ID: 350m1(Build:102) auto-upgraded under 
Ubuntu Natty (via Update Manager) from the earlier 3.4.5 version.


The suite works well overall, but I do miss my old (custom) templates 
which the new version's template manager does not see.

(I also miss the Recent Documents list, but that's another story).

In the old version the templates were (and still appear to be) stored in 
~/.libreoffice/3/user/template, whereas

in the new version I see them in ~/.config/libreoffice/3/user/template.

Tools/Options/Paths shows TWO Template paths:
one is /usr/lib/libreoffice/program/../share/template/common (which I 
cannot find on my machine and have therefore hidden), whereas

the other is  ~/.config/libreoffice/3/user/template.

If I want to work on templates via File/Templates/Edit, LOo offers to 
Open from the selection of templates I have in the new 
~/.config/libreoffice/3/user/template path.
But if I want to Organize, all I get is a message box titled 
LibreOffice 3.5 stating 'templates already exists'.
When I close that, I see the Template Management dialog with the 
currently open docs in the Document pane but an empty Templates pane.


This does not feel OK. Any advice on how I might set things straight?
TIA

john

--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] LO Writer - Strange behavior of paragraph styles

2012-03-10 Thread John D. Herron

Thank you, Miroslaw, for your explanation.

I had not encountered the cascade behavior in this fashion in OOo; 
there, I had always
used Default as the primary style; based on that I had then configured 
all other

styles without any quirks at all.

It is only after I started working with LO Writer that I met up with the 
'strange' response
of paragraphs to the Default style. Your explanation cleared things up 
and now, with

Text Body as the basic style, the problems have seemingly disappeared.

At this point, my only question is: what caused the designers of the 
Writer code

to change the modus operandi?

Thanks again for your clarification.

john
__


On 02/02/2012 at 05:23, John D. Herron paradox.her...@bluewin.ch wrote:

As an aside: can anyone tell me what difference there is between
'Default' and 'Text body'?


On 02/02/2012 01:54 PM, Mirosław Zalewski wrote


As Cor pointed out (in rather harsh way, if you ask me), probably you did not
read documentation carefully enough.

Styles are hierarchical (in web-world it's called cascade). You may open new
document in Writer, press F11 and set Hierarchical from drop-down list at
the bottom of new window. You will see that all styles in entire document are
child of Default style. In other words, changes made in Default style will
be present in all other styles. Changes in that style should be keep to
minimum - ideally, you should change only font family and size there. You
should *not* apply Default style directly to any paragraph.

For your main text you should use Text body style.



--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted


[libreoffice-users] LO Writer - Strange behavior of paragraph styles

2012-02-01 Thread John D. Herron

Hi, everyone.

Running LO 3.4.3 OOO340m1 (Build:302) on Ubuntu 11.04 (Linux 
2.6.38-generic-pae) w/ Gnome 2.32.1.


Find myself having to cope with some very strange behavior of paragraph 
styles, not previously encountered in any version of OOo.


I defined my 'Default' style as follows: font Ubuntu 12 regular, no 
indents, single spacing, 0.00 before and after, justified.


As I begin a new document and type a one-line paragraph, then press 
Return to start a new paragraph, all is OK.
If I press Return once more (adding an empty line), the previous 
paragraph gets indented without any prompting!
When I go back to the previous paragraph with ArrowUp, the style 
changes - without any prompting! - to Text Body...


If I go back to the beginning of any Default or Text Body paragraph and 
press Return twice, the paragraph is transformed into text that is both 
bold and increased in size...


All of this, though, merely scratches the surface of my paragraph-style 
misadventures in LO.


It's enough to drive me insane, to the point where I'm seriously 
considering returning to one of the recent versions of OpenOffice.


FWIW i DID carefully read the manual on styles and templates. Like I 
said: no problems in OOo, a disaster in LO.
As an aside: can anyone tell me what difference there is between 
'Default' and 'Text body'?


Can anyone offer any suggestions on how to correct / troubleshoot this?

Thanks in advance.
john


--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] Re: Illogical installer!

2012-01-18 Thread John D. Herron


On 01/18/2012 02:49 PM, Andreas Säger wrote:

Am 18.01.2012 13:22, Gordon Burgess-Parker wrote:

Can anyone tell me the logic in this?
If I download the English UK version, if I select Custom install, then
ALL the language packs are disabled apart from English, yet all the
dictionaries are ENABLED and I have to go through however many
dictionaries there are and disable them one by one (unless anyone can
tell me a better way!).
Surely logic says that if all the language packs are disabled by default
other than the one for the relevant download, then all the dictionaries
should be as well?



There is no need to enable or disable anything. You can write (and 
spell check) English text with Russian figures in a Chinese GUI.
GUI language, numeric default locale and default text language are 
completely independent from each other. Each snippet of text, each 
table cell, field, input box and what else can be used in its own 
language context.



Andreas, I think what Gordon was trying to find out runs just opposite 
to what you elaborate on.
He seems to not understand why downloading ALL Dictionaries cannot be 
disabled at install time (as he apparently has no use for any) when he 
choses a specific language (in his case the English UK) version of the 
suite.



--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] The title bars have disappeared; how can I get them back?

2012-01-14 Thread John D. Herron

Hi, all. Running Ubuntu 11.04 (classic) on a preloaded Linux box.

Sometime in the afternoon, all of the window title bars (except on 
Google Chrome) have suddenly disappeared!


As far as I know my box is not using compiz. Any suggestions on how I 
might be able to get them back?


Thanks in advance.
john


--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] .docx trouble (solved??)

2011-11-28 Thread John D. Herron



On 11/27/2011 09:32 PM, Jay Lozier wrote:

John

On 11/27/2011 01:15 PM, John D. Herron wrote:

hi. i'm working on a standalone ubuntu 11.04 box (no Windows on it!)
with LibreOffice 3.3.4 OOO330m19 (Build:401)...
-- snip --

john

I try to double save important files with my working copy being ODF 
and when necessary in MSO.


You can try adding this ppa for Libroffice and upgrade to 3.4.4: note 
I have listed the commands needed to install the ppa using Terminal. 
This is simpler IMHO than having side-by-side installs of two LO 
versions.


sudo add-apt-repository ppa:libroffice/ppa

sudo apt-get update

I would run Update Manager or Synaptic and either should find the new 
versions.


My experience is that 3.3.X is not as good as 3.4.X in handling msox 
formats. When I had a similar problem with 3.3.2/3 I found that Word 
2010 had no problem with opening the file nor did anyone who received 
it. No one commented on any file corruption.


Looking at your image, it looks like all the information is there so 
your customer should not even noticed that you had a problem.




Hello, Jay.

i followed your instructions and upgraded LibreOffice to v. 3.4.3
OOO340m1 (Build:302), first adding the ppa:libreoffice/ppa repository 
and then

having synaptic do the upgrade.

The operation seems to have been successful on the whole; but attempting
to open the .docx document in the new writer version still fails miserably.

I can only hope that the client will be able to open it cleanly in 
whatever version of

Word he is using.

Thanks for the help and reassurance. Guess i'll just need to keep my 
eyes doubly focused
when I open Word files from clients or other people, and ask them to 
re-save any .docx files as

.doc before mailing them to me.

jdh



In the meantime I've verified that my client was indeed able to properly 
open the .docx file i had sent to him. Just to have peace of mind for my 
own records, I've had him save the document as .doc (Win 97/2000) and 
send it back to me.


The problem here (with both LO 3.3.4. and LO 3.4.3) seems to be that 
while they *can* indeed read .docx files, they *cannot* re-save them in 
that format *in a manner displayable in writer;* however, the re-save in 
LO will apparently preserve the structure and contents for any Winword 
recipients of the .docx files processed in LO. Fortunately, LO is not 
capable, within itself, to create original MSO .docx documents...


I think the best way to deal with incoming MSO .docx files is to 
immediately re-save them as .odt or .doc files, as you suggested, and 
only then do any necessary editing.


Again, thanks for the help and reassurance.

jdh


--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] .docx trouble

2011-11-27 Thread John D. Herron

hi. i'm working on a standalone ubuntu 11.04 box (no Windows on it!)
with LibreOffice 3.3.4 OOO330m19 (Build:401).

Last week I sent a client a .doc file, which he reviewed (Edit - Show) and
then returned to me for further comments. I in turn added comments and
corrections to it in the same fashion, even changing some of his own 
entries.
When I had finished I saved it outright (i.e. not Save as) and 
closed it so I

could e-mail it. On second thought I realized I needed to add one more
comment, but when I reopened the document i discovered that it had
been saved as *.docx*... (that is how he had sent his original to me, as I
realized too late...).

Attempts to reopen the document in libreoffice proved futile: all i got 
to see
was a fully readable first page (where no corrections had been made), 
followed

by some numbering and bullets with no visible text.
I then tried to re-save it as .odt or standard .doc, but no joy.

As I unzipped the document and looked into it I saw that distinct parts 
of the

document had been stored in separate 'compartments'. In a subsection named
'document.xml' i found the full text (complete with corrections and 
comments)

listed in something akin to 'web-script' format.

I did return the reviewed document to my client as is (since he is working
with a recent version of MSWord); he will need to use it immediately when
he receives it. My questions are
- is he likely to be able to properly open and view the document as i 
returned

  it to him? and if not
- is there some way for me to recover or repair it?

On _imagebin.org_ I have (as 'johnherron') posted the 'segments' of the
document (11082_bb_Memo_inRe_... .docx) as shown by
Nautilus.

I'm very new at this, so i'd appreciate whatever help you may be able to 
provide

in plain, easy-to-understand language.

Thanks even now.
john


**


--
__
john d. herron, paradox media ltd.
riva caccia 13, ch-6900 lugano
tel: 41 (91) 9800111


--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] .docx trouble

2011-11-27 Thread John D. Herron



On 11/27/2011 09:32 PM, Jay Lozier wrote:

John

On 11/27/2011 01:15 PM, John D. Herron wrote:

hi. i'm working on a standalone ubuntu 11.04 box (no Windows on it!)
with LibreOffice 3.3.4 OOO330m19 (Build:401).

Last week I sent a client a .doc file, which he reviewed (Edit - 
Show) and

then returned to me for further comments. I in turn added comments and
corrections to it in the same fashion, even changing some of his own 
entries.
When I had finished I saved it outright (i.e. not Save as) and 
closed it so I

could e-mail it. On second thought I realized I needed to add one more
comment, but when I reopened the document i discovered that it had
been saved as *.docx*... (that is how he had sent his original to me, 
as I

realized too late...).

Attempts to reopen the document in libreoffice proved futile: all i 
got to see
was a fully readable first page (where no corrections had been made), 
followed

by some numbering and bullets with no visible text.
I then tried to re-save it as .odt or standard .doc, but no joy.

As I unzipped the document and looked into it I saw that distinct 
parts of the
document had been stored in separate 'compartments'. In a subsection 
named
'document.xml' i found the full text (complete with corrections and 
comments)

listed in something akin to 'web-script' format.

I did return the reviewed document to my client as is (since he is 
working
with a recent version of MSWord); he will need to use it immediately 
when

he receives it. My questions are
- is he likely to be able to properly open and view the document as i 
returned

  it to him? and if not
- is there some way for me to recover or repair it?

On _imagebin.org_ I have (as 'johnherron') posted the 'segments' of the
document (11082_bb_Memo_inRe_... .docx) as shown by
Nautilus.

I'm very new at this, so i'd appreciate whatever help you may be able 
to provide

in plain, easy-to-understand language.

Thanks even now.
john


**


I try to double save important files with my working copy being ODF 
and when necessary in MSO.


You can try adding this ppa for Libroffice and upgrade to 3.4.4: note 
I have listed the commands needed to install the ppa using Terminal. 
This is simpler IMHO than having side-by-side installs of two LO 
versions.


sudo add-apt-repository ppa:libroffice/ppa

sudo apt-get update

I would run Update Manager or Synaptic and either should find the new 
versions.


My experience is that 3.3.X is not as good as 3.4.X in handling msox 
formats. When I had a similar problem with 3.3.2/3 I found that Word 
2010 had no problem with opening the file nor did anyone who received 
it. No one commented on any file corruption.


Looking at your image, it looks like all the information is there so 
your customer should not even noticed that you had a problem.




Hello, Jay.

i followed your instructions and upgraded LibreOffice to v. LibreOffice 
3.4.3
OOO340m1 (Build:302), first adding the ppa:libreoffice/ppa repository 
and then

having synaptic do the upgrade.

The operation seems to have been successful on the whole; but attempting
to open the .docx document in the new writer version still fails miserably.

I can only hope that the client will be able to open it cleanly in 
whatever version of

Word he is using.

Thanks for the help and reassurance. Guess i'll just need to keep my 
eyes doubly focused
when I open Word files from clients or other people, and ask them to 
re-save any .docx files as

.doc before mailing them to me.

jdh

--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] LibreOffice help file: 'Next' key?

2011-11-10 Thread John D. Herron
In the LO help file I find, among the keyboard shortcuts, references to 
a 'Next' and 'Prior' key, respectively.
Having no such keys on my standard (Logitech) keyboard, I'm puzzled as 
to what actual keys they

are meant to reference.

Do I have a faulty or wrong keyboard, or am I just plain stupid?

Running LO in Ubuntu 11.04.

Help, please?

jdh

--
__
john d. herron, paradox media ltd.
riva caccia 13, ch-6900 lugano
tel: 41 (91) 9800111


--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] Re: LO 3.4.3 Writer cannot handle RTF document

2011-11-08 Thread John D. Herron

A client asked me the other day to send him an .rtf version of a file I had
sent to him in Word 97/2000/XP format a few months earlier.

I opened the file in LO 3.3.4 [OOO330m19 (Build:401)] and re-saved it in
.rtf format. I then opened the new .rtf file in LO: flawless.
My client, too, confirmed that the .rtf file was perfect for his purposes.
It felt good being able to help him with this.

OS is Ubuntu 11.04, preinstalled on a new local-brand (Steg) box.

jdh



On 11/07/2011 03:28 PM, Pedro wrote:

prino wrote:

As an aside, the fact that it's very easy to turn plain text into RTF
using about any editor and/or simple scripts is a big advantage that RTF
has over ODF, try making an ODT file on IBM's z/OS...


It is easy to turn any document into RTF but you never know what will show
up in another editor.

In any case let me make it clear that ODF has the same problem.

I'm not saying ODF is superior to RTF (except that RTF is mostly/completely
abandoned and ODF is under development). I meant that if you are going to
use LibreOffice that is the best file format to use because it is what the
program uses internally. All other formats are converted to ODF at opening
and back at saving.

--
View this message in context: 
http://nabble.documentfoundation.org/LO-3-4-3-Writer-cannot-handle-RTF-document-tp3485447p3487090.html
Sent from the Users mailing list archive at Nabble.com.



--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] New Custom Style in Writer - odd behavior

2011-08-10 Thread john d. herron


Aug 07, 2011; 8:42pm - john herron wrote:

I created a style (Default_2, next style also Default_2) which I based 
on the standard Default style.
The only difference between the two is that Default has single line 
spacing whereas for Default_2 calls for double spacing.
When I assign Default_2 to a paragraph from Styles and Formatting, it 
properly displays double-spaced.
But when I then finish editing the paragraph with Return (or Enter, if 
you prefer that), the paragraph reverts to single space.
The same also occurs with an indenting style (Def_2_Ind_1) derived from 
Default_2.


Am I doing something wrong or could this be a bug?

TIA
john



Aug 08 Simon Cropper (The foss Workflow Guides) Aug 08, 2011; 12:49am 
replied:



Try not using the underscore. So rename Default_2 to Default2 or
DefaultDouble and see what happens.

--
Cheers Simon

Simon Cropper
Website Administrator
http://www.fossworkflowguides.com

-

Hello, Simon Cropper.
I tried following your suggestion to not use _ as a style name 
separator (i.e. renamed the style Default2) but to no avail.
Closing the double-spaced Default2 paragraph with Return/Enter still 
causes the paragraph to revert to single-spaced.


Why do I suspect that this behavior might be a bug?
Because in OOo's 3.2 Writer, which I also use, the problem does not occur.

What now?

john

--
For unsubscribe instructions e-mail to: users+h...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted