Jump to content

Search the Community

Showing results for tags 'html '.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • AIDA64
    • General Discussion
    • Brainstorming
    • Bug reports
    • Hardware monitoring
    • SensorPanel
    • Benchmarking, system performance
    • Network audit, change tracking, SQL databases
    • Localization, language modules
    • 3rd party solutions
  • App Forum
    • Android Forum
    • iOS Forum
    • Sailfish Forum
    • Tizen Forum
    • Ubuntu Touch Forum
    • Windows Phone Forum

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Youtube Channel


Snapchat


Skype


Jabber


ICQ


Location


Interests

Found 1 result

  1. I'm using RemoteSensor on my tablet to view AIDA64 but due to the device's browser having an annoying nav bar which gets in the way, the screen doesn't exactly fit. Being able to maximise it with a button would be great, but then the button would be visible. So how about maximising on a double click? Here's the JavaScript for it. function requestFullScreen() { var requestMethod = document.body.requestFullScreen || document.body.webkitRequestFullScreen || document.body.mozRequestFullScreen || document.body.msRequestFullScreen; if (requestMethod) { requestMethod.call(document.body); } else if (typeof window.ActiveXObject !== "undefined") { var wscript = new ActiveXObject("WScript.Shell"); if (wscript !== null) { wscript.SendKeys("{F11}"); } } requestFullScreen(); } window.ondblclick = requestFullScreen; You also need to disable zooming on devices otherwise doubletap to maximise wont work. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/> That won't effect desktops/laptops. It could be added to the HTML only when an option under the RemoteSensor tab it selected so it won't conflict with anyone who might want to keep the current functionality. --------------------------------------------------------------- Another suggestion would be to add links that are available in the RemoteSensor that can change the page back and forth. My reasoning is that I like page 1 to be an overview of my system with page 2 being a detailed look at my CPU and page 3 being a detailed look at my graphics card. It's possible to change between pages with my G19 keyboard but I can't see how to do that in the website with RemoteSensor. I had a look at the network traffic (in Resource Monitor) and it appears to be quite efficient. There's no outgoing messages only incoming ajax (http) requests with the data which is drawn via JavaScript. I'm not sure how the website could communicate with AIDA64, maybe use a query string at the end of the URL so it would look something like 192.168.0.1:80?page=1 but getting AIDA64 to read that... I'll leave that in your capable hands
×
×
  • Create New...