Browser different on other Macs

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

lohill
Posts: 770
Joined: Tue Dec 08, 2009 6:37 pm

Re: Browser different on other Macs

Post by lohill » Tue Mar 26, 2013 2:23 am

Well, as it turns out, my testers still do not see what I see on my Mac. I even gave them a button to change the color of the backgrounds of the fields to about 5 different choices. They still see black. Interestingly enough however, if they drag through and copy my browser page, they can paste it somewhere like email and it looks perfectly fine - even with the different colors. I am at a loss as to what to do next..

Larry

shaosean
Posts: 906
Joined: Thu Nov 04, 2010 7:53 am

Re: Browser different on other Macs

Post by shaosean » Tue Mar 26, 2013 8:34 am

Code: Select all

var i;
var tInput = document.getElementsByTagName('input');
for (i = 0; i < tInput.length; i++) {
   tInput[i].style.borderColor = '#000000';
   tInput[i].style.borderWidth = '1px';
}

Post Reply