Be a Supporter!
Response to: explorer.exe Posted November 27th, 2007 in General

Have you recently modified it?

Response to: Windows Vista Posted November 26th, 2007 in General

Do I remember the topic being about Macs, and why they are better/worse than Vista? I mean, seriously, go post somewhere else. Anyway, in my opinion Vista is about the same as XP, except for the fact that people aren't used to it. If it took up less RAM, I would use it. It is a good choice for high-end computers.

Also, to the person that said that games are roughly 1 GB, Microsoft Flight Simulator is 8GB - 15GB.
Response to: How many Commandments do you follow Posted October 29th, 2007 in General

At 10/29/07 09:04 PM, Smokinggun64 wrote: I've broken all of them at least once.

Unless you haven't murdered someone before.

Response to: What is your religon? Posted October 22nd, 2007 in General

I am an Atheist. I hate how people assume I am immoral and not a good person just because I don't believe in a higher being.

Response to: dotdnr domain regestrations Posted September 26th, 2007 in Programming

Hey, thanks! Well, not to sound like I can't do anything for myself, but I'm having trouble finding a website hosting service that is not a WYSIWYG editor. Do you know any free hosting services?

dotdnr domain regestrations Posted September 26th, 2007 in Programming

I've registered for a domain name at DotDNR.com, and I'm a little confused on what it actually does. From what I understand, it parks a URL in that domain space for me so it can be used. What I want to know is how I can actually put my HTML/PHP into that site.

Response to: Help With Flash Cs3 Posted September 11th, 2007 in Game Development

Thanks! That's much better!

Help With Flash Cs3 Posted September 10th, 2007 in Game Development

When I had Flash 8, whenever I drew an object with the brush tool, it automatically came up broken apart. But with CS3, it makes the object a symbol, which means you can't add on to objects and fill it in with the brush tool without manually going to Modify->Break Apart for everything I draw. I checked the preferences, and I can't find anything. Is there a way to make Flash so it automatically Breaks Apart the things you draw?

Response to: What Grade Are You In Next Year? Posted June 11th, 2007 in General

It's been six pages, and I'm the first one to say that I'm going into 7th grade.

Response to: PHP support Posted April 16th, 2007 in Programming

I know, I selected the domain "localhost" during installation. I just saved it on the desktop.

Response to: PHP support Posted April 15th, 2007 in Programming

No, that's just how Opera displays local files in the address bar. Are there any alternatave methods instead of just running PHP locally, because I really want to get it to work.

Response to: this dizzler thing Posted April 15th, 2007 in Programming

I think this belongs in the flash forum. But, if you want to get really complicated, you could just put his in the head section of your website containing the flash:

<script type="text/javascript">
function functionname(){
document.write('<embed src="direct link to music or flash">')
}
</script>

and put this in your actions panel where you want the music to go:

getUrl('functionname()');

I'm not sure if it'll work though.

PHP support Posted April 15th, 2007 in Programming

PHP doesn't work on my computer, even though I have an apache server enabled.
Here is a screenshot.


I have a problem with actionscript reguarding movement. Whenever I press right, it moves left a little bit at a time. When I press left, it move left gradually getting faster.

Here is my code:
---------------------------------------------
---

onClipEvent(load){
vy = (Math.sin(Math.PI/180));
vx = (Math.cos(Math.PI/180));
var jul_bounce:Boolean= false;
var jul_speed:Number = 0;
}
onClipEvent (enterFrame) {
if(this.hitTest(_root.jul_ground)){
jul_bounce = true;
}
if(jul_bounce == false){
this._x += vx;
this._y += vy;
vy+=1;
}
if(Key.isDown(Key.RIGHT)){
speed+=1;
this._x-=speed;
}
if(Key.isDown(Key.LEFT)){
speed-=1;
this._x-=-speed;
}
if(!Key.isDown(Key.LEFT) || !Key.isDown(Key.LEFT)){
speed = 0;
}
}

running ASP Posted April 13th, 2007 in Programming

How do I run ASP on Windows XP Home Edition?

C++ wornt compile >:( (n00b help) Posted March 26th, 2007 in Programming

void main()
{
printf("/nHello World!/n");
}

I selected Execute -> Execute and Run, but it comes up with an error. "The system cannot find the file specified," although I see it right on my desktop >:(.

How do I compile it correctly?

I'm using Dev-C++ 4.9.9.2.

Response to: Html Frameset Problem Posted March 13th, 2007 in Programming

It's tk, not tks.

And here's a shortcut.

http://www.freewebs.com/bobnet

Response to: Html Frameset Problem Posted March 13th, 2007 in Programming

Sorry for the double post, but I'm using IE7, and freewebs doesn't display the website right. Could you check out my website and see if it has a frame now?

http://www.bobworld.tk

Response to: Html Frameset Problem Posted March 13th, 2007 in Programming

Man, I'm dunb!

Thanks!

Html Frameset Problem Posted March 13th, 2007 in Programming

It won't display the frame! What's wrong with the code?

----------------------------

<frameset cols="20%,80%">
<frame src="http://www.freewebs.com/bobnet/BOBSITE_f avoriteSites.html.html">
</frameset>

Response to: Html - Table Formatting Help Posted March 12th, 2007 in Programming

Sorry for the double post, but here's a resized screenshot.

Html - Table Formatting Help

Html - Table Formatting Help Posted March 12th, 2007 in Programming

On the website I'm making, I have a problem with tables. I'm trying to make a navbar, center column, and a "Favorite links" section. The problem is that My three tables on the page appear in different rows. Is there any way I can get them on the same row?

Publishing Html Documents Posted March 9th, 2007 in Programming

Does any of you know a good free host that you can publish an HTML document on. I don't care if it doesn't let you have your own domain name.

Response to: Centering Images In Html Posted March 8th, 2007 in Programming

God, why didn't I think of that!

Centering Images In Html Posted March 8th, 2007 in Programming

I need help with centering images in HTML.

Copyrighted songs in Flash Posted February 28th, 2007 in General

I have a question. If I use a copyrighted song in Flash, and I recieve money for it, will that be violating the law even though my Flash isn't even based off of the song? I'm just talking like an armorgames contest or a monthly newgrounds prize.

Response to: Running problem (Actionscript) Posted February 27th, 2007 in Game Development

I'm sorry, but BUMP.

Running problem (Actionscript) Posted February 26th, 2007 in Game Development

I have this character named "bob". I want him to go a certain distance and play a certain animation when you hold the right key down. I gave a specific command (_root.bob.gotoAndStop(3);) and it won't follow.

Here is the code (Not finished, just stuck on one part):
---------------------------------------------
----------

onLoad = function(){
var isJumping:Boolean = false;
}
onEnterFrame = function(){
if(Key.isDown(Key.SPACE)){
isJumping = true;
}
if(isJumping == true){
_root.bob.gotoAndStop(2);
}else{
_root.bob.gotoAndStop(1);
}
if(_root.bob.kick._currentFrame == 18 || _root.bob.kick._currentFrame == 1){
isJumping = false;
}
if(Key.isDown(Key.RIGHT)){
_root.bob._x-=-5;
_root.bob.gotoAndStop(3);

}
if(Key.isDown(Key.LEFT)){
_root.bob._x-=5;
}
}

Response to: ActiveX controls Posted February 10th, 2007 in Programming

Sorry for the double-post, but it looks like this.

Response to: ActiveX controls Posted February 10th, 2007 in Programming

Oops, I misread it, it says "Scripts or ActiveX contols," man, I wish I can edit posts here.