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.
我正在使用 Adobe Flash 开发一个 iOS 应用程序。它工作正常,除了一个显示滚动条的磁贴列表,需要拖动它来滚动磁贴列表并显示其所有内容。
有没有办法通过触摸并拖动它来让它滚动到任何地方?
谢谢。
如果您使用的是 Flex,这将起作用。
不要设置高度(或宽度,取决于您的需要)并将其包裹在Scroller对象中。我不确定 aTileList是否是有效的 ViewPort,因此您可能需要进行更深一层的抽象并将其包装TileList在一个通用Group对象中。这将为 Scroller 中的对象提供接近原生的滚动功能。
Scroller
TileList
Group
例子:
<s:Scroller width="100%" height="100%"> <s:TileList> </s:TileList> </s:Scroller>