Dear Listers

I have been working with stripplot (SCC) all day, and like how it has turned out. For sake of uniformity, i would like to use the same symbols for the two groups in my study through out my presentation. Some of the data is presented as twoway scatters and there i have no difficulty controlling the msymbols for each group. My graph code, looks like this. Group is 0 or 1.

Code:
stripplot var1, over(group) stack vertical height(.8) width(0.01) center ysize(1.1) //
lab(0.5(0.5)1.6, nogrid)//
graphregion(color(white)) bgcolor(white) ytitle("some title)") //
title("title", color(black) box bexpand fcolor(white)) 
xsize(1) xlabel(0 "Reference" 1 "Case group") xtitle("") mcolor(black) msymbol(Oh) box iqr refline
now I would like it to be: msymbol(Oh) if group==0, and msymbol(O) if group==1

hope you can help.

Lars