FAQ  •  Register  •  Login

The Barracks needs a new forum logo!

Moderators: Elite Guard Officers, Executive Officers

<<

SlntCobra1

User avatar

Discharged
Discharged

Posts: 519

Joined: Fri Jun 11, 2010 1:22 am

Location: Durham, NC

Post Sat Jun 19, 2010 3:19 am

Re: The Barracks needs a new forum logo!

Yea, that's a real fair idea for those of us who know how to create stuff in Flash. The best I can do is tweening. :(

Not even the tutorials on NG help me. :'( I've tried over and over again using tutorials to make buttons, but I can never figure out why they never put something in the () part of the coding. >_< :'(
95% of teens would cry if the Jonas brothers were about to jump off of a 10 story building. I'm one of the 5% who would bring popcorn and invite friends.
CLICK MAH SIG!!!!
ImageImageImageImage
<<

ByteSlinger

User avatar

Master of the Portal
Master of the Portal

Posts: 687

Joined: Thu Jun 17, 2010 9:40 am

Location: East Coast of the USA

Post Sat Jun 19, 2010 3:27 am

Re: The Barracks needs a new forum logo!

SlntCobra1 wrote:Yea, that's a real fair idea for those of us who know how to create stuff in Flash. The best I can do is tweening. :(

Not even the tutorials on NG help me. :'( I've tried over and over again using tutorials to make buttons, but I can never figure out why they never put something in the () part of the coding. >_< :'(


Cobra, you missed the point - even if you can make a simple flash animation, you can contribute to the collab. It's no longer "who's best" - it's "let's all put something in to give it our personal touch". There won't be any "winners" or "losers" - just the members of the EGB that can do flash, regardless of the level. Tweens are fine - you won't need actionscript for this flash. It should be simple and done from the heart! :D

*Salutes*
Image
<<

Ismael92

Specialist
Specialist

Posts: 82

Joined: Thu Jun 17, 2010 1:18 pm

Location: Uruguay

Post Sat Jun 19, 2010 4:01 pm

Re: The Barracks needs a new forum logo!

SlntCobra1 wrote:Yea, that's a real fair idea for those of us who know how to create stuff in Flash. The best I can do is tweening. :(

Not even the tutorials on NG help me. :'( I've tried over and over again using tutorials to make buttons, but I can never figure out why they never put something in the () part of the coding. >_< :'(


If you need help with ActionScript, why don't you ask for help in NG's flash forum? I assume you're using AS2, so that's why I don't offer my own help.

The reason why "they never put something in the () part of the coding" is because while some functions and methods need parameters, some don't.
For example, the play() method doesn't need any special parameters, but gotoAndPlay() does (because you need to tell flash which specific frame you want to go to and play. This example is valid for all versions of ActionScript ;)

If you don't want to post in NG's Flash forum, but you still want to know more, make a new topic in this forum and I'll do my best to help you. However, bear in mind that pretty much the only version of AS I know is AS3 :)
<<

SlntCobra1

User avatar

Discharged
Discharged

Posts: 519

Joined: Fri Jun 11, 2010 1:22 am

Location: Durham, NC

Post Sat Jun 19, 2010 4:08 pm

Re: The Barracks needs a new forum logo!

Dude, I'm trying to learn AS3 ANYWAY! >_< Why are you just telling me this now!? o_0 :shock: :shock: :o :o :x :x
95% of teens would cry if the Jonas brothers were about to jump off of a 10 story building. I'm one of the 5% who would bring popcorn and invite friends.
CLICK MAH SIG!!!!
ImageImageImageImage
<<

Ismael92

Specialist
Specialist

Posts: 82

Joined: Thu Jun 17, 2010 1:18 pm

Location: Uruguay

Post Sat Jun 19, 2010 5:02 pm

Re: The Barracks needs a new forum logo!

SlntCobra1 wrote:Dude, I'm trying to learn AS3 ANYWAY! >_< Why are you just telling me this now!? o_0 :shock: :shock: :o :o :x :x


Sorry, since you talked about making buttons and there not being anything enclosed within brackets, I assumed you were working with AS2 and using the onRelease() method. If you're using AS3, then I may be able to help you after all :)

