Welcome, Guest.

Author Topic: Holy Fuck I need help with flash  (Read 1945 times)

0 Members and 1 Guest are viewing this topic.

Offline Pterrydactyl

  • Floridian Tribal Elder
  • Funktuar
  • *****
  • Posts: 4828
  • I'm Watching You...
  • Awards Four years of Random Insanity The Disorder War Veteran of the Equilibrium War Three years of Random Insanity RIAer has built a Strategic Defense Initiative Has been Head of Recruitment RIAer is armed with nuclear weaponry RIAer has been blown to ZI in defense of RIA Veteran of the Dave War Two Years of Random Insanity Veteran of the Grudge War (TOP/NpO) Veteran of the Karma War RIAer has been hit with nuclear weapons in defense of RIA Has been an officer or SiC of a bRIgade Has recruited a member into the RIA One year of Random Insanity Veteran of the Illuminati War Veteran of the War of the Coalition Has been Head of Internal Affairs Was elected to be Captain Planet Has been Head of Military Operations
  • war boner is 6.76" long.
  • has 146 llamas
    • View Profile
  • Nation: Pterrydactyl
  • Ruler: Pterrydactyl
Holy Fuck I need help with flash
« Reply #20 on: November 06, 2008, 10:38:54 pm »
I dunno.


Next time, declare your variables and make it a function instead of the craziness it is right now.  That will save time debugging and give me more info to help you with.


BTW, CS4 FTW!
One Vision, One Purpose.

Is Dat My IMDB???



How Mogar talks on skype

Quote
<JeffGoldblum[TheRIA]>: Let's stop calling it trolling
<JeffGoldblum[TheRIA]>: Let's call it what it really is, okay?
<JeffGoldblum[TheRIA]>: Art

Quote from: Leo
Some days I think Mia is totally wrong and that I am completely normal. Today is one of those days.

Quote from: Dontasemebro
I just got off the phone with my ex and I know that no females are reasonable

Quote from: Abe Simpson
Leo
I think you are the most annoying poster on this site, honestly.
You are like two llamavores with twice as many animals fucking.
Your posts make me reconsider how long I've been here.
I honestly wonder if you are actually Chris Tucker.

Offline KingRanter

  • RItiree - burritos
  • RIctuar
  • ***
  • Posts: 1681
    • View Profile
Holy Fuck I need help with flash
« Reply #21 on: November 07, 2008, 06:09:42 pm »
I ended up using what i had before. it showed the absolute value of numbers and if there were letters, the stupid letters showed up. >_>

Offline KingRanter

  • RItiree - burritos
  • RIctuar
  • ***
  • Posts: 1681
    • View Profile
Holy Fuck I need help with flash
« Reply #22 on: November 07, 2008, 06:10:55 pm »
o btw, i HAD CS4. but when i opened it up today, it was really Fucking gay. outputting shit constantly that seemed useless. so i uninstalled it. >_>

im fine with MX. i only need it for school anyway

Offline Pterrydactyl

  • Floridian Tribal Elder
  • Funktuar
  • *****
  • Posts: 4828
  • I'm Watching You...
  • Awards Four years of Random Insanity The Disorder War Veteran of the Equilibrium War Three years of Random Insanity RIAer has built a Strategic Defense Initiative Has been Head of Recruitment RIAer is armed with nuclear weaponry RIAer has been blown to ZI in defense of RIA Veteran of the Dave War Two Years of Random Insanity Veteran of the Grudge War (TOP/NpO) Veteran of the Karma War RIAer has been hit with nuclear weapons in defense of RIA Has been an officer or SiC of a bRIgade Has recruited a member into the RIA One year of Random Insanity Veteran of the Illuminati War Veteran of the War of the Coalition Has been Head of Internal Affairs Was elected to be Captain Planet Has been Head of Military Operations
  • war boner is 6.76" long.
  • has 146 llamas
    • View Profile
  • Nation: Pterrydactyl
  • Ruler: Pterrydactyl
Holy Fuck I need help with flash
« Reply #23 on: December 01, 2008, 07:12:33 pm »
WIN


import flash.events.TextEvent;
input.addEventListener(TextEvent.TEXT_INPUT, textInput);
input.restrict = "0-9";
function textInput(e:TextEvent)
{
   if (parseInt(input.text) > 0)
   {
      output.text = String(input.text);
   }
   else if (parseInt(input.text) == 0)
   {
      output.text = String(input.text);
   }
   else if (parseInt(input.text) < 0)
   {
      output.text = String(parseInt(input.text) / -1);
   }
   else
   {
      output.text = "NaN";
   }
}

One Vision, One Purpose.

Is Dat My IMDB???



How Mogar talks on skype

