Re: small problem launching openoffice from desktop

2014-07-30 Thread NoOp
On 07/23/2014 03:20 PM, JD wrote:
> On Wed, Jul 23, 2014 at 4:08 PM, Andrea Pescetti 
> wrote:
>>
>> On 23/07/2014 JD wrote:
>>>
>>> in /usr/bin, I have:
>>> $ ls -l /usr/bin/*office*
>>> lrwxrwxrwx 1 root jd  32 Jul 23 12:18 /usr/bin/ooffice ->
>>> /opt/openoffice4/program/soffice
>>>
>>
>> This is a symlink you put there, right?
> 
> YES.
> Reason is that libreoffice has already stolen soffice in /usr/bin,
> and believe it or not, it has also stolen ooffice. Both of which link
> to libreoffice. So I broke the link /usr/bin/oofice -> libreoffice
> and made it link to
> /opt/openoffice4/program/soffice.

Actually it is only the distro LO install that creates soffice links in
the /usr/bin.

distro maintainers leave/use:
$ ls -l /usr/bin/*office*
lrwxrwxrwx 1 root root 34 Jun 18 06:02 /usr/bin/libreoffice ->
../lib/libreoffice/program/soffice
-rwxr-xr-x 1 root root 53 Jun 18 04:25 /usr/bin/loffice
lrwxrwxrwx 1 root root 34 Jun 18 06:02 /usr/bin/soffice ->
../lib/libreoffice/program/soffice

The direct install of LO leaves:

$ ls -l /usr/bin/*office*
lrwxrwxrwx 1 root root 35 Jul 25 14:22 /usr/bin/libreoffice4.3 ->
/opt/libreoffice4.3/program/soffice

I recommend just using the desktop file provided:


#!/usr/bin/env xdg-open

[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Icon[en_US]=/opt/openoffice4/program/logo.png
Name[en_US]=OpenOffice
Comment[en_US]=ApacheOpenOffice
Exec=/opt/openoffice4/program/soffice
Name=OpenOffice
Comment=ApacheOpenOffice
Icon=/opt/openoffice4/program/logo


and file a bug report against:
/opt/openoffice4/program/soffice
line 119:
"$sd_prog/$sd_binary" "$@" &


-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: Languages within a document

2014-07-30 Thread Brian Barker

At 21:38 30/07/2014 -0500, Dale Erwin wrote:
I have just recently installed AOO 4.1.0 in English plus language 
packs for Spanish and Italian under Win 7 Home Premium.


The language packs provide "menus, dialogs, error messages" and 
perhaps help text in alternative languages; they are not about 
spelling dictionaries.


In Options, I selected English USA as my default language. Earlier 
today, while editing a document in Writer, I selected Tools -> 
Languages -> Selection and the only language offered was English. 
Later today, while editing a different document in English, I 
entered some text in Italian. Then I highlighted it and went to 
Tools -> Languages -> Selection and found both English and Italian 
offered so I selected Italian. Obviously it recognized the Italian text.


The languages shown in those menus do appear to rely on some 
automatic language detection.


A while later, I entered some Spanish text, highlighted it and went 
to Tools -> Languages -> Selection and the only languages offered 
were English and Italian, with Italian checked even though I had not 
selected it.


You will have selected Italian - somehow. Presumably the Spanish you 
entered was within the text you already selected as Italian (above) 
and would have inherited the character property you set.


Still later I entered some more Spanish text, highlighted it, went 
to Tools -> Languages -> Selection and it now offered me English, 
Italian and Catalan.


It really doesn't matter what languages happen to be offered here, as 
you can easily select More... at the bottom of the list, whereupon 
you can choose from the full set of languages. Spelling checking will 
be available in only those languages for which you have spelling 
dictionaries installed.


This method of selecting language sets the local character property. 
Remember that you may prefer to do this through character styles or 
paragraph styles.


I trust this helps.

Brian Barker


-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: small problem launching openoffice from desktop

2014-07-30 Thread NoOp
On 07/30/2014 06:12 PM, JD wrote:
> On Wed, Jul 30, 2014 at 6:12 PM, NoOp  wrote:
>> On 07/23/2014 12:17 PM, JD wrote:
>>> created the desktop launcher:
>>> The launcher name is
>>> Open Office
>>> The command is:
>>> /usr/bin/ooffice
>>
>> Mine (from openoffice4.0-debian-menus_4.1-9764_all.deb:
>> 
>> #!/usr/bin/env xdg-open
>>
>> [Desktop Entry]
>> Version=1.0
>> Type=Application
>> Terminal=false
>> Icon[en_US]=/opt/openoffice4/program/logo.png
>> Name[en_US]=OpenOffice
>> Comment[en_US]=ApacheOpenOffice
>> Exec=/opt/openoffice4/program/soffice
>> Name=OpenOffice
>> Comment=ApacheOpenOffice
>> Icon=/opt/openoffice4/program/logo
>> 
>>
>>>
>>> in /usr/bin, I have:
>>> $ ls -l /usr/bin/*office*
>>> lrwxrwxrwx 1 root jd  32 Jul 23 12:18 /usr/bin/ooffice ->
>>> /opt/openoffice4/program/soffice
>>
>>>
>>> $ ls -l /opt/openoffice4/program/soffice
>>> -r-xr-xr-x 1 root root 3720 Apr 22 09:40 /opt/openoffice4/program/soffice
>>>
>>> But the launcher fails to launch open office.
>>>
>>> I see the following error in /home/jd/.xsession-errors:
>>>
>>> /usr/bin/ooffice: line 119: /opt/openoffice4/program/ooffice.bin: No such
>>> file or directory
>>
>> What do you have at line 119 in /usr/bin/ooffice?
>>
>> Unless you created ooffice.bin, none will exist. Line 119 in
>> /opt/openoffice4/program/soffice is
>> "$sd_prog/$sd_binary" "$@" &
>>
>>
> 
> Yes I know that. Issue is that the use should not have to.
> As I had already responded to another list member,
> for a script to execute $@ instead of what itself (the script)
> fallaciously calls itself (soffice), is totally misleading.
> It should execute soffice.bin instead of $@.bin. Otherwise
> it should be renamed something different.
> Just my opinion :)
> 

Ah, now I see what you mean. I just recreated:
root@g:/usr/bin# ln -s /opt/openoffice4/program/soffice /usr/bin/ooffice
root@g:/usr/bin# ls -al *ooffice
lrwxrwxrwx 1 root root 32 Jul 30 19:59 ooffice ->
/opt/openoffice4/program/soffice
root@g:/usr/bin# /usr/bin/ooffice
/usr/bin/ooffice: 119: /usr/bin/ooffice:
/opt/openoffice4/program/ooffice.bin: not found

OT: Regarding other responses - unfortunately this list seems to have
broken threads all over the place. Not sure why - maybe gmane isn't
threading properly. I reply to one thread & then find that others have
reponded in some other thread.


-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Languages within a document

2014-07-30 Thread Dale Erwin
I have just recently installed AOO 4.1.0 in English plus language packs 
for Spanish and Italian under Win 7 Home Premium.  In Options, I 
selected English USA as my default language.


Earlier today, while editing a document in Writer, I selected Tools -> 
Languages -> Selection and the only language offered was English.  Later 
today, while editing a different document in English, I entered some 
text in Italian.  Then I highlighted it and went to Tools -> Languages 
-> Selection and found both English and Italian offered so I selected 
Italian.  Obviously it recognized the Italian text.  A while later, I 
entered some Spanish text, highlighted it and went to Tools -> Languages 
-> Selection and the only languages offered were English and Italian, 
with Italian checked even though I had not selected it.  Still later I 
entered some more Spanish text, highlighted it, went to Tools -> 
Languages -> Selection and it now offered me English, Italian and Catalan.


What gives?  Anyone have any idea?

Dale Erwin
I am subscribed to this list

-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: small problem launching openoffice from desktop

2014-07-30 Thread JD
On Wed, Jul 30, 2014 at 6:12 PM, NoOp  wrote:
> On 07/23/2014 12:17 PM, JD wrote:
>> created the desktop launcher:
>> The launcher name is
>> Open Office
>> The command is:
>> /usr/bin/ooffice
>
> Mine (from openoffice4.0-debian-menus_4.1-9764_all.deb:
> 
> #!/usr/bin/env xdg-open
>
> [Desktop Entry]
> Version=1.0
> Type=Application
> Terminal=false
> Icon[en_US]=/opt/openoffice4/program/logo.png
> Name[en_US]=OpenOffice
> Comment[en_US]=ApacheOpenOffice
> Exec=/opt/openoffice4/program/soffice
> Name=OpenOffice
> Comment=ApacheOpenOffice
> Icon=/opt/openoffice4/program/logo
> 
>
>>
>> in /usr/bin, I have:
>> $ ls -l /usr/bin/*office*
>> lrwxrwxrwx 1 root jd  32 Jul 23 12:18 /usr/bin/ooffice ->
>> /opt/openoffice4/program/soffice
>
>>
>> $ ls -l /opt/openoffice4/program/soffice
>> -r-xr-xr-x 1 root root 3720 Apr 22 09:40 /opt/openoffice4/program/soffice
>>
>> But the launcher fails to launch open office.
>>
>> I see the following error in /home/jd/.xsession-errors:
>>
>> /usr/bin/ooffice: line 119: /opt/openoffice4/program/ooffice.bin: No such
>> file or directory
>
> What do you have at line 119 in /usr/bin/ooffice?
>
> Unless you created ooffice.bin, none will exist. Line 119 in
> /opt/openoffice4/program/soffice is
> "$sd_prog/$sd_binary" "$@" &
>
>

Yes I know that. Issue is that the use should not have to.
As I had already responded to another list member,
for a script to execute $@ instead of what itself (the script)
fallaciously calls itself (soffice), is totally misleading.
It should execute soffice.bin instead of $@.bin. Otherwise
it should be renamed something different.
Just my opinion :)

-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: small problem launching openoffice from desktop

2014-07-30 Thread NoOp
On 07/23/2014 12:17 PM, JD wrote:
> created the desktop launcher:
> The launcher name is
> Open Office
> The command is:
> /usr/bin/ooffice

Mine (from openoffice4.0-debian-menus_4.1-9764_all.deb:

#!/usr/bin/env xdg-open

[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Icon[en_US]=/opt/openoffice4/program/logo.png
Name[en_US]=OpenOffice
Comment[en_US]=ApacheOpenOffice
Exec=/opt/openoffice4/program/soffice
Name=OpenOffice
Comment=ApacheOpenOffice
Icon=/opt/openoffice4/program/logo


> 
> in /usr/bin, I have:
> $ ls -l /usr/bin/*office*
> lrwxrwxrwx 1 root jd  32 Jul 23 12:18 /usr/bin/ooffice ->
> /opt/openoffice4/program/soffice

> 
> $ ls -l /opt/openoffice4/program/soffice
> -r-xr-xr-x 1 root root 3720 Apr 22 09:40 /opt/openoffice4/program/soffice
> 
> But the launcher fails to launch open office.
> 
> I see the following error in /home/jd/.xsession-errors:
> 
> /usr/bin/ooffice: line 119: /opt/openoffice4/program/ooffice.bin: No such
> file or directory

What do you have at line 119 in /usr/bin/ooffice?

Unless you created ooffice.bin, none will exist. Line 119 in
/opt/openoffice4/program/soffice is
"$sd_prog/$sd_binary" "$@" &

> /usr/bin/ooffice: line 119: /opt/openoffice4/program/ooffice.bin: No such
> file or directory
> /usr/bin/ooffice: line 119: /opt/openoffice4/program/ooffice.bin: No such
> file or directory
> 
> However, if I execute /opt/openoffice4/program/soffice from the terminal,
> openoffice runs.
> 
> So, soffice script takes arg0 and blithely assumes that .bin exists,
> and tries
> to exec it.
> 
> Why should a script assume that? It is at least dangerous, especially if
> executed by a superuser!!
> 




-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



download

2014-07-30 Thread pratum
must i open or safe the French and englisch update and where?

muss ich die updates öffnen oder speichern und wo?






Gesendet von Windows Mail

Re: Inserting jpeg into .odt document

2014-07-30 Thread Jim McLaughlin
Thak you, that resolved the issue.


On Wed, Jul 30, 2014 at 8:56 AM, Brian Barker 
wrote:

> At 06:41 30/07/2014 -0700, Jim McLaughlin wrote:
>
>> I have created a document, saved with the .odt extension. I want to
>> insert a .jpeg file into the document, between paragraphs in the text
>> within the document. I am having difficulty getting the .jpeg file to
>> appear and print within the document.
>>
>
> o Go to Insert | Picture > | From File... .
> o Browse to and insert the picture.
> o Drag a corner of the picture to adjust its size. Hold down the Shift key
> when releasing the mouse button to maintain the aspect ratio of the picture.
> o Drag the picture into position.
> o Right-click the picture and go to Anchor > and Wrap > separately.
> Experiment with settings to suit.
>
>  I have looked in the Pictures Toolbar list, found the "Insert File"
>> command button ...
>>
>
> That's simply an alternative route to the same place as Insert | Picture >
> | From File... above.
>
>  ... but cannot get that command button to appear in the standard tool bar
>> by copying  into the standard tool bar, ...
>>
>
> I don't know why you need to do this. Buttons are where they are. But if
> you really need to:
> o Go to Tools | Customise... | Toolbars.
> o For Toolbar, select Standard.
> o Click Add... .
> o Under Category, select Insert.
> o Under Commands, select From File.
> o Click Add and Close.
> o Use the arrow buttons to move the button around in the Standard toolbar
> as preferred.
> o Click OK.
>
>  ... nor can I get the Pictures toolbar to open at all.
>>
>
> Go to View | Toolbars > | Picture.
>
> I trust this helps.
>
> Brian Barker
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: users-h...@openoffice.apache.org
>
>


Re: Inserting jpeg into .odt document

2014-07-30 Thread Hagar Delest

You can also try to change the anchoring.
As character is the most robust but allows less layouts with the text.

Hagar


Le 30/07/2014 15:41, Jim McLaughlin a écrit :

I have created a document, saved with the .odt extension.

I want to insert a .jpeg file int the document, between paragraphs in the
teext within the document.

I am having difficulty getting the .jpeg file to appaer and print within
the document.

Would some kind soul here walk me through the steps I need follow to
accomplish this task.

I have looked in the Pictures Toolbar list, found the "Insert File" command
button but cannot get that command button to appear in the standard tool
bar by copying  into the standard tool bar, nor can I get the Pictures
toolbar to open at all.

I am seriously off the track here and would appreciate some guidance.

Thank you.



-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: Inserting jpeg into .odt document

2014-07-30 Thread Brian Barker

At 06:41 30/07/2014 -0700, Jim McLaughlin wrote:
I have created a document, saved with the .odt extension. I want to 
insert a .jpeg file into the document, between paragraphs in the 
text within the document. I am having difficulty getting the .jpeg 
file to appear and print within the document.


o Go to Insert | Picture > | From File... .
o Browse to and insert the picture.
o Drag a corner of the picture to adjust its size. Hold down the 
Shift key when releasing the mouse button to maintain the aspect 
ratio of the picture.

o Drag the picture into position.
o Right-click the picture and go to Anchor > and Wrap > separately. 
Experiment with settings to suit.


I have looked in the Pictures Toolbar list, found the "Insert File" 
command button ...


That's simply an alternative route to the same place as Insert | 
Picture > | From File... above.


... but cannot get that command button to appear in the standard 
tool bar by copying  into the standard tool bar, ...


I don't know why you need to do this. Buttons are where they are. But 
if you really need to:

o Go to Tools | Customise... | Toolbars.
o For Toolbar, select Standard.
o Click Add... .
o Under Category, select Insert.
o Under Commands, select From File.
o Click Add and Close.
o Use the arrow buttons to move the button around in the Standard 
toolbar as preferred.

o Click OK.


... nor can I get the Pictures toolbar to open at all.


Go to View | Toolbars > | Picture.

I trust this helps.

Brian Barker


-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: Apache OpenOffice Has Been Reviewed at ListOfFreeware

2014-07-30 Thread Brian Barker

At 10:14 30/07/2014 -0400, Doug McGarrett wrote:

I'd like to read the review, but nothing in this post leads me to it.


I think those four short lines you saw - full of error - *are* the review!

Brian Barker 



-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: Apache OpenOffice Has Been Reviewed at ListOfFreeware

2014-07-30 Thread TN Patriot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, 30 Jul 2014 10:14:19 -0400
Doug  wrote:

> 
> On 07/30/2014 02:20 AM, Ubaid wrote:
> > Hello,
> >
> > I am Ubaid from www.listoffreeware.com 
> > . This is a popular tech blog that 
> > lists best free software out there.
> >
> > I am sending this mail to let you know that we recently reviewed 
> > Apache OpenOffice on our website here: 
> > http://listoffreeware.com/list-of-best-free-office-suites/
> >
> > Congrats!
> >
> > If you want to flaunt this review on your website, feel free to use 
> > the badge that I have attached with this email, or you can also use 
> > the code I have added below:
> >
> > http://listoffreeware.com/list-of-best-free-office-suites/"; 
> > title="10 Best Free Office Suites"> > src="_http://listoffreeware.com/wp-content/uploads/Reviewed_At_ListOfFreeware.png
> >  
> > _"/>
> >
> > Feel free to get back to me with any questions.
> >
> > Have Fun,
> >
> > Ubaid
> > Collaboration Manager
> >
> > w: http://www.listoffreeware.com/
> >
> >
> I'd like to read the review, but nothing in this post leads me to it. 
> It's absolutely worthless!
> --doug

Do you wear glasses? Maybe you forgot to put them on.

As for the site (and the review(s))...it's strictly Windows-centric and the
reviews and articles are written poorly.

- -- 
http://www.lawcollective.org/  Learn your rights easily through cartoons!

http://www.roadblock.org/rights/  Know your rights about and at roadblocks!

http://fija.org/  Learn about Jury Nullification! Take back your rights from the
over-reaching: police, justice system and government!
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlPZArcACgkQVKoUne6H+sT7hQCggpl6xJqSi+uIj2uBbKj7Vnck
b1cAn1ErNfCuj7HZQMXkURWws65lmGsK
=/FFp
-END PGP SIGNATURE-


Re: Annotations Not Stored after a Save

2014-07-30 Thread Ariel Constenla-Haile
On Mon, Jul 28, 2014 at 01:51:13PM +0530, Prannoy Pilligundla wrote:
> > Looking at the code in
> >
> > starmath/source/mathmlimport.cxx
> > class SmXMLAnnotationContext_Impl
> >
> > http://svn.apache.org/viewvc/openoffice/trunk/main/starmath/source/mathmlimport.cxx?revision=1591062&view=markup#l1306
> >
> > only the annotation with encoding="StarMath 5.0" is imported.
> >
> 
> I tried changing the encoding to Starmath 5.0 as you said but its still not
> retained after saving the ODT file

That will never work; if you look at the code, OpenOffice expects valid
"StarMath" (OpenOffice Math) syntax inside that annotation; that's why
I said that you could add the latex formula as a OO Math comment; but,
again, this is useless, because the user will see that comment, and can
remove it.
 
> >
> > You could add the latex formula as a comment inside that annotation (in
> > OpenOffice Math comments start with %%), but if the user deletes the
> > comment, you won't be able to import back the latex formula. Besides,
> > there isn't much sense in storing the original latex formula when the
> > document - and the formula - can be modified by the user. It seems you
> > will have to implement a MathML to latex converter.
> >
> 
>  I don't want to show the latex formula to the user, I am bringing it as
> metadata that can be used for ODT to LyX conversion. But the point you made
> that the formula can be modified is true,its a limitation in what I am
> trying to do, this can only be solved by implementing a MathML to Latex
> converter as you said


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina


signature.asc
Description: Digital signature


Re: Apache OpenOffice Has Been Reviewed at ListOfFreeware

2014-07-30 Thread Doug


On 07/30/2014 02:20 AM, Ubaid wrote:

Hello,

I am Ubaid from www.listoffreeware.com 
. This is a popular tech blog that 
lists best free software out there.


I am sending this mail to let you know that we recently reviewed 
Apache OpenOffice on our website here: 
http://listoffreeware.com/list-of-best-free-office-suites/


Congrats!

If you want to flaunt this review on your website, feel free to use 
the badge that I have attached with this email, or you can also use 
the code I have added below:


http://listoffreeware.com/list-of-best-free-office-suites/"; 
title="10 Best Free Office Suites">src="_http://listoffreeware.com/wp-content/uploads/Reviewed_At_ListOfFreeware.png 
_"/>


Feel free to get back to me with any questions.

Have Fun,

Ubaid
Collaboration Manager

w: http://www.listoffreeware.com/


I'd like to read the review, but nothing in this post leads me to it. 
It's absolutely worthless!

--doug


Inserting jpeg into .odt document

2014-07-30 Thread Jim McLaughlin
I have created a document, saved with the .odt extension.

I want to insert a .jpeg file int the document, between paragraphs in the
teext within the document.

I am having difficulty getting the .jpeg file to appaer and print within
the document.

Would some kind soul here walk me through the steps I need follow to
accomplish this task.

I have looked in the Pictures Toolbar list, found the "Insert File" command
button but cannot get that command button to appear in the standard tool
bar by copying  into the standard tool bar, nor can I get the Pictures
toolbar to open at all.

I am seriously off the track here and would appreciate some guidance.

Thank you.


Re: Problem with Auto Spell Check

2014-07-30 Thread Rory O'Farrell
On Wed, 30 Jul 2014 02:45:41 -0700
Joan Ricks  wrote:

> Hi,
> I am writing a book and I noticed that after 170 pages, my auto spell check 
> doesn't work anymore. Is this a problem with the software? I went to your 
> forum, but no one could really give me an answer that I've already tried. I 
> even updated the software to the latest Open Office and still the auto spell 
> is not working. 
> 
> 
> I love this writing format better than Windows Word so please, what is the 
> solution here?
> 
>  
> Joan R.

The usual solution, which cures most spellcheck problems, is to delete or 
rename the User Profile, Details are given in
https://forum.openoffice.org/en/forum/viewtopic.php?f=74&t=12426

If that doesn't work there is a detailed spell check tutorial, but I suspect 
that the User Profile will cure your problem.



-- 
Rory O'Farrell 

-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Problem with Auto Spell Check

2014-07-30 Thread Joan Ricks
Hi,
I am writing a book and I noticed that after 170 pages, my auto spell check 
doesn't work anymore. Is this a problem with the software? I went to your 
forum, but no one could really give me an answer that I've already tried. I 
even updated the software to the latest Open Office and still the auto spell is 
not working. 


I love this writing format better than Windows Word so please, what is the 
solution here?

 
Joan R.

RE: Alleen vandaag 70% korting op officepakket

2014-07-30 Thread Maurice Howe
Cute.  Now, they're using AOO's own blog to advertise a way to rip novices off. 
 Maurice

-Original Message-
From: Bert Verschaeve [mailto:bert.verscha...@me.com] 
Sent: Tuesday, July 29, 2014 4:09 PM
To: users@openoffice.apache.org
Subject: Fwd: Alleen vandaag 70% korting op officepakket



> Van: Officepakkek 
> Datum: 29 juli 2014 21:30:39 CEST
> Aan: bert.verscha...@me.com
> Onderwerp: Alleen vandaag 70% korting op officepakket
> 
> 
> 
> Volledige OfficePakket, LGPL gelicenseerd
> Met het Nederlandstalige OfficePakket heb je de beschikking een geweldig 
> uitgebreide verzameling aan tekst-, presentatie-, teken- en rekensoftware. 
> Maak je gebruik van Windows en / of Mac, dan kun je al deze bestanden 
> bewerken. Open kan zelfs op iPhone, iPad of Android.
> 
>  
> 
> Tekstverwerker
> Werkbladen
> 
> Presentaties  
> Formules
> 
> Tekeningen
> Gegevens
>  
> De voordelen op een rijtje
>Volledig Nederlandstalig
>Binnen enkele minuten aan de slag
>Alle Office software in 1 pakket
>Levenslang te gebruiken, zonder beperkingen
> Bestel nu en betaal slechts
> € 159,- € 49,95
> 
> 
> Gelieve Afmelden hier voor toekomstige mailings te worden verwijderd. 
> Brownstone Group 
> 1831 E 71st Street 
> Tulsa, OK 74136
> 


-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: SEE: List administrators (was Re: Continued spell check issues.

2014-07-30 Thread johnny smith

On Wed, 30 Jul 2014 01:30:50 -, Julian Thomas  wrote:


Any chance that the list could be configured to allow attachments?  It would 
save quite a bit of hassle.


actually, it does. at least, some small '.odt' files are allowed. even pictures 
are sometimes. i think, they just should not be 4.11-megabyte 24-bit 1600x900 
bitmaps.

-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: Inserting pictures

2014-07-30 Thread johnny smith

On Wed, 30 Jul 2014 01:03:01 -, Donna Stanley  
wrote:


Hi again,
Still trying to figure out this very mysterious problem and I've been wondering 
about something. Could this be a glitch in the program? Here is what I found 
and can plainly see, both the From File/Graphics, checked.
To me, there is no reason at all this does not work and all I get is what you see here. 
This is beyond frustrating because I've read everything I can find and "talked" 
to one other person (not the best experience I might add) but still, no picture.
What do you think?


do you have 'graphics and objects' enabled under 'tools - options - openoffice 
writer - view - display'? disabling it leads to just what you describe.

-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: cant open file

2014-07-30 Thread johnny smith

On Tue, 29 Jul 2014 22:00:20 -,  wrote:


I had my computer shut down incorrectly, and when i restarted it and tried to open a spreadsheet (which was saved several 
times prior to the crash) it attempted to recover the document, but was unsuccessful.  After the unsuccessful recovery, when 
i first double click the file it opens a window that says "text import" followed by the file name, but with 
"%20" symbols where the spaces in the name should be.  when i click "ok" it gives me an error titled 
"document in use" that says "document file 'daily%20log%207-24-14%20to.ods' is locked for editing by: Unknown 
User  Open document read-only or open a copy of the document for editing.  then gives me three options:  open read-only, 
open copy, cancel.

How can i get my file back?  Can i revert to the last save?  How can i unlock 
it if i never locked it?


the easy way, i think, is to open a copy of the document for editing and save 
it with a different name. also, search the directory where your spreadsheet 
resides for a hidden file with a name like '.~lock.something.ods#'. if such a 
file exists, then it is what is blocking your spreadsheet; delete the lock file 
and the spreadsheet will probably be unlocked.

-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: Inserting pictures

2014-07-30 Thread Rory O'Farrell
On Tue, 29 Jul 2014 18:03:01 -0700
Donna Stanley  wrote:

> Hi again,
> Still trying to figure out this very mysterious problem and I've been 
> wondering about something. Could this be a glitch in the program? Here is 
> what I found and can plainly see, both the From File/Graphics, checked. 
> To me, there is no reason at all this does not work and all I get is what you 
> see here. This is beyond frustrating because I've read everything I can find 
> and "talked" to one other person (not the best experience I might add) but 
> still, no picture. 
> What do you think?
> HELP!!  😧
> Donna

If all you get is "an icon and graphic", you may need to change a setting in
Preferences: OpenOffice /Tools /Options : OpenOffice Writer : View. On the 
Display section of that window, check "Graphics and objects"

As I'm not on a Mac, I cannot be certain that the early section of the above 
path is correct; however, I know it is from /Tools onward.

> 
> 
> 
> 
> 
> 
> > 
> >> I can neither drag and drop or go to Insert in the toolbar because all I 
> >> ever get is an icon and Graphic 1. What in heaven's name am I doing wrong? 
> >> I am using a Mac OS X. 
> > 
> > Which version of open office?  Which OSX version?
> > 
> > I can do this (with OO 4.1.0 - OSX 10.9.4) by clicking (in the menu bar) 
> > Insert - Picture - From File - a finder like window comes up and you can 
> > select the file.
> > 
> > -- -- --
> > jt   http://jt-mj.net
> > 
> > "Even a blind squirrel finds a nut once in a while."  
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > -
> > To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
> > For additional commands, e-mail: users-h...@openoffice.apache.org
> > 
> > 
> > 
> 


-- 
Rory O'Farrell 

-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Re: Apache OpenOffice Has Been Reviewed at ListOfFreeware

2014-07-30 Thread Greg Madden
On Tuesday 29 July 2014 22:20:54 you wrote:
> Hello,
>
> I am Ubaid from www.listoffreeware.com. This is a popular tech blog
> that lists best free software out there.
>
> I am sending this mail to let you know that we recently reviewed
> Apache OpenOffice
> on our website here:
> http://listoffreeware.com/list-of-best-free-office-suites/
>
> Congrats!
>
> If you want to flaunt this review on your website, feel free to use
> the badge that I have attached with this email, or you can also use
> the code I have added below:
>
> http://listoffreeware.com/list-of-best-free-office-suites/";
> title="10 Best Free Office Suites"> src="*http://listoffreeware.com/wp-content/uploads/Reviewed_At_ListOf
>Freeware.png
> are.png>* "/>
>
> Feel free to get back to me with any questions.
>
> Have Fun,
>
> Ubaid
> Collaboration Manager
>
> w: http://www.listoffreeware.com/


Openoffice is not 'freeware', learn about software freedomteach 
software freedom on your web site.


-- 
Peace,

Greg

-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Apache OpenOffice Has Been Reviewed at ListOfFreeware

2014-07-30 Thread Ubaid

Hello,

I am Ubaid from www.listoffreeware.com. This is a popular tech blog that
lists best free software out there.

I am sending this mail to let you know that we recently reviewed Apache  
OpenOffice
on our website here:  
http://listoffreeware.com/list-of-best-free-office-suites/


Congrats!

If you want to flaunt this review on your website, feel free to use the
badge that I have attached with this email, or you can also use the code I
have added below:

http://listoffreeware.com/list-of-best-free-office-suites/";  
title="10 Best Free Office Suites">
src="*http://listoffreeware.com/wp-content/uploads/Reviewed_At_ListOfFreeware.png
*
"/>

Feel free to get back to me with any questions.

Have Fun,

Ubaid
Collaboration Manager

w: http://www.listoffreeware.com/