Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 3333 3334 [3335] 3336 3337 ... 3345

Author Topic: Things that made you RRRRRRAAAAGGGGEEEE today: Trust-o-nomics Edition  (Read 3687276 times)

Rolan7

  • Bay Watcher
  • [GUE'VESA][BONECARN]
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50010 on: February 04, 2015, 09:02:00 pm »

That's due to Javascript's... "forgiving" error handling.  As in, when there's an error, it has a tendency to happily and silently fail.  It's rather maddening.  Under some circumstance it will deign to tell you, but I don't what they are.  Even wrapping the section in a
Code: [Select]
try{
// code
}catch(e){alert(e);}
isn't working today.

However, the error seems to be that flowerType isn't defined in that displayRequest function.  I think you mean to use "flower" instead.  And you should define "flower" using
document.FlowerForm.flower.value;
instead of
document.FlowerForm.flowerPicked.value;
Logged
She/they
No justice: no peace.
Quote from: Fallen London, one Unthinkable Hope
This one didn't want to be who they was. On the Surface – it was a dull, unconsidered sadness. But everything changed. Which implied everything could change.

highmax28

  • Bay Watcher
  • I think this is what they call a tantrum spiral...
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50011 on: February 04, 2015, 09:07:26 pm »

Did as you told me, and this is what it looks like still.

(some days, I wish this had the error reports that python gave me)

Code: [Select]
<html>
<head>
<!-- Program Name: flowerForm.html
Purpose: To create a form with the user's name and a choice of flower
Author: Specner Durette
Date last modified: February 3rd, 2015
-->
<script type="text/javascript">
//Variables
var flower = document.FlowerForm.flower.value;
var BR = "<br />";
var PA = "<p />";
var NL = "\n";

//Change the flower value when a radio button is pressed
function setType(flowerType) {
flower=flowerType;
}

function displayRequest() {
var fullName = document.FlowerForm.fullName.value;
var flower = document.FlowerForm.flower.value;

document.FlowerForm.FormRequest.value =
"Thank you for requesting information!" + NL + NL
+ "Name: " + fullName + NL
+ "Flower Inquiry About: " + flower
}
</script>
</head>
<body>
<h2>Flower Information Form</h2>
<form name="FlowerForm" action="">
<strong>Enter Your Full Name:</strong><br />
<input type="text" name="fullName" value="Full Name" size="40"><br />
<br />
<strong>Select the flower you wish to make an inquiry about</strong><br />
<input type="radio" name="flowerRadio" value="Roses" onclick="setType(flower)" />Roses<br />
<input type="radio" name="flowerRadio" value="Carnations" onclick="setType(flower)" />Carnations<br />
<input type="radio" name="flowerRadio" value="Daisies" onclick="setType(flower)" />Daisies<br />

<input type="button" name="resquestButton" value = "Display Request" onclick="displayRequest()" /><p />
<textarea name ="FormRequest" readonly="true" value = "" rows="8" cols="50"></textarea><br />
</form>
</body>
</html>

its still not working when I click it
Logged
just shot him with a balistic arrow, i think he will get stuned from that >.>

"Guardian" and Sigfriend Of Necrothreat
Jee wilikers, I think Highmax is near invulnerable, must have been dunked in the river styx like achilles was.
Just make sure he wears a boot.

Rolan7

  • Bay Watcher
  • [GUE'VESA][BONECARN]
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50012 on: February 04, 2015, 09:36:31 pm »

You renamed the radio buttons to flowerRadio, which is more readable so good, but then you need to update that name in:
var flower = document.FlowerForm.flower.value;
to
var flower = document.FlowerForm.flowerRadio.value;

Sorry for the derail, best to take this to the coding thread yeah.  I'll start checking there.
Logged
She/they
No justice: no peace.
Quote from: Fallen London, one Unthinkable Hope
This one didn't want to be who they was. On the Surface – it was a dull, unconsidered sadness. But everything changed. Which implied everything could change.

Yoink

  • Bay Watcher
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50013 on: February 05, 2015, 01:21:13 am »

Aaaagggh. I'm sure there was more stuff I needed to do using an actual computer, but I can't remember what.
Logged
Booze is Life for Yoink

To deprive him of Drink is to steal divinity from God.
you need to reconsider your life
If there's any cause worth dying for, it's memes.

Itnetlolor

  • Bay Watcher
    • View Profile
    • Steam ID
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50014 on: February 05, 2015, 02:14:26 am »

Parents.
I was gonna type a long rant, but it basically boils down to this:
Can you please stop acting like little children, complaining about everything? Have the tiniest shred of patience? Stop calling someone an egoist for not doing what you want, when you want, because you want? Stop contradicting yourselves?
The preferred solution is calling them a "meanie" or a "stupid-head". That'll be more effective. And if it's not effective enough, blow raspberries at them for not following your demands.

Yoink

  • Bay Watcher
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50015 on: February 05, 2015, 02:54:33 am »

Bloody Channel Seven.
I've been watching far more TV lately, and they have a lot of the best shows... but also the worst ads.

Probably the worst offenders are the ads for some special "news" show about that hostage situation in Sydney a month or two ago. They're doing their best to both cash in on the incident and inspire panic in the populace. ::)
Logged
Booze is Life for Yoink

To deprive him of Drink is to steal divinity from God.
you need to reconsider your life
If there's any cause worth dying for, it's memes.

Helgoland

  • Bay Watcher
  • No man is an island.
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50016 on: February 05, 2015, 07:24:49 am »

Aaaagggh. I'm sure there was more stuff I needed to do using an actual computer, but I can't remember what.
Porn?
Logged
The Bay12 postcard club
Arguably he's already a progressive, just one in the style of an enlightened Kaiser.
I'm going to do the smart thing here and disengage. This isn't a hill I paticularly care to die on.

Reelya

  • Bay Watcher
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50017 on: February 05, 2015, 07:44:04 am »

snip

textarea text is between the tags, not in the "value" field. Go test setting "hello world" as the default textarea text. It only works when this is between the open and close tokens. So you'd need to at least set the innerHTML for the textarea, value won't work. You're assignment is also causing a crash (failed on a breakpoint after the assignment), let me narrow that down.

Working version:

Spoiler (click to show/hide)
« Last Edit: February 05, 2015, 08:11:35 am by Reelya »
Logged

Yoink

  • Bay Watcher
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50018 on: February 05, 2015, 08:08:55 am »

WE HAVE A THREAD FOR PROGRAMMING HELP
Logged
Booze is Life for Yoink

To deprive him of Drink is to steal divinity from God.
you need to reconsider your life
If there's any cause worth dying for, it's memes.

Reelya

  • Bay Watcher
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50019 on: February 05, 2015, 08:10:30 am »

I fixed the thing so they can stop posting now.

Akura

  • Bay Watcher
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50020 on: February 05, 2015, 09:03:40 am »

Ragey day yesterday. Too much work, and I had to spend all day seeing my ex, who for some reason spent all day sitting in a direct line of sight so I had to look at her everytime I left the back kitchen or dish room. Most of the time, she was staring in my direction, so it might hyave been intentional. Bitch.

... do you even count as a dependent, Ak? Aren't you feeding yourself, paying rent, etc.?  If she's not actually providing for at least a certain portion of your living expenses*, you kinda' don't count.
If that's the case, I ought to declare them dependants. ::)
Logged
Quote
They asked me how well I understood theoretical physics. I told them I had a theoretical degree in physics. They said welcome aboard.
... Yes, the hugs are for everyone.  No stabbing, though.  Just hugs.

Baffler

  • Bay Watcher
  • Caveat Lector.
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50021 on: February 05, 2015, 09:18:12 am »

It does look kinda badass, but having copious amounts of ice in one's beard is not a pleasant experience.
Logged
Quote from: Helgoland
Even if you found a suitable opening, I doubt it would prove all too satisfying. And it might leave some nasty wounds, depending on the moral high ground's geology.
Location subject to periodic change.
Baffler likes silver, walnut trees, the color green, tanzanite, and dogs for their loyalty. When possible he prefers to consume beef, iced tea, and cornbread. He absolutely detests ticks.

XXXXYYYY

  • Bay Watcher
  • Been a long time.
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50022 on: February 05, 2015, 09:28:25 am »

The keypad for my garage, the only way for me to get into my house, broke today.
I don't have a phone or key (now rectified).
I was standing outside for 3 1/2 hours waiting for someone to come home to let me in.

I wanted a nice, calming day.

RRRAAAAAGGGEEEEEE!

Why do you enter the house through the garage?
All the doors are locked, barring the one from the garage into the house. I had the key to the front door, but then my parents gave that to my sister, so I just use the garage. Unless the keypad is not working.
Logged
Oooooooo. I know. ClF3. That should be a fun surprise.

Descan

  • Bay Watcher
  • [HEADING INTENSIFIES]
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50023 on: February 05, 2015, 10:45:45 am »

... You can get more keys made, they're like 3 bucks per, if that.
Logged
Quote from: SalmonGod
Your innocent viking escapades for canadian social justice and immortality make my flagellum wiggle, too.
Quote from: Myroc
Descan confirmed for antichrist.
Quote from: LeoLeonardoIII
I wonder if any of us don't love Descan.

Rolan7

  • Bay Watcher
  • [GUE'VESA][BONECARN]
    • View Profile
Re: Things that made you RRRRRRAAAAGGGGEEEE today: DVI-DUMBASS Edition
« Reply #50024 on: February 05, 2015, 11:13:37 am »

I fixed the thing so they can stop posting now.
Setting the value field does work to change the textarea text, though.  The problem was they weren't getting referring to flowerRadio as flower when trying to fetch the value...  Of course, you fixed that too so yeah.

Rage, rage... Nothing really rage worthy.  That's probably why I've been watching debate videos on youtube, trying to get engaged in issues again.
Logged
She/they
No justice: no peace.
Quote from: Fallen London, one Unthinkable Hope
This one didn't want to be who they was. On the Surface – it was a dull, unconsidered sadness. But everything changed. Which implied everything could change.
Pages: 1 ... 3333 3334 [3335] 3336 3337 ... 3345