
December 23rd, 2004, 04:30 PM
|
 |
Contributing User
|
|
Join Date: Aug 2004
Location: Victoria, BC Canada
Posts: 482
Time spent in forums: 1 h 10 m 30 sec
Reputation Power: 5
|
|
|
Well, the big reason some scripts might not run so good is because mozilla does not support VBScript, and I doubt they ever fully will. Despite microsofts best efforts, the standard for client side scripting is javascript. Beyond that, the different scripts run a bit differently if you use javascript because mozilla is trying matching the W3C specs and microsoft isn't.
I'll admit, mozilla isn't all the way there yet, but if it's in the W3C specs, you can bet they're heading in that direction
you should try to stick with the Document.GetItemByID("IdName") method when calling css or other objects methods, to change background colours or whatever on the fly, since both browsers support it pretty well.
As for over the internet games like your talking about... I'd suggest you use java, but that is only because I've used it for network games before and I know it's not too hard.
I'd suggest you use RMI if you chose java, you'll have to look it up, but it is a really easy way of getting a client app to talk to the server app, which isn't your web-server but can be running on the same machine. Yes you can talk to your access server using Java, look up JDBC. I'd suggest that you don't do this in the scripts, but rather in your Server app
BTW, you can also use Javascript and VBScript on the same site if you want as well.
Anyway, not sure this is the perfect place for this post, but I guess it got answered anyway
good luck,
-mwalts
|