First encounter (SOUND!)

This is the place to post your own creative works for other to play or give feedback on!
Forum rules
This forum is for posting and collaborating upon third party work. Please do not post request-threads, and avoid posting artwork that is not your own unless it is being used as a reference.

First encounter (SOUND!)

Postby Trogdor » Sun Nov 04, 2012 6:15 pm

Howdy folks, I've been playing with flash for about two weeks and knocked together these two videos (sound goes with the second -- wish I knew how to make it stop/start, but just bear with me for now). Might end up being a preamble to a game if I can ever figure out code snippets. Enjoy!
Update: Added more streamlined scene -- might be part of the troll game (see thread "The Trouble with Trolls")

Click to Play
(Javascript Required)

An Unexpected Journey.swf [ 228.47 KiB | Viewed 54916 times ]




Click to Play
(Javascript Required)

Pit Alternate.swf [ 714.69 KiB | Viewed 54916 times ]

Attachments
ThePitStage.fla
(2.45 MiB) Downloaded 733 times
Last edited by Trogdor on Fri Feb 01, 2013 7:17 am, edited 2 times in total.
Trogdor
 
Joined: Sun Nov 04, 2012 6:04 pm

Re: First encounter

Postby asshatperv » Mon Nov 05, 2012 12:51 am

I love it. You should make more.
asshatperv
Newly Registered
 
Joined: Fri Oct 05, 2012 1:31 pm

Re: First encounter

Postby Mechanios » Mon Nov 05, 2012 3:32 am

Dear god, I nearly had a goddamn heart attack when that fucking roar played.
Image
User avatar
Mechanios
 
Joined: Fri Jun 18, 2010 10:36 pm

Re: First encounter

Postby Kantirocks » Mon Nov 05, 2012 4:27 am

I wish I had sound right now to hear it, but As far as looks, it looks really good so far. Maybe try making a Flash movie first? Just a way to get all of the auto animations (any fuck scenes and so forth) down pat for when you make it into a game.
Image
User avatar
Kantirocks
 
Joined: Wed Oct 24, 2012 1:32 am

Re: First encounter

Postby Red.Sheer » Mon Nov 05, 2012 6:18 am

(...)
Last edited by Red.Sheer on Wed Nov 06, 2013 11:17 am, edited 1 time in total.
ImageImage

Staff member ---- Loyal follower of the Lolsheep
User avatar
Red.Sheer
 
Joined: Fri Jan 20, 2012 3:59 pm

Re: First encounter

Postby OwnerOfSuccuby » Mon Nov 05, 2012 8:41 pm

Good work :mrgreen:

To stop and start is simple. It depends what version of action script you use. Make a button. On layer with it wright stop();

Then for AS2: wright it in buttons action

on (release) {
_root.play();
}

AS3: wright on the layer with button and name button bNext

function fNext(e:MouseEvent):void{
play();
}

bNext.addEventListener(MouseEvent.CLICK, fNext);

Like a little tutorial you can look this: (but i am not good i tutorials i think :mrgreen: but like example):
viewtopic.php?f=29&t=2370 => look 1a about movie controll.
OwnerOfSuccuby
 
Joined: Fri Jun 11, 2010 9:33 pm

Re: First encounter

Postby Eumel2 » Mon Nov 05, 2012 11:31 pm

its quite good
but when those orcs go faster its like 2 pics just swaping back and forth and it kills like all the good animations
Eumel2
 
Joined: Sun Sep 23, 2012 9:08 pm

Re: First encounter

Postby Lucky777 » Tue Nov 06, 2012 8:43 pm

It's... surprisingly decent, honestly.

The whole flabby slimy warty pigman thing is... not particularly up my alley, but apart from that I've nothing against the offering.

S'a cool scenario, and to go wrong with playshapes-based models might take some unfortunately large amount of talent for failure.
User avatar
Lucky777
 
Joined: Sat Dec 18, 2010 12:44 am
Location: Chambers: Bandit Division

Re: First encounter

Postby Eidolon » Sat Nov 24, 2012 4:10 pm

The whole flabby slimy warty pigman thing is well up my alley! I love it! Big flabby pig men covered in green slime! Take that slut! :D
User avatar
Eidolon
 
Joined: Mon Aug 13, 2012 3:14 pm
Location: SE London/N Kent

Re: First encounter

Postby Reapergod36 » Sat Nov 24, 2012 7:09 pm

