Official "Hello, World! (I'm new!)" thread
Moderator: Talkative People
Re: Official "Hello, World! (I'm new!)" thread
Crom is pleased... Nice work man... but remember Crom is watching...
- mrmichaelam
- Chaos Rift Newbie
- Posts: 12
- Joined: Fri Jul 10, 2009 6:14 pm
Re: Official "Hello, World! (I'm new!)" thread
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... 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 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!
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... 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 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!
Re: Official "Hello, World! (I'm new!)" thread
I think flash is cool, lots of my friends use it... My best friend does (I'm so proud of him )... Welcome to the forum! What do you think of the new comunity put monkey me and MDK bought?
- LeonBlade
- 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
I love Flash... I had secks with it one time... and it was great...
There's no place like ~/
- Bludklok
- 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
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.
- LeonBlade
- 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
Lmfao... to make a button in flash it's as easy as this...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.
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");
}
There's no place like ~/
- Netwatcher
- 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
Yes, but how do you make the button speak?LeonBlade wrote:Lmfao... to make a button in flash it's as easy as this...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.
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:That's how you make a button in Flash.Code: Select all
mybutton_btn.addEventListener(MouseEvent.CLICK, onClick); function onClick(e:MouseEvent):void { trace("You clicked the button jackass"); }
"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/
-Derek Powazek, http://powazek.com/posts/1655
blip.fm DJ profile - http://blip.fm/Noobay
current code project http://sourceforge.net/projects/vulcanengine/
- LeonBlade
- 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
You do this...Netwatcher wrote:Yes, but how do you make the button speak?LeonBlade wrote:Lmfao... to make a button in flash it's as easy as this...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.
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:That's how you make a button in Flash.Code: Select all
mybutton_btn.addEventListener(MouseEvent.CLICK, onClick); function onClick(e:MouseEvent):void { trace("You clicked the button jackass"); }
Code: Select all
mybutton_btn.speak();
There's no place like ~/
- Kcirtap1990
- Chaos Rift Regular
- Posts: 161
- Joined: Sun Nov 02, 2008 9:43 pm
- Location: USA
Re: Official "Hello, World! (I'm new!)" thread
How do you make the button self-aware?LeonBlade wrote:You do this...Netwatcher wrote:Yes, but how do you make the button speak?There you go lol.Code: Select all
mybutton_btn.speak();
- LeonBlade
- 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
Code: Select all
mybutton_btn.selfAware = true;
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)
There's no place like ~/
-
- Chaos Rift Cool Newbie
- Posts: 54
- Joined: Sun Jul 12, 2009 7:47 am
Re: Official "Hello, World! (I'm new!)" thread
*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
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
- MarauderIIC
- Respected Programmer
- Posts: 3406
- Joined: Sat Jul 10, 2004 3:05 pm
- Location: Maryland, USA
Re: Official "Hello, World! (I'm new!)" thread
Ahoy thar =)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
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
Re: Official "Hello, World! (I'm new!)" thread
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.
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)
- Netwatcher
- 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
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/
-Derek Powazek, http://powazek.com/posts/1655
blip.fm DJ profile - http://blip.fm/Noobay
current code project http://sourceforge.net/projects/vulcanengine/
Re: Official "Hello, World! (I'm new!)" thread
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"
Dad, "Yea well I have a fan belt in street fighting"