8bitdna Posted June 8, 2018 Share Posted June 8, 2018 Hi All, I'm trying out the Panda 2 Xbox Remote which seems to be working but I can't seem to get back to the IP address selection screen. I'm guessing its a button combination etc but nothing I'm trying working, any ideas? Cheers Quote Link to comment Share on other sites More sharing options...
Ninjadoodle Posted June 8, 2018 Share Posted June 8, 2018 Hi @8bitdna A + X + LT + RT Found it on this page ... http://panda2.io/remote Hope it works for you 8bitdna 1 Quote Link to comment Share on other sites More sharing options...
8bitdna Posted June 9, 2018 Author Share Posted June 9, 2018 @Ninjadoodle good spot! Thank you Quote Link to comment Share on other sites More sharing options...
8bitdna Posted June 11, 2018 Author Share Posted June 11, 2018 Hi @enpu Had a try at the button combo @Ninjadoodle spotted for me and I still can't seem to get back to the IP selection / connection screen. What I see is the UWP mouse pointer and my view in zooming and scaling (when I press the combo). I can sometimes see some scrollbars appearing as well. I think these are from the web view you are wrapping things in? Any ideas? Not urgent at all, just wanted to see how it worked right now Pete Quote Link to comment Share on other sites More sharing options...
enpu Posted June 12, 2018 Share Posted June 12, 2018 @8bitdna This sure sounds like an issue to me, will have to take a closer look. So there is now no way to return to the connection screen? Quote Link to comment Share on other sites More sharing options...
8bitdna Posted June 12, 2018 Author Share Posted June 12, 2018 Hi @enpu Thats right, I can't get back to the connection screen. I've tried the A + X + LT + RT cpmbo with no joy on a few different projects. I don't know if it help but the UWP cursor pops up straight away on every project I've tried and doesn't look like it should be there maybe? Pete Quote Link to comment Share on other sites More sharing options...
8bitdna Posted September 16, 2018 Author Share Posted September 16, 2018 Any update on this? Don't worry about the cursor, I actually fixed this on my own UWP, just can't get back to the connection screen. Quote Link to comment Share on other sites More sharing options...
8bitdna Posted September 26, 2018 Author Share Posted September 26, 2018 @enpu Is the Xbox still supported in panda? Not getting any help on my issues regarding it and want to consider it as a deployment option. I still see it advertised on the Panda website, can you confirm please. Quote Link to comment Share on other sites More sharing options...
enpu Posted September 28, 2018 Share Posted September 28, 2018 @8bitdna Sorry for my late reply on this one. Could you try to bind this function to one of the buttons in the Xbox controller and see if you can go back to the connection screen: window.history.back(window.history.length); Also could you try this code and see all the keycodes for A + X + LT + RT buttons: window.addEventListener('keydown', function(event) { event.preventDefault(); console.log(event.keyCode); }); Thanks! Quote Link to comment Share on other sites More sharing options...
8bitdna Posted September 29, 2018 Author Share Posted September 29, 2018 window.history.back(window.history.length); Took me back to connection screen. window.addEventListener('keydown', function(event) { event.preventDefault(); console.log(event.keyCode); }); Gave the following keycodes... A-195 X-197 LT-201 RT- 202 Also, A + X + LT + RT has started to work again and gets me back to the connection screen. Probably from a newer Edge version and change there due to updates and the 4 months in between me asking for help and now. The janking is still there from my other thread. Quote Link to comment Share on other sites More sharing options...
enpu Posted September 30, 2018 Share Posted September 30, 2018 Great that you got it working, though now i'm not sure what was causing the issue. Will try to figure out that other one now Quote Link to comment Share on other sites More sharing options...
8bitdna Posted September 30, 2018 Author Share Posted September 30, 2018 Me neither, can only assume it was something with Edge / UWP. I 100% tried the gamepad sample and had the problem so not sure. For the janking try removing your state collection of buttons specifically in your gamepad plugin, you'll see it gets better instantly. Very odd. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.