Official "Hello, World! (I'm new!)" thread

Random irrelevance that just didn't fit into other forums. Talk about anything.

Moderator: Talkative People

User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Re: Official "Hello, World! (I'm new!)" thread

Post by eatcomics »

Crom is pleased... Nice work man... but remember Crom is watching...
Image
User avatar
mrmichaelam
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 12
Joined: Fri Jul 10, 2009 6:14 pm

Re: Official "Hello, World! (I'm new!)" thread

Post by mrmichaelam »

hey everybody! when i saw the es dev videos i had to come over too the forums and since i couldnt find a introduce yourself forum...
im mrmichaelam or michael as my real name is ive been using flash for about 6 months now ive been creating flash animations that where 3 mins in length to some that where 30 mins i but the thing i use flash mostly for is game devving... :nono: so just like you guys are cplusplusers and csharpsharpers im a ...flasher i guess...yeah i know but i think it is very fun ive tried c# wasnt very fun plus i think actionscript is way easier! anyways i am currently devving a game thats about 12% done the game is going to feature a 2h story mode and vs mode against cpu and offline agaist another person but cuz of my retarded com no screen recording programs work :x but ill soon get new com :) then ill post some pics but anyways i really hope ill get along with everybody and hope that you guys are flash friendly!
User avatar
eatcomics
ES Beta Backer
ES Beta Backer
Posts: 2528
Joined: Sat Mar 08, 2008 7:52 pm
Location: Illinois

Re: Official "Hello, World! (I'm new!)" thread

Post by eatcomics »

