Page 25 of 55

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

Posted: Fri Jul 10, 2009 3:18 am
by eatcomics
Crom is pleased... Nice work man... but remember Crom is watching...

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

Posted: Fri Jul 10, 2009 6:37 pm
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!

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

Posted: Fri Jul 10, 2009 10:13 pm
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:

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

Posted: Sat Jul 11, 2009 12:35 am
by LeonBlade
I love Flash... I had secks with it one time... and it was great...

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

Posted: Sat Jul 11, 2009 2:00 am
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:

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

Posted: Sat Jul 11, 2009 3:15 pm
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.

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

Posted: Sat Jul 11, 2009 3:18 pm
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?

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

Posted: Sat Jul 11, 2009 3:29 pm
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.

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

Posted: Sun Jul 12, 2009 2:31 am
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?

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

Posted: Sun Jul 12, 2009 2:37 am
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"

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

Posted: Fri Jul 17, 2009 7:30 pm
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

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

Posted: Fri Jul 17, 2009 7:51 pm
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 =)

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

Posted: Sun Jul 19, 2009 6:04 pm
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.

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

Posted: Sun Jul 19, 2009 6:33 pm
by Netwatcher
Welcome to our humble sanctuary from reality.

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

Posted: Sun Jul 19, 2009 9:06 pm
by avansc
this is not reality? OMG!!!!!! noooo!