Quote
<JeffGoldblum[TheRIA]>: Let's stop calling it trolling
<JeffGoldblum[TheRIA]>: Let's call it what it really is, okay?
<JeffGoldblum[TheRIA]>: Art

Quote from: Leo
Some days I think Mia is totally wrong and that I am completely normal. Today is one of those days.

Quote from: Dontasemebro
I just got off the phone with my ex and I know that no females are reasonable

Quote from: Abe Simpson
Leo
I think you are the most annoying poster on this site, honestly.
You are like two llamavores with twice as many animals fucking.
Your posts make me reconsider how long I've been here.
I honestly wonder if you are actually Chris Tucker.

Offline Pterrydactyl

  • Floridian Tribal Elder
  • Funktuar
  • *****
  • Posts: 4828
  • I'm Watching You...
  • Awards Four years of Random Insanity The Disorder War Veteran of the Equilibrium War Three years of Random Insanity RIAer has built a Strategic Defense Initiative Has been Head of Recruitment RIAer is armed with nuclear weaponry RIAer has been blown to ZI in defense of RIA Veteran of the Dave War Two Years of Random Insanity Veteran of the Grudge War (TOP/NpO) Veteran of the Karma War RIAer has been hit with nuclear weapons in defense of RIA Has been an officer or SiC of a bRIgade Has recruited a member into the RIA One year of Random Insanity Veteran of the Illuminati War Veteran of the War of the Coalition Has been Head of Internal Affairs Was elected to be Captain Planet Has been Head of Military Operations
  • war boner is 6.76" long.
  • has 146 llamas
    • View Profile
  • Nation: Pterrydactyl
  • Ruler: Pterrydactyl
Holy Fuck I need help with flash
« Reply #24 on: December 01, 2008, 07:12:36 pm »
WIN