I think flash is cool, lots of my friends use it... My best friend does (I'm so proud of him :lol:)... Welcome to the forum! What do you think of the new comunity put monkey me and MDK bought? :mrgreen:
Image
User avatar
LeonBlade
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1314
Joined: Thu Jan 22, 2009 12:22 am
Current Project: Trying to make my first engine in C++ using OGL
Favorite Gaming Platforms: PS3
Programming Language of Choice: C++
Location: Blossvale, NY

Re: Official "Hello, World! (I'm new!)" thread

Post by LeonBlade »

I love Flash... I had secks with it one time... and it was great...
There's no place like ~/
User avatar
Bludklok
Chaos Rift Junior
Chaos Rift Junior
Posts: 241
Joined: Tue Apr 14, 2009 1:31 am
Current Project: EnigmaCore
Favorite Gaming Platforms: PC, N64, Playstation1, Playstation2
Programming Language of Choice: C++
Location: New Jersey
Contact:

Re: Official "Hello, World! (I'm new!)" thread

Post by Bludklok »

Hmm I've never tried flash but a friend of mine told me he tried to make a simple button in flash but couldn't do it...Although thats probably because he has the attention span of a fly.
:nono:
Youtube
Website
Current project: Enigma Core
User avatar
LeonBlade
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1314
Joined: Thu Jan 22, 2009 12:22 am
Current Project: Trying to make my first engine in C++ using OGL
Favorite Gaming Platforms: PS3
Programming Language of Choice: C++
Location: Blossvale, NY

Re: Official "Hello, World! (I'm new!)" thread

Post by LeonBlade »

Bludklok wrote:Hmm I've never tried flash but a friend of mine told me he tried to make a simple button in flash but couldn't do it...Although thats probably because he has the attention span of a fly.
:nono:
Lmfao... to make a button in flash it's as easy as this...

1. Make a movie clip that looks like a button (you can also create a button type or use the button component)
2. Give it an instance name like mybutton_btn
3. Create a layer on the timeline for actions and open up the actions panel.

Here is the code you would write for ActionScript 3:

Code: Select all

mybutton_btn.addEventListener(MouseEvent.CLICK, onClick);

function onClick(e:MouseEvent):void
{
     trace("You clicked the button jackass");
}
That's how you make a button in Flash.
There's no place like ~/
User avatar
Netwatcher
Chaos Rift Junior
Chaos Rift Junior
Posts: 378
Joined: Sun Jun 07, 2009 2:49 am
Current Project: The Awesome Game (Actual title)
Favorite Gaming Platforms: Cabbage, Ground beef
Programming Language of Choice: C++
Location: Rehovot, Israel

Re: Official "Hello, World! (I'm new!)" thread

Post by Netwatcher »

LeonBlade wrote:
Bludklok wrote:Hmm I've never tried flash but a friend of mine told me he tried to make a simple button in flash but couldn't do it...Although thats probably because he has the attention span of a fly.
:nono:
Lmfao... to make a button in flash it's as easy as this...

1. Make a movie clip that looks like a button (you can also create a button type or use the button component)
2. Give it an instance name like mybutton_btn
3. Create a layer on the timeline for actions and open up the actions panel.

Here is the code you would write for ActionScript 3:

Code: Select all

mybutton_btn.addEventListener(MouseEvent.CLICK, onClick);

function onClick(e:MouseEvent):void
{
     trace("You clicked the button jackass");
}
That's how you make a button in Flash.
Yes, but how do you make the button speak?
"Programmers are the Gods of their tiny worlds. They create something out of nothing. In their command-line universe, they say when it’s sunny and when it rains. And the tiny universe complies."
-Derek Powazek, http://powazek.com/posts/1655

blip.fm DJ profile - http://blip.fm/Noobay
current code project http://sourceforge.net/projects/vulcanengine/
User avatar
LeonBlade
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1314
Joined: Thu Jan 22, 2009 12:22 am
Current Project: Trying to make my first engine in C++ using OGL
Favorite Gaming Platforms: PS3
Programming Language of Choice: C++
Location: Blossvale, NY

Re: Official "Hello, World! (I'm new!)" thread

Post by LeonBlade »

Netwatcher wrote:
LeonBlade wrote:
Bludklok wrote:Hmm I've never tried flash but a friend of mine told me he tried to make a simple button in flash but couldn't do it...Although thats probably because he has the attention span of a fly.
:nono:
Lmfao... to make a button in flash it's as easy as this...

1. Make a movie clip that looks like a button (you can also create a button type or use the button component)
2. Give it an instance name like mybutton_btn
3. Create a layer on the timeline for actions and open up the actions panel.

Here is the code you would write for ActionScript 3:

Code: Select all

mybutton_btn.addEventListener(MouseEvent.CLICK, onClick);

function onClick(e:MouseEvent):void
{
     trace("You clicked the button jackass");
}
That's how you make a button in Flash.
Yes, but how do you make the button speak?
You do this...

Code: Select all

mybutton_btn.speak();
There you go lol.
There's no place like ~/
User avatar
Kcirtap1990
Chaos Rift Regular
Chaos Rift Regular
Posts: 161
Joined: Sun Nov 02, 2008 9:43 pm
Location: USA

Re: Official "Hello, World! (I'm new!)" thread

Post by Kcirtap1990 »

LeonBlade wrote:
Netwatcher wrote:Yes, but how do you make the button speak?
You do this...

Code: Select all

mybutton_btn.speak();
There you go lol.
How do you make the button self-aware?
User avatar
LeonBlade
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1314
Joined: Thu Jan 22, 2009 12:22 am
Current Project: Trying to make my first engine in C++ using OGL
Favorite Gaming Platforms: PS3
Programming Language of Choice: C++
Location: Blossvale, NY

Re: Official "Hello, World! (I'm new!)" thread

Post by LeonBlade »

Code: Select all

mybutton_btn.selfAware = true;
Essentially anything you want the button to do you can get it to do... here are some examples:

Code: Select all

mybutton_mc.makeCoffee(6); //pass in how many cups of coffee
mybutton_mc.orderPizza(Size.LARGE, Topings.ALL); //pass in what topings you want and what size pizza
mybutton_mc.rentMovie(6b5e358a095a2edeb32aa8796f482c6f ); //pass in the md5 of the movie title you want (used to make your selection of movie a secret)
mybutton_mc.payBills(0); //pass in the maximum amount of money it can spend on bills, 0 means infinite 
mybutton_mc.walkDog(9001); //pass in how many yard to walk the dog for
mybutton_mc.giveBlowjob(true); //pass in whether or not to swallow
Click here to see the hidden message (It might contain spoilers)
The movie was "Back Door Sluts 9"
There's no place like ~/
clsDevAaron
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 54
Joined: Sun Jul 12, 2009 7:47 am

Re: Official "Hello, World! (I'm new!)" thread

Post by clsDevAaron »

*Directed here by MarauderIIC from my topic*

I barely ever go into the off-topic section of any forums, so I never happened to notice this thread. So yeah...

It is a pleasure to meet you all, I am clsDevAaron, or you can call me Aaron, either one is fine by me.

I have been here for a few days, I mainly just stick in the top part of the forums, as well as my games thread.

*takes a cookie from Netwatcher on page 24* <-- there you go Netwatcher
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Official "Hello, World! (I'm new!)" thread

Post by MarauderIIC »

clsDevAaron wrote:*Directed here by MarauderIIC from my topic*

I barely ever go into the off-topic section of any forums, so I never happened to notice this thread. So yeah...

It is a pleasure to meet you all, I am clsDevAaron, or you can call me Aaron, either one is fine by me.

I have been here for a few days, I mainly just stick in the top part of the forums, as well as my games thread.

*takes a cookie from Netwatcher on page 24* <-- there you go Netwatcher
Ahoy thar =)
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
twohammer
Chaos Rift Newbie
Chaos Rift Newbie
Posts: 11
Joined: Thu Jun 11, 2009 11:05 pm

Re: Official "Hello, World! (I'm new!)" thread

Post by twohammer »

Hi I'm mike.
I am new to the forums and to programming in general.
I am Learning C++ and I will soon be learning SDL.
I'm sure I will meet nice and talented people.
Mike (AKA Twohammer)
User avatar
Netwatcher
Chaos Rift Junior
Chaos Rift Junior
Posts: 378
Joined: Sun Jun 07, 2009 2:49 am
Current Project: The Awesome Game (Actual title)
Favorite Gaming Platforms: Cabbage, Ground beef
Programming Language of Choice: C++
Location: Rehovot, Israel

Re: Official "Hello, World! (I'm new!)" thread

Post by Netwatcher »

Welcome to our humble sanctuary from reality.
"Programmers are the Gods of their tiny worlds. They create something out of nothing. In their command-line universe, they say when it’s sunny and when it rains. And the tiny universe complies."
-Derek Powazek, http://powazek.com/posts/1655

blip.fm DJ profile - http://blip.fm/Noobay
current code project http://sourceforge.net/projects/vulcanengine/
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: Official "Hello, World! (I'm new!)" thread

Post by avansc »

this is not reality? OMG!!!!!! noooo!
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
Post Reply