Once again, I encourage you to make a new thread in NG or in here if you have any specific problem you need help with.
<<

ByteSlinger

User avatar

Master of the Portal
Master of the Portal

Posts: 687

Joined: Thu Jun 17, 2010 9:40 am

Location: East Coast of the USA

Post Sat Jun 19, 2010 10:09 pm

Re: The Barracks needs a new forum logo!

Regarding why some functions in action script have empty () (parens):

ActionScript took its programming cue from Java and C++, where every module of code is called a function. As a functional block of code, it could have values and parameters into it (these are the values that you include between the parens), do some of its own logic, and then return a value.

However, some functions just perform actions that do not require any passed-in values, such as Math.random(). Technically speaking, the number of parameters expected in this function is ZERO (none). Since the syntax of calling a function always requires parenthesis to show the list of parameters, you still need to include them even if no parameters are needed.

Another take on functions: Most of the time, when you call a function, you will be assigning the value it returns to a variable, such as:

fRandomValue = Math.Random();

But there are times we don't care about what is returned - we just want the function to just go and do something already:

GotoAndPlay(334);

This function will jump the current frame to 334 and continue on playing. Any errors or response codes are just ignored.

The hardest part is keeping track of what functions require what parameters, if any - and if the returned value is needed or not. But just remember that you ALWAYS need to have a pair of parenthesis at the end of all function calls, even if you have nothing in between.

Hope this helps! :D
Image
<<

SlntCobra1

User avatar

Discharged
Discharged

Posts: 519

Joined: Fri Jun 11, 2010 1:22 am

Location: Durham, NC

Post Sat Jun 19, 2010 10:42 pm

Re: The Barracks needs a new forum logo!

Well after a while I guess I did start semi-getting the hang of AS3.0. Anyway, do you have Flash CS4 Ismael? Or is it Macromedia Flash MX? Because Flash CS4 has an AS library and I tried using that for my buttons, but when I tested it, the buttons just kept disappearing. I know how to make a button, but keeping it from disappearing and working I know jack shit!
95% of teens would cry if the Jonas brothers were about to jump off of a 10 story building. I'm one of the 5% who would bring popcorn and invite friends.
CLICK MAH SIG!!!!
ImageImageImageImage
<<

Ismael92

Specialist
Specialist

Posts: 82

Joined: Thu Jun 17, 2010 1:18 pm

Location: Uruguay

Post Sat Jun 19, 2010 10:47 pm

Re: The Barracks needs a new forum logo!

SlntCobra1 wrote:Well after a while I guess I did start semi-getting the hang of AS3.0. Anyway, do you have Flash CS4 Ismael? Or is it Macromedia Flash MX? Because Flash CS4 has an AS library and I tried using that for my buttons, but when I tested it, the buttons just kept disappearing. I know how to make a button, but keeping it from disappearing and working I know jack shit!


Yes, I have Flash CS4, but I've never used the library. If something disappears, probably it's because there is a blank keyframe (a frame that has nothing on it) on the button's layer after you click the button. What are you using your button for? If you need help with AS, just copy/paste the code you're using here and I may be able to help you, though according to what you say the button is working just fine.
<<

SlntCobra1

User avatar

Discharged
Discharged

Posts: 519

Joined: Fri Jun 11, 2010 1:22 am

Location: Durham, NC

Post Sat Jun 19, 2010 10:51 pm

Re: The Barracks needs a new forum logo!

:lol: :lol: :lol:

YAY! Finally someone who knows what he's talking about. But I'm not going to go into flash and all that at this late hour. :) Thanks Ismael.
95% of teens would cry if the Jonas brothers were about to jump off of a 10 story building. I'm one of the 5% who would bring popcorn and invite friends.
CLICK MAH SIG!!!!
ImageImageImageImage
<<

ByteSlinger

User avatar

Master of the Portal
Master of the Portal

Posts: 687

Joined: Thu Jun 17, 2010 9:40 am

Location: East Coast of the USA

Post Mon Jun 21, 2010 11:22 pm

Re: The Barracks needs a new forum logo!

SlntCobra1 wrote::lol: :lol: :lol:

