In Design - right indent tab

How do I add the right indent tab in a text / script ?

set applied character style to KARAKTERrodetekstachterFILM
set text 1 to vertoningONDERDELEN

The text I add I want to align on the right side.
In In Design you use: shift TAB to achieve that.

Is there a ASCII code that I can use to add it to the line in In Design

I also tried it with a paragraph style:
set applied character style to KARAKTERrodetekstachterFILM
set text 1 to " " & vertoningONDERDELEN
set applied paragraph style of paragraph 1 to ALINEArodetekstachterFILM

but then the whole line will be aligned to the right (and I want only the last added words to align to the right)

Hi. What constitutes ‘the last added words’ is unclear, but this will add tab stops to a style.


tell application "Adobe InDesign CS3"'s document 1 to repeat with num from 1 to 5
	tell paragraph style "ALINEArodetekstachterFILM" to make new tab stop with properties {position:num, alignment:right align}
end repeat

Edited to include OP’s correct style name.