You guys are seriously, the best community ever!
@ MonoCoder
Your pictures helped me the most!
The picture on the buttom left gave me a visual reference of were A,B,C,D is located so now I understand why I don't see the other letters. Thanks so much!!!
@ Attila & Green Gandalf
Thank you both for the help and sharing your codes!
This also helps me figure out the problem in different angle.
By the way, how do you copy codes like that into snippets? I like to learn how to do this lol.
@ tiffer
Right of the cursor?
Set Cursor doesn't mean the actual cursor on my mouse position, does it?
@ Everyone else:
I have found a solution using the Text command.
If you're resolution is: 640x480
You subtract the X-axis by 10
You subtract the Y-axis by 13
And your code would look like this:
Text 0,0, "A"
Text 630,0, "B"
Text 0,467, "C"
Text 630,467, "D"
This will align all 4 letters at the correct position.
This applies to ANY Screen Resolution you choose as long as the text size is default.
And to get the position of center, simple math does the trick.
630 divided by 2 = 315
467 divided by 2 = 233
Text 315,233, "X"