next InDesign question

I know how to make a dialog box to get my job number, but i don’t know how to make one with radio buttons for “Branded” and “Generic”

currently I have this:

set JobNum to text returned of (display dialog "Job Number?" default answer "") as string

now i’d like to add the button underneath some how, with the “generic” being the default answer.

thanks
david

I would probably do it this way:

set my_dialog_result to display dialog "Job Number?" default answer "" buttons {"Branded", "Generic"} default button "Generic"
set button_returned to the button returned of my_dialog_result
set JobNum to the text returned of my_dialog_result