Here's a quick mockup:
Maybe we need a new kind of texbox here.
Script tentative syntax: 'show stripbox <stripbox_id> [character_id][:[expression_id]] <dialog_text>'
'show stripbox sb1 with mike:happy Hello there!',
'show stripbox sb2 with jenny:angry I'm so mad!',
'show stripbox sb3 with sandy:smile Jennyfer is mad at you Michael!',
'hide stripbox sb1',
'hide stripbox sb3',
'hide stripbox sb4',
In declaration :
``monogatari.stripbox ({
'stb1': {
strip_container: 'main_container',
stip_class: 'style_sb1',
strips_scrolling_direction: 'vertical/horizontal',
out_of_screen_vertical: 'top/scroll',
out_of_screen_horizontal: 'left/right', // direction for LTR writing systems.
}
});`
We need in this case to have scrolling effect options (a click = a scroll) :
- click scrolling vertically / top or scroll bar
- click scrolling horizontally / left or right
- first strips go out of screen to left or right when click scrolling horizontally
- first strips go out of screen up or are scrollable when click scrolling vertically