.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
winSPMBT: Main Battle Tank- Save $5.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: IV & V

Reply
 
Thread Tools Display Modes
  #1  
Old March 19th, 2001, 07:22 PM

Bluecher Bluecher is offline
Private
 
Join Date: Dec 2000
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Bluecher is on a distinguished road
Default Re: New weapons help document & HTML template

Hi raynor and coldsteel,

this is really good work. And an Index is a good idea.

Very nice ...
Reply With Quote
  #2  
Old March 19th, 2001, 07:45 PM
ColdSteel's Avatar

ColdSteel ColdSteel is offline
Sergeant
 
Join Date: Dec 2000
Posts: 248
Thanks: 0
Thanked 0 Times in 0 Posts
ColdSteel is on a distinguished road
Default Re: New weapons help document & HTML template

raynor, I just sent you some email with the fix to the "Range and Damage" inconsistent cell size problem. Other info and comments in there as well. Let me know if I can do anything else to help.
__________________
The difference between genius and stupidity is that genius has its limits.
Reply With Quote
  #3  
Old March 19th, 2001, 07:55 PM
Arralen's Avatar

Arralen Arralen is offline
Major General
 
Join Date: Nov 2000
Location: 500km from Ulm
Posts: 2,279
Thanks: 9
Thanked 18 Times in 12 Posts
Arralen is on a distinguished road
Default Re: New weapons help document & HTML template

Hello ColdSteel !

Just tried out CompHTML and had some minor quibbles about it
- there are some errors and "not-so-nices" in the HMTL code (I promised to look through it and send raynor some "sample pages" this weekend)
- and I would suggest moving all format/layout info into a seperate .css file, so it would be easier (or possible at all) to adjust colours and font size for personal preference.

What do you think about that ?!

Arralen
__________________
As for AI the most effective work around to this problem so far is to simply use an American instead, they tend to put up a bit more of a fight than your average Artificial Idiot.
... James McGuigan on rec.games.computer.stars somewhen back in 1998 ...
Reply With Quote
  #4  
Old March 19th, 2001, 08:29 PM
ColdSteel's Avatar

ColdSteel ColdSteel is offline
Sergeant
 
Join Date: Dec 2000
Posts: 248
Thanks: 0
Thanked 0 Times in 0 Posts
ColdSteel is on a distinguished road
Default Re: New weapons help document & HTML template

Hi Arralen,

I too found some errors Last night in the first template and sent the corrections to raynor. My HTML editor error checker now say everything is fine.

I'm not sure how to move the formatting out into another file as you suggest. This is my "learn HTML" project and I've never played with it before so I'll freely admit that I'm a rank beginner when it comes to this stuff.

Here is the latest updated SE4Weapons HTML template that I just sent to raynor. It fixes a problem with cell sizes for the Range and Damage Tables. The latest SE4index HTML template is available in an earlier message under this topic. If you want to play with them and make suggestions or improvements, please feel free to do so. Bear in mind that raynor has to replicate everything in the templates in his code within the program so some reformatting when he does that is probably inevitable.

Thanks for the input.
__________________
The difference between genius and stupidity is that genius has its limits.
Reply With Quote
  #5  
Old March 19th, 2001, 11:48 PM
Arralen's Avatar

Arralen Arralen is offline
Major General
 
Join Date: Nov 2000
Location: 500km from Ulm
Posts: 2,279
Thanks: 9
Thanked 18 Times in 12 Posts
Arralen is on a distinguished road
Default Re: New weapons help document & HTML template

Ok, I'll have a look at it tomorrow (at work ), fi I find the time for this.

Doing everything in CascadingStyleSheets in a seperate file will in fact make the programming a lot easier - you needn't care about layout etc., as you can adjust this later when the acutal HTML-pages are already generated ..

I hope I can get some example done soon !!

A.
__________________
As for AI the most effective work around to this problem so far is to simply use an American instead, they tend to put up a bit more of a fight than your average Artificial Idiot.
... James McGuigan on rec.games.computer.stars somewhen back in 1998 ...
Reply With Quote
  #6  
Old March 19th, 2001, 11:57 PM

Possum Possum is offline
First Lieutenant
 
Join Date: Oct 2000
Location: San Diego, CA, USA
Posts: 731
Thanks: 0
Thanked 0 Times in 0 Posts
Possum is on a distinguished road
Default Re: New weapons help document & HTML template

Guys, if you want to learn more about CSS, which really is very very cool stuff, go to Webmonkey. The CSS tutorial just rocks too hard for words.

A few caveats -

1. Netscape still does not properly implement some features of CSS.

2. Absolute positioning and z-index are massively cool features, but only really display properly when viewed at the same resolution for which they were created
Reply With Quote
  #7  
Old March 20th, 2001, 06:08 AM
Will's Avatar

Will Will is offline
Lieutenant Colonel
 
Join Date: Mar 2001
Location: Emeryville, CA
Posts: 1,412
Thanks: 0
Thanked 0 Times in 0 Posts
Will is on a distinguished road
Default Re: New weapons help document & HTML template

If you need any help with all that positioning and stuff, send it along to me (e-mail is cerban_imperium@yahoo.com). I've been doing HTML for a hobby for about... wow... four years (this is where my young age starts to feel, very, very old...). I got into CSS and dHTML Last year, and am fairly good at making them cross-browser/platform compatible (though I can only test on Windows )

For the alignment of the weapons, I haven't taken a look at the HTML code you have, but from looking at the problem the way you set it up, the following should work (the angle brackets will be represented by parenthesis ( & ), since forums seem to mess up HTML most of the time, even when they "shouldn't".):

(table)(tr)(td width="30" align="right")1(/td)(td width="30" align="right")2(/td)(td width="30" align="right")3(/td)(/tr)(/table)

That would give you a table with fixed values for the width, and the values inside the table data (td) tags aligned to the right (I believe that otherwise, they are aligned to the center, but, it's been a while since I've used tables). If you want to use CSS on the individual data stuff, you should switch from (table) to (div), but that's just a pain in the @$$, and more trouble than it's worth for something like this.

Oh, and sorry if the lowercase tags mess up anything that you've learned... it's not necessary to have them capitalized in HTML, and the new XML and XHTML specs call for lowercase only tags... plus lowercase tags have been my style from the beginning, because I found capitalized tags to be very annoying...

Some things on CSS: those two things are only problems if you don't know how to implement a fix to them Give Netscape a break, IE doesn't implement some of CSS's features either, they just have a few more of them. Absolute positioning works fine with a bit of JavaScript to determine the user's screen area (between toolbars, statusbars, scrollbars, etc.), and z-index doesn't have much to do with screen size, but is buggy in all browsers.

You guys should consider helping out with the manual too

And, one final thing: WebMonkey rules.
__________________
GEEK CODE V.3.12: GCS/E d-- s: a-- C++ US+ P+ L++ E--- W+++ N+ !o? K- w-- !O M++ V? PS+ PE Y+ PGP t- 5++ X R !tv-- b+++ DI++ D+ G+ e+++ h !r*-- y?
SE4 CODE: A-- Se+++* GdY $?/++ Fr! C++* Css Sf Ai Au- M+ MpN S Ss- RV Pw- Fq-- Nd Rp+ G- Mm++ Bb@ Tcp- L+
Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 11:22 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2025, Shrapnel Games, Inc. - All Rights Reserved.