I wonder why he's so disgusting....
Death Is Inevitable.
Humanity Destroys Itself.
I Destroy All, But How Can I Do This.
Without Destroying Myself?
The Answer Is Simple.
I Do On The Inside...

Lady Foxy Wrote: Reaper of women's soles.
User avatar
Reapergod36
 
Joined: Tue Aug 09, 2011 10:25 am
Location: The Realm of Solemn And Solace

Re: First encounter

Postby [Brand_Name] » Sat Nov 24, 2012 11:58 pm

mmm.. could you use zelda in the next one?
Peace & Light
User avatar
[Brand_Name]
 
Joined: Wed Oct 24, 2012 2:35 am
Location: cereal boxes

Re: First encounter

Postby FMPraxis » Sun Nov 25, 2012 5:39 am

OwnerOfSuccuby Wrote:AS3: wright on the layer with button and name button bNext

function fNext(e:MouseEvent):void{
play();
}

bNext.addEventListener(MouseEvent.CLICK, fNext);


This should also work in AS3:

Code: Select All Code

bNext
.addEventListener(MouseEvent.CLICK, function fNExt(e:MouseEvent){
   play();
});


Putting the function in the event listener makes more sense to some people, and it works the same for most purposes. (although most programmers would consider it a bad practice, but if you are like most people and don't care, go right ahead)

Otherwise, I'm delighted to see more people willing to start flash projects. Please, continue.
FMPraxis
 
Joined: Mon Jun 25, 2012 10:14 am

Re: First encounter

Postby HohesHaus » Tue Nov 27, 2012 1:07 am

Hmmm nice. I like it
HohesHaus
 
Joined: Wed May 16, 2012 3:57 pm

Re: First encounter

Postby OwnerOfSuccuby » Sat Dec 01, 2012 5:34 pm

FMPraxis Wrote:
OwnerOfSuccuby Wrote:AS3: wright on the layer with button and name button bNext

function fNext(e:MouseEvent):void{
play();
}

bNext.addEventListener(MouseEvent.CLICK, fNext);


This should also work in AS3:

Code: Select All Code

bNext
.addEventListener(MouseEvent.CLICK, function fNExt(e:MouseEvent){
   play();
});


Putting the function in the event listener makes more sense to some people, and it works the same for most purposes. (although most programmers would consider it a bad practice, but if you are like most people and don't care, go right ahead)

Otherwise, I'm delighted to see more people willing to start flash projects. Please, continue.


Amm ... - and what is the difference ? You need to inicizlize it in both situation ? Is the difference only in position - where it is declared ? If so - if you have function that is already registred some where and you need to add it more than once - you will need to wright as i do. If you do not - you can wright the both - and what is the point ? I do not see difference between it - and as i think it is not comfortable to make it look different.

But for some purpose yes may be it is more comfortable to some body. Or may be i am wrong i do not understand you a little - why it is better or is not ?
OwnerOfSuccuby
 
Joined: Fri Jun 11, 2010 9:33 pm

Re: First encounter

Postby shinox23 » Tue Dec 04, 2012 10:25 am

Mechanios Wrote:Dear god, I nearly had a goddamn heart attack when that fucking roar played.


That makes both of us along with the other 1200+ that have clicked onto this thread...

Lucky777 Wrote:
The whole flabby slimy warty pigman thing is... not particularly up my alley, but apart from that I've nothing against the offering.


I say ditto on this
User avatar
shinox23
 
Joined: Tue Jul 26, 2011 2:15 am

Re: First encounter

Postby Renara » Fri Dec 07, 2012 12:16 pm

I love these animations; I really like the rear view in the second animation! There are a couple of pieces that don't quite line up, and I definitely recommend learning the actionscript basics, as they can be a good way to easily loop part of an animation (so you don't need to repeat segments manually). Looking great though!
Renara (team twitter | newgrounds)
Team Lead Programmer
Lok Team Member
Site Administrator
User avatar
Renara
Foxy Admin
 
Joined: Fri Jan 08, 2010 4:16 pm

Re: First encounter

Postby kingofbrocoli » Tue Jan 08, 2013 6:34 am

pretty cool stuff man loving the whole disgustingslimypigrape concept and It only took you 2 weeks? sheeeeet hoping to see more of you soon but I know I won´t
User avatar
kingofbrocoli
 
Joined: Thu Jun 07, 2012 4:35 am


Return to Creative Corner



Who is online

Users browsing this forum: No registered users