Jump to content



Welcome to AstaHost - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!

Toggle shoutbox Shoutbox Open the Shoutbox in a popup

@  yordan : (19 June 2013 - 02:28 PM) Long Life To Asta New Era
@  agyat : (19 June 2013 - 01:58 PM) New Era Start At Asta Or Asta Start In New Era. :unsure:
@  yordan : (16 June 2013 - 05:41 PM) You're Welcome, Agyat!
@  agyat : (16 June 2013 - 07:38 AM) Thanks Yordan...
@  velma : (16 June 2013 - 12:06 AM) I Have Asked Opa To Check For A Backup.. He'll Let Me Know Soon :)
@  velma : (16 June 2013 - 12:05 AM) T_T It Seems That Someone Has Deleted That Topic Since I Found The Url Of The Topic But It Gives Me An Error
@  yordan : (15 June 2013 - 10:31 PM) @velma : It's A Tuto On How To Create A Login Program.
@  yordan : (15 June 2013 - 10:31 PM) Happy Birthday To Youuuuuu Agyat!
@  yordan : (15 June 2013 - 10:31 PM) Ba$
@  agyat : (15 June 2013 - 04:41 PM) :(
@  agyat : (15 June 2013 - 04:41 PM) Where The Hall I Were? 15Th Is Almost At End And No-One Wished Me "happy Birthday"!!!
@  velma : (14 June 2013 - 10:39 AM) Which Tutorial Is He Searching For?
@  velma : (14 June 2013 - 10:38 AM) Which Tutorial Is He Searching For?
@  yordan : (14 June 2013 - 07:47 AM) Ok, Have A Look Tomorrow.
@  yordan : (13 June 2013 - 03:19 PM) @velma, Can You Have A Look At Feelay's Problem? Seems That His Tutorial Is Not Searchable Today.
@  Feelay : (13 June 2013 - 08:11 AM) Oh, Haha
@  velma : (12 June 2013 - 05:39 PM) T_T Lately My Levels Of Procrastination..... **sigh**
@  velma : (12 June 2013 - 05:38 PM) I'll Do It Later
@  velma : (12 June 2013 - 05:38 PM) Procrastinators.. People Who Keep Saying "i'll Do This In A Bit"
@  Feelay : (12 June 2013 - 02:05 PM) Deal Punishments To What?

Photo
- - - - -

Flash Animation


4 replies to this topic

#1 FirefoxRocks

FirefoxRocks

    Super Member

  • [HOSTED]
  • 988 posts
  • Gender:Male
  • Location:Ontario, Canada
  • myCENTs:92.36

Posted 06 September 2009 - 03:14 PM

I have gotten familiar with the very basic of Flash (motion/shape tweening, using different tools, etc.) and I was wondering how this was created:

http://alanbecker.de...mation-34244097

I don't need very specific details but I would like to know the skill level required, the estimated number of keyframes, any various techniques used and a general outline of what they done.

#2 grim reaper1666

grim reaper1666

    Premium Member

  • Members
  • 234 posts
  • Gender:Male
  • Location:here ---->
  • myCENTs:20.44

Posted 12 September 2009 - 01:30 PM

ho did he do that i want to do it myself it makes it look like the stickmen are attacking the actual prgram (or are they?)

#3 jonnahlynb29e

jonnahlynb29e

    Newbie [ Level 1 ]

  • Members
  • 9 posts

Posted 06 October 2009 - 05:02 PM

hi im a newbiew in as3 programming can u help me find a solution with my problem?>>>

i have 6 frames.... the 1st frame has an action w/c calls/play the remaining frame depending w/c button they click let say button1 and so on.... here's my action for frame4


------------------------------------------------------------------------------------------->> here's my problem ...

1. ) the keyListener won't work not until i click on the interface.
2. ) can't add a child with sprite in frame 4...it doesn't show and when i click back button error occurs...
error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at BlockBox12_fla::MainTimeline/frame1()
at flash.display::MovieClip/gotoAndPlay()
at BlockBox12_fla::MainTimeline/backnClick()


----------------------------------------------------------------------------------------------//here's my code


stop();
import flash.events.KeyboardEvent;
import flash.display.Sprite;

//keycodes
var left:uint = 37;
var up:uint = 38;
var right:uint = 39;
var down:uint = 40;
var tempX:int = 1335;
var tempY:int = 2370;

//-----------------------------------------------------------------------i believe this have something to do with #2 error

var clockFace:Sprite = new Sprite();
clockFace.gra
phics.drawCircle(200, 200, 50);
clockFace.graphics.beginFill(0x0190ff);
addChild(clockFace);

//-----------------------------------------------------------------------

back_btn.addEventListener(MouseEvent.CLICK, backnClick);
stage.addEventListener(KeyboardEvent.KEY_DOWN,keyDownListener);


function backnClick(event:MouseEvent):void
{
//trace("button clicked!");
gotoAndPlay("main");
}

function keyDownListener(e:KeyboardEvent) {

if (e.keyCode==left){

if( _student.x >= 350){
_student.x-=5;
trace("student.x is >= 350");
}
else if( tempX >=330 ){
bg_scroll.x+=5;
}
else if(_student.x <= 0){
_student.x = _student.x;
tempX+=5;
}

else

_student.x-=5;

tempX-=5;

}
if (e.keyCode==up){

if( _student.y >= 250){

_student.y-=5;

}

else if( tempY >= 355 ){

bg_scroll.y+=5;

}

else if(_student.y <= 0){

_student.y = _student.y;

tempY+=5;
}

else

_student.y-=5;

tempY-=5;

}
if (e.keyCode==right){

if( _student.x < 350){

_student.x+=5;

}
else if( tempX+500 <= bg_scroll.width){

bg_scroll.x-=5;

}
else if(_student.x + _student.width >= 800){

_student.x = _student.x;
tempX-=5;

}
else

_student.x+=5;

tempX+=5;

}
if (e.keyCode==down){

if( _student.y < 250){

_student.y+=5;

}
else if( tempY + 265<= bg_scroll.height){

bg_scroll.y-=5;

}
else if(_student.y + _student.height >= 595){

_student.y = _student.y;

tempY-=5;

}
else

_student.y+=5;

tempY+=5;

}

}

#4 HannahI

HannahI

    Premium Member

  • Members
  • 442 posts
  • Location:Northeast, United States of America
  • myCENTs:READY[561.92]

Posted 03 November 2009 - 08:11 PM

I'm not sure what you mean, FirefoxRules.

#5 HannahI

HannahI

    Premium Member

  • Members
  • 442 posts
  • Location:Northeast, United States of America
  • myCENTs:READY[561.92]

Posted 08 November 2009 - 01:26 AM

Now I get you, About 1200 keyframes, Medium Skill level, and maybe 3 1/4 months of work! Hope this helps. :D



Reply to this topic



  


0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users