Hi Matthias,

So you are thinking something like:

<!DOCTYPE html>
<html>
<body>

<h3>Your Screen:</h3>

<div id="demo"></div>

<script>
var txt = "";
txt += "<p>Total width/height: " + screen.width + "*" + screen.height + "</p>";
txt += "<p>Available width/height: " + screen.availWidth + "*" + 
screen.availHeight + "</p>";
txt += "<p>Color depth: " + screen.colorDepth + "</p>";
txt += "<p>Color resolution: " + screen.pixelDepth + "</p>";

document.getElementById("demo").innerHTML = txt;
</script>

</body>
</html>

And then put the information into a Javascript cookie and then read the cookie 
value with an LC Server script.

I’ll see if I can get that to work.

Thanks!

Rick

> On Mar 20, 2021, at 6:10 PM, matthias rebbe via use-livecode 
> <use-livecode@lists.runrev.com> wrote:
> 
> As Livecode Server runs on the server  there is no direct command/function in 
> LC Server available for this task.
> 
> But you could use Javascript (document.cookie)  in your LC Server script  to 
> write the screen resolution into a cookie and read that cookie then with your 
> Livecode Server script.
> 
> 
> -
> Matthias Rebbe
> Life Is Too Short For Boring Code

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to