Thanks Kyatric! I have posted my capx here: dl.dropbox.com/u/126021636/mars_v1.capx
i set the window size to 1000x700, and the layout size is 3616x3616 (divisible by 32). There are only 2 main things going on in the capx. One is the click once on screen to move player to that location, the second is to click and drag to scroll around the map.
My only problem is that when i drag the background past the window size and click, the player will not move. If i click anywhere inside the 1000x700 area, the player does move. Thanks if you or anyone can figure out what happening!
I was able to figure it out! Very sorry, after posting this i looked at the code i was using from the example capx and realized that there was a limitation comparison set for Mouse.Y < WindowHeight and Mouse.X < WindowWidth. I just changed those to LayoutHeight & LayoutWidth and all set! Still learning. thanks for your response, I appreciate your support