Sure. Here is the code I was testing with:
sync on
sync rate 60
autocam off
make camera 1
make object cube 1, 2
make object cube 2, 2
position object 1, 0, 0, 0
position object 2, 2, 0, 5
position camera 1, 0, 5, -10
do
selected = pick object(mousex(), mousey(), 1, 1000);
text 1, 1, str$(selected)
sync
loop
I seem to have discovered something that may help though. When I leave the autocam on, it works fine, but when I turn it off, the pick object command suddenly ceases to work. Anyone know why this is? I would rather not use the autocam...