[div class=\'codetop\']CODE[div class=\'codemain\' style=\'height:200px;white-space:pre;overflow:auto\']import flash.events.TextEvent;
input.addEventListener(TextEvent.TEXT_INPUT, textInput);
input.restrict = "0-9";
function textInput(e:TextEvent)
{
   if (parseInt(input.text) > 0)
   {
      output.text = String(input.text);
   }
   else if (parseInt(input.text) == 0)
   {
      output.text = String(input.text);
   }
   else if (parseInt(input.text) < 0)
   {
      output.text = String(parseInt(input.text) / -1);
   }
   else
   {
      output.text = "NaN";
   }
}
« Last Edit: December 01, 2008, 07:13:37 pm by Apophis775 »
One Vision, One Purpose.

Is Dat My IMDB???



How Mogar talks on skype

Quote
<JeffGoldblum[TheRIA]>: Let's stop calling it trolling
<JeffGoldblum[TheRIA]>: Let's call it what it really is, okay?
<JeffGoldblum[TheRIA]>: Art

Quote from: Leo
Some days I think Mia is totally wrong and that I am completely normal. Today is one of those days.

Quote from: Dontasemebro
I just got off the phone with my ex and I know that no females are reasonable

Quote from: Abe Simpson
Leo
I think you are the most annoying poster on this site, honestly.
You are like two llamavores with twice as many animals fucking.
Your posts make me reconsider how long I've been here.
I honestly wonder if you are actually Chris Tucker.

Offline KingRanter

  • RItiree - burritos
  • RIctuar
  • ***
  • Posts: 1681
    • View Profile
Holy Fuck I need help with flash
« Reply #25 on: December 02, 2008, 06:29:33 pm »
my apologies but your tooooo late :\

Offline Pterrydactyl

  • Floridian Tribal Elder
  • Funktuar
  • *****
  • Posts: 4828
  • I'm Watching You...
  • Awards Four years of Random Insanity The Disorder War Veteran of the Equilibrium War Three years of Random Insanity RIAer has built a Strategic Defense Initiative Has been Head of Recruitment RIAer is armed with nuclear weaponry RIAer has been blown to ZI in defense of RIA Veteran of the Dave War Two Years of Random Insanity Veteran of the Grudge War (TOP/NpO) Veteran of the Karma War RIAer has been hit with nuclear weapons in defense of RIA Has been an officer or SiC of a bRIgade Has recruited a member into the RIA One year of Random Insanity Veteran of the Illuminati War Veteran of the War of the Coalition Has been Head of Internal Affairs Was elected to be Captain Planet Has been Head of Military Operations
  • war boner is 6.76" long.
  • has 146 llamas
    • View Profile
  • Nation: Pterrydactyl
  • Ruler: Pterrydactyl
Holy Fuck I need help with flash
« Reply #26 on: December 03, 2008, 01:31:13 pm »
But it's correct.

so...

BOW BEFORE MY MIGHTYNESS
One Vision, One Purpose.

Is Dat My IMDB???



How Mogar talks on skype

Quote
<JeffGoldblum[TheRIA]>: Let's stop calling it trolling
<JeffGoldblum[TheRIA]>: Let's call it what it really is, okay?
<JeffGoldblum[TheRIA]>: Art

Quote from: Leo
Some days I think Mia is totally wrong and that I am completely normal. Today is one of those days.

Quote from: Dontasemebro
I just got off the phone with my ex and I know that no females are reasonable

Quote from: Abe Simpson
Leo
I think you are the most annoying poster on this site, honestly.
You are like two llamavores with twice as many animals fucking.
Your posts make me reconsider how long I've been here.
I honestly wonder if you are actually Chris Tucker.

Offline KingRanter

  • RItiree - burritos
  • RIctuar
  • ***
  • Posts: 1681
    • View Profile
Holy Fuck I need help with flash
« Reply #27 on: December 03, 2008, 04:57:04 pm »
k


Offline Pterrydactyl

  • Floridian Tribal Elder
  • Funktuar
  • *****
  • Posts: 4828
  • I'm Watching You...
  • Awards Four years of Random Insanity The Disorder War Veteran of the Equilibrium War Three years of Random Insanity RIAer has built a Strategic Defense Initiative Has been Head of Recruitment RIAer is armed with nuclear weaponry RIAer has been blown to ZI in defense of RIA Veteran of the Dave War Two Years of Random Insanity Veteran of the Grudge War (TOP/NpO) Veteran of the Karma War RIAer has been hit with nuclear weapons in defense of RIA Has been an officer or SiC of a bRIgade Has recruited a member into the RIA One year of Random Insanity Veteran of the Illuminati War Veteran of the War of the Coalition Has been Head of Internal Affairs Was elected to be Captain Planet Has been Head of Military Operations
  • war boner is 6.76" long.
  • has 146 llamas
    • View Profile
  • Nation: Pterrydactyl
  • Ruler: Pterrydactyl
Holy Fuck I need help with flash
« Reply #28 on: December 03, 2008, 06:31:55 pm »
One Vision, One Purpose.

Is Dat My IMDB???



How Mogar talks on skype

Quote
<JeffGoldblum[TheRIA]>: Let's stop calling it trolling
<JeffGoldblum[TheRIA]>: Let's call it what it really is, okay?
<JeffGoldblum[TheRIA]>: Art

Quote from: Leo
Some days I think Mia is totally wrong and that I am completely normal. Today is one of those days.

Quote from: Dontasemebro
I just got off the phone with my ex and I know that no females are reasonable

Quote from: Abe Simpson
Leo
I think you are the most annoying poster on this site, honestly.
You are like two llamavores with twice as many animals fucking.
Your posts make me reconsider how long I've been here.
I honestly wonder if you are actually Chris Tucker.

 


* Re: Imagine still posting on RIA to talk to old clowns.  Author: im317 Forum: Random lnsanity
* Re: Imagine still posting on RIA to talk to old clowns.  Author: Gangs Forum: Random lnsanity
* Re: Imagine still posting on RIA to talk to old clowns.  Author: im317 Forum: Random lnsanity
* Re: Imagine still posting on RIA to talk to old clowns.  Author: Gangs Forum: Random lnsanity
* Re: Imagine still posting on RIA to talk to old clowns.  Author: Leo Forum: Random lnsanity
* Re: Imagine still posting on RIA to talk to old clowns.  Author: Brian Forum: Random lnsanity
* Imagine still posting on RIA to talk to old clowns.  Author: C-zom Forum: Random lnsanity
* Re: I don't know if I should start a new topic  Author: Brian Forum: Random lnsanity
* Re: I don't know if I should start a new topic  Author: im317 Forum: Random lnsanity
* I don't know if I should start a new topic  Author: Muji111 Forum: Random lnsanity
* Re: This place still exists  Author: Leo Forum: Random lnsanity
* Re: This place still exists  Author: im317 Forum: Random lnsanity
* Re: This place still exists  Author: Leo Forum: Random lnsanity
* Re: This place still exists  Author: im317 Forum: Random lnsanity
* Re: This place still exists  Author: Crazyman93 Forum: Random lnsanity
* Re: This place still exists  Author: Leo Forum: Random lnsanity
* Re: This place still exists  Author: Fake from State Jarm Forum: Random lnsanity
* Re: This place still exists  Author: im317 Forum: Random lnsanity
* Re: This place still exists  Author: Leo Forum: Random lnsanity


SMF 2.0.15 | SMF © 2017, Simple Machines
Scratch Design by DzinerStudio

Page created in 0.08 seconds with 35 queries.
Triumvirate:
Shadow

Head of Foreign Affairs:
Brian

Head of Internal Affairs:
Croix

Head of Military Operations:
im317