YAY! Finally someone who knows what he's talking about. But I'm not going to go into flash and all that at this late hour. :) Thanks Ismael.


It's really not that hard, once you under the concept of object-oriented programming and coding event handlers. A language is a language - and AS3 is so close to C++ it's really easy to make that jump.

If you have coding questions, maybe we need to open up a Flash Coders forum somewhere here to help us all along?
Image
<<

EagleRock

User avatar

Chief Barracks Officer
Chief Barracks Officer

Posts: 487

Joined: Fri Jun 04, 2010 1:21 am

Location: 127.0.0.1

Post Mon Jun 21, 2010 11:30 pm

Re: The Barracks needs a new forum logo!

ByteSlinger wrote:If you have coding questions, maybe we need to open up a Flash Coders forum somewhere here to help us all along?


Well, in the old forums, some forums were sorely under-used. "Flash" was one of them. Therefore, the Barracks Rec Room combines those forums into one location. If you want to create Flash collabs, ask questions, it can all go here. I'd just rather have them all in one forum that's used more often than many that are not

So, if you do have a question, feel free to create a thread here. That's what the place is for. :D
Image
<<

ByteSlinger

User avatar

Master of the Portal
Master of the Portal

Posts: 687

Joined: Thu Jun 17, 2010 9:40 am

Location: East Coast of the USA

Post Fri Jun 25, 2010 11:07 pm

Re: The Barracks needs a new forum logo!

Out of curiosity, has any else come up with their idea for a logo yet? I had half-expected there to be about 4 or 5 by now that we could be kicking around. Come on, guys, summer is here - you should have a little time to get creative....

I mean, I do know a bit about Photoshop - but a lot of you have much more raw talent than I do when it comes to freehand style and drawing. I was hoping to see some examples of that talent...

...any takers yet?
Image
<<

EagleRock

User avatar

Chief Barracks Officer
Chief Barracks Officer

Posts: 487

Joined: Fri Jun 04, 2010 1:21 am

Location: 127.0.0.1

Post Sat Jun 26, 2010 2:54 am

Re: The Barracks needs a new forum logo!

ByteSlinger wrote:Out of curiosity, has any else come up with their idea for a logo yet? I had half-expected there to be about 4 or 5 by now that we could be kicking around. Come on, guys, summer is here - you should have a little time to get creative....

I mean, I do know a bit about Photoshop - but a lot of you have much more raw talent than I do when it comes to freehand style and drawing. I was hoping to see some examples of that talent...

...any takers yet?


Yeah, don't get complacent just because we quickly threw up a logo. I'd like to get more of the Barracks involved to make the logo more meaningful!
Image
<<

SlntCobra1

User avatar

Discharged
Discharged

Posts: 519

Joined: Fri Jun 11, 2010 1:22 am

Location: Durham, NC

Post Sat Jun 26, 2010 8:15 am

Re: The Barracks needs a new forum logo!

I would've thrown a couple of my ideas up here but I've been busy helping my mom clean, playing my guitar, doing other chores all this week. As well as gettin' mah kompooter fixded up!

;)
Last edited by SlntCobra1 on Sat Jun 26, 2010 8:16 am, edited 2 times in total.
Reason: fixing link
95% of teens would cry if the Jonas brothers were about to jump off of a 10 story building. I'm one of the 5% who would bring popcorn and invite friends.
CLICK MAH SIG!!!!
ImageImageImageImage
<<

Ismael92

Specialist
Specialist

Posts: 82

Joined: Thu Jun 17, 2010 1:18 pm

Location: Uruguay

Post Sat Jun 26, 2010 4:55 pm

Re: The Barracks needs a new forum logo!

ByteSlinger wrote:Out of curiosity, has any else come up with their idea for a logo yet? I had half-expected there to be about 4 or 5 by now that we could be kicking around. Come on, guys, summer is here - you should have a little time to get creative....


I'm sorry, I couldn't come up with anything good :(
PreviousNext

Return to Barracks Recreation Room

Who is online

Users browsing this forum: No registered users and 11 guests

cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by Vjacheslav Trushkin for Free Forums/DivisionCore.
Americanized by Maël Soucaze.