在 Adobe AIR 中将单独的 UIScrollBar 链接到 ScrollPane
Linking separate UIScrollBar to ScrollPane in Adobe AIR
我需要将一个短滚动条与其对应的较长滚动窗格分开放置,但我收到以下错误:
ReferenceError: Error #1069: Property maxScrollH not found on
fl.containers.ScrollPane and there is no default value.
at fl.controls::UIScrollBar/updateScrollTargetProperties()
at fl.controls::UIScrollBar/draw()
at fl.core::UIComponent/callLaterDispatcher()
正在搜索,我找不到访问 maxScrollH 的方法来开始解决问题。尝试以我通常的方式访问 属性...
ScrollPane_instance.maxScrollH = 1440;
... 产生不同的错误:
Symbol 'Gllryscrn_mclp', Layer 'Gallery', Frame 1, Line 3, Column 19 1119:
Access of possibly undefined property maxScrollH through a reference with
static type fl.containers:ScrollPane.
我只是自学成才,对于新手的任何疏忽,我们深表歉意。
我想我会跟进,以防其他人遇到类似问题。我对常规 UIscrollbar 的自定义程度不满意,因此创建了第二个滚动窗格来代替滚动条。我只是让第一个的滚动百分比等于第二个的百分比,反之亦然。
我需要将一个短滚动条与其对应的较长滚动窗格分开放置,但我收到以下错误:
ReferenceError: Error #1069: Property maxScrollH not found on
fl.containers.ScrollPane and there is no default value.
at fl.controls::UIScrollBar/updateScrollTargetProperties()
at fl.controls::UIScrollBar/draw()
at fl.core::UIComponent/callLaterDispatcher()
正在搜索,我找不到访问 maxScrollH 的方法来开始解决问题。尝试以我通常的方式访问 属性...
ScrollPane_instance.maxScrollH = 1440;
... 产生不同的错误:
Symbol 'Gllryscrn_mclp', Layer 'Gallery', Frame 1, Line 3, Column 19 1119:
Access of possibly undefined property maxScrollH through a reference with
static type fl.containers:ScrollPane.
我只是自学成才,对于新手的任何疏忽,我们深表歉意。
我想我会跟进,以防其他人遇到类似问题。我对常规 UIscrollbar 的自定义程度不满意,因此创建了第二个滚动窗格来代替滚动条。我只是让第一个的滚动百分比等于第二个的百分比,反之亦然。