v16 TextBox does not wrap long words
#1
Not sure if this is a bug or something I am doing wrong. But whenever i have a long word, in this case a web address, the textbox cuts it off instead of wrapping it to the next line.
I have a vertical scroll bar which supports the vertical overflow, i tried to change it to horizontal but it still controls the vertical overflow. Is there any way to force this to wrap or add a 2nd scroll bar?

Image


PHP Code:
<?xml version="1.0" encoding="UTF-8"?>
<window>
    <width>1280</width>
    <height>720</height>
    <defaultcontrol always="true">2000</defaultcontrol>
    <backgroundcolor>0xffFFFFFF</backgroundcolor>
    <coordinates>
        <system>1</system>
        <posx>0</posx>
        <posy>0</posy>
        <left>0</left>
        <top>0</top>
    </coordinates>
    <animation type="WindowOpen" reversible="false">
        <effect type="slide" start="0,0" end="0,0" easing="out" tween="back" time="0" />
    </animation>
    <animation type="WindowClose" reversible="false">
        <effect type="slide" start="0,0" end="0,0" easing="out" tween="back" time="0" />
    </animation>
    <controls>
        <control type="scrollbar" id="2000">
            <description>Message Scrollbar</description>
            <posx>0</posx>
            <posy>0</posy>
            <top>0</top>
            <left>0</left>
            <width>10</width>
            <height>720</height>
            <texturesliderbackground>texturesliderbackground.png</texturesliderbackground>
            <texturesliderbar>texturesliderbar.png</texturesliderbar>
            <texturesliderbarfocus>texturesliderbarfocus.png</texturesliderbarfocus>
            <textureslidernib>-</textureslidernib>
            <textureslidernibfocus>-</textureslidernibfocus>
            <orientation>vertical</orientation>
        </control>
        <control type="textbox" id="1000">
            <description>My First label</description>
            <description>Message Scrollbar</description>
            <posx>0</posx>
            <posy>0</posy>
            <top>0</top>
            <left>15</left>
            <width>426</width>
            <height>720</height>
            <pagecontrol>2000</pagecontrol>
            <label>gfgdgfdgfdgfdgfdgfdgfdgfdg</label>
            <font>font13</font>
            <!--<shadowcolor>ff000000</shadowcolor>-->

            <colordiffuse>FFFFFFFF</colordiffuse>
            <textcolor>FF000000</textcolor>
            <pulseonselect></pulseonselect>
            <scrolltime>200</scrolltime>
            <align>left</align>
            <aligny>left</aligny>
      </control>
    </controls>
</window> 
Reply

Logout Mark Read Team Forum Stats Members Help
TextBox does not wrap long words0