Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要显示一个比高度模拟器屏幕最大的文本。我的文字显示抛出:
本地 detailScreenTextDescriptcion = display.newText("Description", 0, 0, (display.contentWidth*2) ,0 , native.systemFont, 12)
large 不限于可见字段,因为他的值为 0,我不知道如何才能看到屏幕底部消失的其余文本。
谢谢
您可以编写一个从右到左滚动/移动文本的函数。您可以为其添加一些功能。例如:onTextClick“恢复滚动”/“停止滚动”。
local function scrollText(text) transition.to( text, { time=3000, alpha=0, x=-(textWidth - display.contentWidth),} ) end