Hi! New to Decker and learning my way round things; have recently come across something about Dialogizer I can't get my head round.
Trying out a scene of two people speaking, and aiming to have the dialog box move position on the card according to who is speaking. I've created two invisible canvases on the card to act as anchoring locations for each speaker. And setup separate styles for each, to be set on triggered commands in a rich text field.
This works as I'd expect, showing the first two lines of dialog at fullscreen width, centered on the relevant anchor widget.
s_lower:() s_lower.pos:"dialog_lower" s_upper:() s_upper.pos:"dialog_upper" on view do dialog_drip.view:"none" dd.open[deck] dd.say[text_a.value] dd.close[] end on command x do if x~"lower" dd.style[s_lower] elseif x~"upper" dd.style[s_upper] end end

