Hi all,
can someone help me to align this text from both sides (left and right). I want it to be justified within both sides of screen ? with following code m it is right aligned.
[lua]
local widget = require( “widget” )
local myText = “تتمتع عمان بوضع سياسي واقتصادي مستقر في العموم، مع ذلك شهدت السلطنة احتجاجات محدودة في ولاية صحار مطالبين برفع الرواتب وإنهاء الفساد وإيجاد المزيد من الفرص الوظيفية، المزيد من حرية التعبير وتقليل الرقابة الحكومية على الإعلام ولم تطالب بإسقاط نظام الحكم [10] رد السلطان قابوس بن سعيد بإقالة ثلث أعضاء حكومته من مناصبهم [11] وتشتهر عمان بأنها أحد أهم مراكز المذهب الإباضي، حيث يعتبر المذهب الآساسي في الحكم ، بالاضافة لوجود المذهب السني والشيعي.[12]”
local paragraph
– scrollView
local scrollView = widget.newScrollView
{
top = display.statusBarHeight,
left = 10,
width = display.contentWidth -20,
height = display.contentHeight - display.statusBarHeight*2,
scrollWidth = display.contentWidth -20,
scrollHeight = 1000
}
— paragram
local options = {
text = myText,
width = 280,
font = native.systemFont,
fontSize = 12,
align = “right”,
y=100
}
paragraph = display.newText(options )
paragraph.anchorX = 0
paragraph.anchorY = 0
paragraph:setFillColor( 0,0,0 )
scrollView:insert( paragraph )
[/lua]
Thanks
Abdul