I prefer to tweak the camera with DBPro commands to gain an Orthographic view. I believe the other methods discussed commonly on these forums break the ability to use object selection routines. (as in, although the image you see is orthographic, the object selection routines/functions still continue to treat the scene as perspective, causing all kinds of havoc.)
Here's a snippet to compare;
Set Camera Range 0, Range_Min#, Range_Max#
Set Camera FOV 0, FOV#
Position Camera 0, PosX#, PosX#, PosX#
If Key_o
Fade_Text("Orthographic")
Range_Min# = 5000
Range_Max# = 10000
FOV# = 1
PosX# = 5000
Scale# = 100
endif
If Key_p
Fade_Text("Perspective")
Range_Min# = 10
Range_Max# = 2000
FOV# = 90
PosX# = 50
Scale# = 100
endif
So basically adjusting the Field of View, the range and the physical location of the camera will give the desired effect. I'm yet to code in camera movement with this technique though, but for a static camera it works great.