I'm trying to add a scrolling list to my menu, for now only within flash using Clik Components.
So I copied ScrollingList and ScrollBar from CLIK_Component.fla, I added a very simple AS code, like in ScrollingListDemo.fla but simpler:
The problem is: when I test my menu I have the scrollBar linked to the list (same number of steps as number of entries in the list), but the list doesn't show anything.
I noticed in the Scaleform "Dos debug box" this error:
So what am I doing wrong?
So I copied ScrollingList and ScrollBar from CLIK_Component.fla, I added a very simple AS code, like in ScrollingListDemo.fla but simpler:
Code:
ListTest.dataProvider = ["Take", "Tina", "Michael", "Wendy", "Frank", "Artem", "Dave", "Judy"]; ListSB.scrollTarget = ListTest; stop();
I noticed in the Scaleform "Dos debug box" this error:
Code:
Error: _Level10.instance5.ListTest.container.attachMovie<> failed - export name "ListItemRenderer" is not found. Error: CallMethod - 'removeMovieClip' on invalid object.Load: _Level10.instance5.ListTest
So what am I doing wrong?
Comment