I think I'm more late then you Kiriashi.....
Greetings and welcome to RMXPUnlimited.
Community Stats
-
Group
Member
- Active Posts 1,560 ( per day)
- Profile Views 11,461
- Member Title Toonami Fan For Life
- Age 23 years old
- Birthday April 27, 1989
-
Gender
Male
-
Location
Here and there.
-
Interests
Anime, Manga, video games (mostly RPGs), cartoons, drawing a little bit, origami, making RPGs now thanks to XP and VX.
RPG Maker
-
RPG Maker Level
N/A
-
RPG Maker
RPG Maker XP
-
Class Title
Eventer
Engines
-
RPG Maker VX
Yes
Contact Information
-
MSN
This is for friends only.
-
Website URL
http://
-
Yahoo
Rarely use, but have it.
30
Excellent
Latest Visitors
Posts I've Made
In Topic: Mikuri's intro
22 June 2011 - 10:43 PM
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.
We're not dead, we're undead 
Not going to comment on that joke
Mr.Fiasco, on 27 May 2011 - 05:09 AM, said:
Yea we did is this forum dead or something?
Marked, 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 
In Topic: Calculator
27 May 2011 - 03:54 PM
Jon 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.
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.
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.
function btnCalculateTotal_Click()
{
var sngValue1 = 0;
var intOperator = 0;
var sngValue2 = 0;
var sngTotal = 0;
// Get values from form
sngValue1 = document.frmSimpleCalculator.txtValue1.value;
intOperator = document.frmSimpleCalculator.ddlOperator.value;
sngValue2 = document.frmSimpleCalculator.txtValue2.value;
// Convert from string to number
sngValue1 = parseFloat( sngValue1 );
intOperator = parseInt( intOperator );
sngValue2 = parseFloat( sngValue2 );
// Do math
switch( intOperator )
{
// +
case 0: sngTotal = sngValue1 + sngValue2;
break;
// -
case 1: sngTotal = sngValue1 - sngValue2;
break;
// *
case 2: sngTotal = sngValue1 * sngValue2;
break;
// divide
case 3: if( sngValue2 == 0 )
{
alert( "Only Chuck Norris can divide by 0" );
}
else
{
sngTotal = sngValue1 / sngValue2;
}
break;
}
// Update form
document.frmSimpleCalculator.txtTotal.value = sngTotal;
}
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.....

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.
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++!
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++!
- RMXP Unlimited
- → Viewing Profile: Posts: Nisage




Find content
