Jump to content

Announcing our new website

To find out the latest about our new website, visit Game Dev Unlimited

Nisage

Member Since 21 Sep 2008
Offline Last Active Nov 15 2011 05:13 PM
*****

Posts I've Made

In Topic: Mikuri's intro

22 June 2011 - 10:43 PM

I think I'm more late then you Kiriashi.....

Greetings and welcome to RMXPUnlimited.

In Topic: RMVX Samurai Addon-Pack 50% Off

15 June 2011 - 07:38 PM

There's not even a lot in here, unless if you count the Face Graphics. There's some decent Animations (11 total), like one that could be a Mach Punch from Pokemon but toned down a bit (only Fist Animation I know). But I do like the Grizzly Bear Battle Graphic, with and without the glowing yellow eyes. Plus, it's Samurais, they're awesome.

In Topic: WASSUP WASSUP

27 May 2011 - 04:00 PM

Greetings and salutations.

View PostMr.Fiasco, on 27 May 2011 - 05:09 AM, said:

Yea we did is this forum dead or something?
We're not dead, we're undead :P

View PostMarked, on 27 May 2011 - 05:14 AM, said:

I also met you on chat :) Welcome to the forums. If I had a dollar for every time I heard that ;)
Not going to comment on that joke :)

In Topic: Calculator

27 May 2011 - 03:54 PM

View PostJon Bon, on 27 May 2011 - 12:16 PM, said:

He he, I try to only ever post if its helpful or useful.



No problem. I don't want to hijack the thread and wasn't originally going to post again, but I remembered the other really good tip for Google searching.
You can also add a minus sign then a word at the end of your search to omit results with that word.
Search: Html script calculator - download
The above search would search for it but omit any site that has the word download for a search parameter. This is an excellent way to search for common worded things.

-Cheers, and good luck on your homework.
Thanks, I need some good luck right now ^^'.

A minus? Well if it works for a plus, then why not a minus. I'll have to try that on the next google search, arigato (thank you).


I did have a question on the homework, so while I was asking him I decided to show him the calculator. He liked it, but he did change it a bit, ok he wrote a whole new script for it.
Spoiler
He told me why this was easier, but I plum forgot.

I do have a new question. How do you align check-boxes and radio buttons with the style setup? I can put them in, but they won't align correctly on the right.

Right now they're like this.....
Posted Image
But I need them to be align on top of each other like a list and on the right side. Hopefully having Caramel in that empty spot on the right of Toppings. I have more questions, but let's deal with one at as time.

Code for the Forum.
				<!-- chkToppings -->
				<label for="chkToppings"> Toppings: </label>
					<div class="LeftAlign">
						<input type="checkbox" name="chkToppings" id="chkToppings" value="caramel" /> Caramel
						<input type="checkbox" name="chkToppings" id="chkToppings" value="hotfudge" /> Hot Fudge
						<input type="checkbox" name="chkToppings" id="chkToppings" value="sprinkles" /> Sprinkles <br />
					</div>
Script for Checkbox.
			#frmCombos input[type=checkbox]
			{
				width: 25px;
				margin-top: 5px;
				margin-bottom: 5px;
			}
Script for Label (like Toppings).
			#frmCombos label
			{
				display: inline-block;		/* Otherwise ignores width */
				width: 170px;

			    text-align: left;
				
				border: solid 1px red; 
			}
Maybe I set up something incorrectly, I'm not really sure.

In Topic: Calculator

26 May 2011 - 02:14 PM

Sleep is important.

I never hear of it, but I'll take a look at it.

Quote

oh and also, it will be real obvious if you pasted in code you got from websites. Is that ok? I mean, finding a solution for this by yourself requires an expert, so surely that wouldn't be the case.

Well, I think as long as I understand how it works (which I do a bit), he'll count it, I'll ask later just in case.

Back to Notepad++!