Sammy Munoz wrote:
> Also, when does your book come out? And since we all
> we're good students, any discounts on your new book?
January, I believe. Publishers often give members of GameJUG special
discounts: http://www.gamejug.org/benefits/
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home
Cool!
Also, when does your book come out? And since we all
we're good students, any discounts on your new book?
:)
sam
--- David Wallace Croft <david@...> wrote:
> Students:
>
>
> I calculated and submitted course grades. The
> lowest grade was a B+.
>
>
> --
> David Wallace Croft, President, CroftSoft Inc
> Author of "Advanced Java Game Programming"
> http://www.croftsoft.com/library/books/ajgp/
> (972) 883-2205 office, (214) 731-9284 home
>
>
__________________________________
Do you Yahoo!?
Free Pop-Up Blocker - Get it now
http://companion.yahoo.com/
Students:
I calculated and submitted course grades. The lowest grade was a B+.
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home
If I'm never in one place, I can't leave a number :-)
And no internet service...
makes it pretty difficult
David Wallace Croft wrote:
><html><body>
>
>
><tt>
>Tania:<BR>
><BR>
><BR>
>Tania M Salahat wrote:<BR>
>> I've been trying to get ahold of you for about a week now during
the <BR>
>> day at your office but with no such luck.<BR>
><BR>
><BR>
>If you don't leave a message, I can't call you back.<BR>
><BR>
><BR>
>> locations. Does that make sense?<BR>
><BR>
><BR>
>Yes.<BR>
><BR>
><BR>
>> Hopefully you might have time to help me out during class, because
I'm <BR>
>> really at aloss.<BR>
><BR>
><BR>
>OK, I'll cover it in the beginning of class tonight.<BR>
><BR>
><BR>
>-- <BR>
>David Wallace Croft, President, CroftSoft Inc<BR>
>Author of "Advanced Java Game Programming"<BR>
><a
href="http://www.croftsoft.com/library/books/ajgp/">http://www.croftsoft
.com/library/books/ajgp/</a><BR>
>(972) 883-2205 office, (214) 731-9284 home<BR>
><BR>
></tt>
>
><br>
>
><!-- |**|begin egp html banner|**| -->
>
><table border=0 cellspacing=0 cellpadding=2>
><tr bgcolor=#FFFFCC>
><td align=center><font size="-1" color=#003399><b>Yahoo! Groups
Sponsor</b></font></td>
></tr>
><tr bgcolor=#FFFFFF>
><td align=center width=470><table border=0 cellpadding=0 cellspacing=0>
<tr> <td align=center><font face=arial
size=-2>ADVERTISEMENT</font><br><a
href="http://rd.yahoo.com/SIG=12ccnddc0/M=267637.4116730.5333196.1261774
/D=egroupweb/S=1705006905:HM/EXP=1069791055/A=1853618/R=0/*http://www.ne
tflix.com/Default?mqso=60178338&partid=4116730" alt=""><img
src="http://us.a1.yimg.com/us.yimg.com/a/ne/netflix/yhoo1103_a_300250A.g
if" alt="click here" width="300" height="250"
border="0"></a></td></tr></table> </td>
></tr>
><tr><td><img alt="" width=1 height=1
src="http://us.adserver.yahoo.com/l?M=267637.4116730.5333196.1261774/D=e
groupmail/S=:HM/A=1853618/rand=615667864"></td></tr>
></table>
>
><!-- |**|end egp html banner|**| -->
>
>
><br>
><tt>
>--<BR>
>Advanced Java Game Programming<BR>
><a
href="http://www.croftsoft.com/library/books/ajgp/">http://www.croftsoft
.com/library/books/ajgp/</a><BR>
>To subscribe to or unsubscribe from this list, please send a blank
e-mail message to croftsoft-ajgp-subscribe@yahoogroups.com or<BR>
>croftsoft-ajgp-unsubscribe@yahoogroups.com.<BR>
>All messages are publicly archived at <a
href="http://egroups.com/group/croftsoft-ajgp/.">http://egroups.com/grou
p/croftsoft-ajgp/.</a><BR>
></tt>
><br>
>
><br>
><tt>Your use of Yahoo! Groups is subject to the <a
href="http://docs.yahoo.com/info/terms/">Yahoo! Terms of
Service</a>.</tt>
></br>
>
></body></html>
>
>
---------------------------------------
Tania
"You use to say there's a time when we
should all lose our minds. Well I've
lost my mind, now I'm ready to find my
way."
Tania:
Tania M Salahat wrote:
> I've been trying to get ahold of you for about a week now during the
> day at your office but with no such luck.
If you don't leave a message, I can't call you back.
> locations. Does that make sense?
Yes.
> Hopefully you might have time to help me out during class, because I'm
> really at aloss.
OK, I'll cover it in the beginning of class tonight.
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home
David,
I've been trying to get ahold of you for about a week now during the
day at your office but with no such luck.
I've been trying to work on our java program, but I'm having a hard
time understanding everything that is going on in your tile animator.
I understand what its doing, but reading it over and over again I can't
find the locations thats its assigning tile map colors to tiles, or
preforming individual tile manipulation (if any).
I dont know how to test to see if the user has clicked on a certain
tile, so as to reveal another tile, but not necessarily in all
locations. Does that make sense?
Hopefully you might have time to help me out during class, because I'm
really at aloss.
Thanks
Tania
---------------------------------------
Tania
"You use to say there's a time when we
should all lose our minds. Well I've
lost my mind, now I'm ready to find my
way."
brainbosh wrote:
> I'm trying to use an array to hold variables. I define and fill the
> array in the update method, but when i get to the paint method, the
> array is full of 0's. How do i make it a global variable?
It may be that your paint() method is being called before your update()
method. Try filling the array in your init() method instead.
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home
I'm trying to use an array to hold variables. I define and fill the
array in the update method, but when i get to the paint method, the
array is full of 0's. How do i make it a global variable?
brainbosh wrote:
> [java] java.lang.NullPointerException
> [java] at edu.utdallas.bxm018100.team.Team.update(Unknown
> Source)
This message was in the moderator queue from a week ago. I assume
you've fixed it by now.
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home
I tried to get java to generate a random variable, and it compiles
but then freezes up and generates these messages
[java] at javax.swing.JOptionPane.showOptionDialog
(JOptionPane.java:840
)
[java] at
com.croftsoft.core.gui.LifecycleWindowListener.windowClosing(
Unknown Source)
[java] at java.awt.Window.processWindowEvent
(Window.java:1121)
[java] at javax.swing.JFrame.processWindowEvent
(JFrame.java:266)
[java] at java.awt.Window.processEvent(Window.java:1079)
[java] at java.awt.Component.dispatchEventImpl
(Component.java:3615)
[java] at java.awt.Container.dispatchEventImpl
(Container.java:1627)
[java] at java.awt.Window.dispatchEventImpl
(Window.java:1606)
[java] at java.awt.Component.dispatchEvent
(Component.java:3477)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:456)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:145)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:137)
[java] at java.awt.EventDispatchThread.run
(EventDispatchThread.java:100
)
[java] java.lang.NullPointerException
[java] at edu.utdallas.bxm018100.team.Team.update(Unknown
Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent.animate(Unknow
n Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent$1.run(Unknown
Source)
[java] at java.awt.event.InvocationEvent.dispatch
(InvocationEvent.java:
171)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:454)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:141)
[java] at java.awt.Dialog$1.run(Dialog.java:540)
[java] at java.awt.Dialog.show(Dialog.java:561)
[java] at javax.swing.JOptionPane.showOptionDialog
(JOptionPane.java:840
)
[java] at
com.croftsoft.core.gui.LifecycleWindowListener.windowClosing(
Unknown Source)
[java] at java.awt.Window.processWindowEvent
(Window.java:1121)
[java] at javax.swing.JFrame.processWindowEvent
(JFrame.java:266)
[java] at java.awt.Window.processEvent(Window.java:1079)
[java] at java.awt.Component.dispatchEventImpl
(Component.java:3615)
[java] at java.awt.Container.dispatchEventImpl
(Container.java:1627)
[java] at java.awt.Window.dispatchEventImpl
(Window.java:1606)
[java] at java.awt.Component.dispatchEvent
(Component.java:3477)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:456)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:145)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:137)
[java] at java.awt.EventDispatchThread.run
(EventDispatchThread.java:100
)
[java] java.lang.NullPointerException
[java] at edu.utdallas.bxm018100.team.Team.update(Unknown
Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent.animate(Unknow
n Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent$1.run(Unknown
Source)
[java] at java.awt.event.InvocationEvent.dispatch
(InvocationEvent.java:
171)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:454)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:141)
[java] at java.awt.Dialog$1.run(Dialog.java:540)
[java] at java.awt.Dialog.show(Dialog.java:561)
[java] at javax.swing.JOptionPane.showOptionDialog
(JOptionPane.java:840
)
[java] at
com.croftsoft.core.gui.LifecycleWindowListener.windowClosing(
Unknown Source)
[java] at java.awt.Window.processWindowEvent
(Window.java:1121)
[java] at javax.swing.JFrame.processWindowEvent
(JFrame.java:266)
[java] at java.awt.Window.processEvent(Window.java:1079)
[java] at java.awt.Component.dispatchEventImpl
(Component.java:3615)
[java] at java.awt.Container.dispatchEventImpl
(Container.java:1627)
[java] at java.awt.Window.dispatchEventImpl
(Window.java:1606)
[java] at java.awt.Component.dispatchEvent
(Component.java:3477)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:456)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:145)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:137)
[java] at java.awt.EventDispatchThread.run
(EventDispatchThread.java:100
)
[java] java.lang.NullPointerException
[java] at edu.utdallas.bxm018100.team.Team.update(Unknown
Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent.animate(Unknow
n Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent$1.run(Unknown
Source)
[java] at java.awt.event.InvocationEvent.dispatch
(InvocationEvent.java:
171)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:454)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:141)
[java] at java.awt.Dialog$1.run(Dialog.java:540)
[java] at java.awt.Dialog.show(Dialog.java:561)
[java] at javax.swing.JOptionPane.showOptionDialog
(JOptionPane.java:840
)
[java] at
com.croftsoft.core.gui.LifecycleWindowListener.windowClosing(
Unknown Source)
[java] at java.awt.Window.processWindowEvent
(Window.java:1121)
[java] at javax.swing.JFrame.processWindowEvent
(JFrame.java:266)
[java] at java.awt.Window.processEvent(Window.java:1079)
[java] at java.awt.Component.dispatchEventImpl
(Component.java:3615)
[java] at java.awt.Container.dispatchEventImpl
(Container.java:1627)
[java] at java.awt.Window.dispatchEventImpl
(Window.java:1606)
[java] at java.awt.Component.dispatchEvent
(Component.java:3477)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:456)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:145)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:137)
[java] at java.awt.EventDispatchThread.run
(EventDispatchThread.java:100
)
[java] java.lang.NullPointerException
[java] at edu.utdallas.bxm018100.team.Team.update(Unknown
Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent.animate(Unknow
n Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent$1.run(Unknown
Source)
[java] at java.awt.event.InvocationEvent.dispatch
(InvocationEvent.java:
171)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:454)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:141)
[java] at java.awt.Dialog$1.run(Dialog.java:540)
[java] at java.awt.Dialog.show(Dialog.java:561)
[java] at javax.swing.JOptionPane.showOptionDialog
(JOptionPane.java:840
)
[java] at
com.croftsoft.core.gui.LifecycleWindowListener.windowClosing(
Unknown Source)
[java] at java.awt.Window.processWindowEvent
(Window.java:1121)
[java] at javax.swing.JFrame.processWindowEvent
(JFrame.java:266)
[java] at java.awt.Window.processEvent(Window.java:1079)
[java] at java.awt.Component.dispatchEventImpl
(Component.java:3615)
[java] at java.awt.Container.dispatchEventImpl
(Container.java:1627)
[java] at java.awt.Window.dispatchEventImpl
(Window.java:1606)
[java] at java.awt.Component.dispatchEvent
(Component.java:3477)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:456)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:145)
[java] at java.awt.EventDispatchThread.pumpEvents
(EventDispatchThread.j
ava:137)
[java] at java.awt.EventDispatchThread.run
(EventDispatchThread.java:100
)
[java] java.lang.NullPointerException
[java] at edu.utdallas.bxm018100.team.Team.update(Unknown
Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent.animate(Unknow
n Source)
[java] at
com.croftsoft.core.animation.AnimatedComponent$1.run(Unknown
Source)
[java] at java.awt.event.InvocationEvent.dispatch
(InvocationEvent.java:
171)
[java] at java.awt.EventQueue.dispatchEvent
(EventQueue.java:454)
[java] at
java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDi
spatchThread.java:201)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:151)
[java] at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDisp
atchThread.java:141)
what might I be doing wrong?
Students:
If you would like for me to look at your team projects a week or so
before they are due to confirm that they meet requirements, I would be
happy to do so. This could help prevent any unpleasant surprises on
the due date. You can continue to work on your games after I have
reviewed your pre-release.
Remember to develop your projects incrementally.
I think you only need to concern yourself with what's between the
classpath tags and the <include...JnlpServicesImpl.java"/>
hope this helps
<target name="final" depends="final_prep">
<javac srcdir="${src_dir}" destdir="${tmp_dir}">
<include name="com/rubenlopez/ex6/BasicsExample.java"/>
<classpath>
<pathelement location="${java_web_start_jar}"/>
</classpath>
<include
name="com/croftsoft/core/jnlp/JnlpServicesImpl.java"/>
</javac>
<jar
basedir="${tmp_dir}"
destfile="${arc_dir}/final.jar"
manifest="${res_dir}/ex6/manifest.txt"
update="false"/>
<delete dir="${tmp_dir}"/>
<java fork="true" jar="${arc_dir}/final.jar"/>
</target>
I, for the life of me, cannot remember the line I need to insert into
my compile target to fix the problem with Java Web Start on the dodger
applet. Could anyone post that line up here before class tomorrow so
I can get this thing working?
--- In croftsoft-ajgp@yahoogroups.com, David Wallace Croft
<david@c...> wrote:
> AJGP Book Team:
>
>
> Chapter 6 is now ready. Minor changes.
This message was sent to the wrong address. I'm wrapping up the 4th
draft of my book and communicating with my editors. We're hoping to
go to print in December.
AJGP Book Team:
Chapter 6 is now ready. Minor changes.
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home
Howdy,
Mary-Margaret.com is proud to be a sponsor of "How to Break Into The Game
Industry" on November 15 from 8:30am to 3:00pm at the JJ Pickle Research Campus
in Austin. The event is designed to help professionals and students gain a
career in the game industry. Professionals will learn how their experience and
transferable skills can gain them rapid entry into this industry. Students will
find out how to build a professional road map to a career in the game industry.
Attendees are invited to bring their resumes.
The comprehensive program will provide an overview of the industry, identify
technology trends and requirements as well as the qualifications and skill-sets
that are in demand. Attendees will have the opportunity to speak with industry
insiders, hiring managers from local game companies and faculty from The
Guildhall at SMU as well as network and meet with industry veterans. I'll be
there as well. Attendees will learn what employers are looking for now and in
the future. Full details of the program can be found at
http://www.austingame.com/breakin/
The cost is $35 in advance or $40 at the door. Registration is available online
at
http://www.austingame.com/nov15/register.html
(If you're an industry veteran, pass this along! I know you know folks who would
enjoy this conference day. If you'd like to attend, get in touch - there's no
charge for industry veterans who want to come and share their knowledge.)
Hope to see you there!!
Cheers,
Robin
Robin Chenoweth McShaffry
Mary-Margaret.com Recruiting and Business Services
Specializing in Entertainment Software
toll free voice: 877.662.3777
toll free fax: 877.662.3888
robin@...
www.mary-margaret.com
Hey David,
This is Ruben, went by your office at 12:25, you were'nt in. I'll
be in the lab until 1:45. If you get this message maybe you could
swing by so I can ask you some questions.
If not I'll swing back around at 3:20 or so.
Ruben
I've been busy and haven't taken the time to drop the
course yet. You'll need to find a replacement in your
group.
I'm not learning anything in class so I decided to
teach myself.
--- mogleypimp <naip@...> wrote:
> E-mail me at naip@... so I can add you to
> the E-group
> or call 4692352239
>
>
__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree
--- In croftsoft-ajgp@yahoogroups.com, "David Wallace Croft"
<david@c...> wrote:
> I'm not sure. You might want to try using my CursorPainter class.
I should have said CursorAnimator.
--- In croftsoft-ajgp@yahoogroups.com, "Tania" <tms016200@u...> wrote:
> I have an image that is "attached" to my cursor (hand_cursor) and for
> some reason I can't get it to paint it unless i keep the mouse still for
I'm not sure. You might want to try using my CursorPainter class.
I have an image that is "attached" to my cursor (hand_cursor) and for some reason I can't get it to paint it unless i keep the mouse still for a while, it'll paint in the right place, but as soon as i move its gone again. I'm not sure whats going on either, becasue the text etc painted right before and right after are showing up fine, and none of which have overlapping coordinates.
Any ideas?
Tania
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.532 / Virus Database: 326 - Release Date: 10/27/2003
Tania wrote:
> Are we suppose to have gotten our grades back from the last assignment?
If you turned it in on time, you got an A. If you turned it in one week
late, you got a B.
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home
Fultz Jason wrote:
> I'm afraid I do not understand what you mean by 'load the images from a
> JAR file instead of the file system'.
The filename you were using is
"c:/fultz/res/arts3376/persistance/images/ship_straight.bmp". This
indicates that you are attempting to load the image directly from the C:
drive instead fo the JAR file. Please remind me to go into more detail
in class tonight.
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home
I'm afraid I do not understand what you mean by 'load the images from a
JAR file instead of the file system'.
Thanks,
Jason...
--- David Wallace Croft <david.croft@...> wrote:
> Fultz Jason wrote:
> > private static final String SHIP_SPRITE_FILENAME =
> > "c:/fultz/res/arts3376/persistance/images/ship_straight.bmp";
>
>
> Load your images from a JAR file instead of the file system.
>
>
> > public void update ( JComponent component )
> > {
> > URL imageURL = classLoader.getResource ( SHIP_SPRITE_FILENAME
> );
>
>
> Load your images in the init() method instead of the update() method.
>
>
> --
> David Wallace Croft
> (972) 883-2205 office
> (214) 731-9284 home
>
>
__________________________________
Do you Yahoo!?
Exclusive Video Premiere - Britney Spears
http://launch.yahoo.com/promos/britneyspears/
kevin@... wrote:
> https://order.1and1.com/xml/static/Home;jsessionid=B3768FF0E625174E8CC30C492
> 97A3551.TC61b?__frame=_top
>
> A friend of mine pointed me to this webhost that is running a deal where
> they give you a free 3 years of webhosting... I don't know if there is a
> catch yet, but I went ahead and signed up. The Terms of Service seem
> normal, I didn't catch anything evil and soul stealing in my readthrough.
If anyone tries this service, please share your experience.
--
David Wallace Croft, President, CroftSoft Inc
Author of "Advanced Java Game Programming"
http://www.croftsoft.com/library/books/ajgp/
(972) 883-2205 office, (214) 731-9284 home