<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.19088">
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial>While looking to solve my problems with Hebrew and 
Scribus, I found the issue enclosed.</FONT></DIV>
<DIV><FONT face=Arial></FONT> </DIV>
<DIV><FONT face=Arial><A 
href="http://lists.scribus.net/pipermail/scribus/2012-December/048116.html">http://lists.scribus.net/pipermail/scribus/2012-December/048116.html</A></FONT></DIV>
<DIV><FONT face=Arial></FONT> </DIV>
<DIV><FONT face=Arial>The general problem is that when you flip the Hebrew (with 
the flipped "R" in the options of the text box) it also flips the text itself 
into a mirror-text. So I used the following script to do both: flip the text and 
have it straight and not "mirrored".</FONT></DIV>
<DIV><FONT face=Arial></FONT> </DIV>
<DIV><FONT face=Arial>Enclosed is the script, for anybody who would like to use 
it. It still have the problem with paranthesis, brackets and numbers, but this 
is a start. I hope to have time to do more, when I would - I'll post what I'll 
do.</FONT></DIV>
<DIV><FONT face=Arial></FONT> </DIV>
<DIV><FONT face=Arial>If anybody have any ideas for more issues to solve with 
Hebrew and Scribus, please let me know and I'll try to put time for 
it.</FONT></DIV>
<DIV><FONT face=Arial></FONT> </DIV>
<DIV><FONT face=Arial>Here is the script:</FONT></DIV>
<DIV><FONT face=Arial></FONT> </DIV>
<DIV><FONT face=Arial>from scribus import *<BR>if 
haveDoc():<BR>    nbrSelected = 
selectionCount()<BR>    objList = []<BR>    for i 
in range(nbrSelected):<BR>        
objList.append(getSelectedObject(i))<BR>    for i in 
range(nbrSelected):<BR>        
try:<BR>            obj = 
objList[i]<BR>            
setProperty(obj, "m_ImageIsFlippedH", 
True)<BR>            
setProperty(obj, "reversed", 
True)<BR>            
moveObject(1, 0, 
obj)<BR>            
moveObject(-1, 0, 
obj)<BR>            
docChanged(1)<BR>            
setRedraw(True)<BR>        
except:<BR>            
nothing = "nothing"</FONT></DIV></BODY></HTML>