Hi!
Easyist way is make thumbnails images with text as graphics.
But if you want to add real text over thiumbs with scrolling thumbnails plugin
then try this code (set each thumb plugin as parent for text plugin)
|
Source code
|
1
2
3
4
5
6
7
|
<action name="set_thumb_as_text_parent">
for( set(i,0) , i LT thumbnails[%1].thumb.count, inc(i) ,
txtadd(text_name,text_,get(i));
txtadd(tn_name,%1,_thumb_,get(i));
set(plugin[get(text_name)].parent,get(tn_name));
);
</action>
|
Where
%1 - thumbnails name,
text_%N - is textfield plugin with name (text_0, text_1, text_2, .... )
NOTE! - use this action after delay because thumbs adds only after previous loaded and has some delay before last thumb apear.
I prefer first option
Regards
Andrey