Posts Tagged ‘Adobe’

Photoshop video

Adobe, Photoshop | Posted by antirealism
Apr 22 2010

Well CS5 is now out and I found this video on the Adobe TV website and it shows how amazing the new Content-Aware Fill is, I would not like to think how they made such think but it most of took a lot of coding and a lot of time.

But it is truly Amazing and seem a little futuristic .

Share and Enjoy:
  • Twitter
  • Facebook
  • Google Bookmarks
  • Print
  • del.icio.us
  • RSS
  • email
  • Digg
  • StumbleUpon
  • Live
  • Ping.fm
  • Slashdot
  • MySpace

Keyboard Events

Adobe, Flash, Learning | Posted by antirealism
Feb 23 2009

Here we go finally,

Only a small exercise due to most of the code is the same as the last few exercises, so in this One there was not much for me to try to remember :)

so first off in this we have to make the ” EventListener ” listen to the stage for an event, the reason for this is if we call up the instance name, like I did on the other codes, we would have to select the item before it would move, so if we make the whole stage active the listen will find the Object without us having to click on it.
Here we will be using Key_Down (press) and the Key_Up (release)
I have chosen to make the item jump as we press the button and on release the item will return to position.

Here is the code…

stage.addEventListener(KeyboardEvent.KEY_DOWN, jump);
stage.addEventListener(KeyboardEvent.KEY_UP, land);

//stage listener so we dont have to select Object

function jump(event:KeyboardEvent):void
{
Man_mc.y -= 100;
}
//jump up 100 pixels

function land(event:KeyboardEvent):void
{
Man_mc.y += 100;
}
/*man drop back to the original
place which is down 100 pixels*/

To test this flash movie please click in box first or click this link.
TESTMAN


I would like to add that if u hold down space bar the object (the man) will fly off screen. This is because the drop down is a listener, soon I will be learning how to make it return to its position and not run away.

Thank you for reading

Next it will be timer event…

Share and Enjoy:
  • Twitter
  • Facebook
  • Google Bookmarks
  • Print
  • del.icio.us
  • RSS
  • email
  • Digg
  • StumbleUpon
  • Live
  • Ping.fm
  • Slashdot
  • MySpace

Forum signiture’s

Adobe, Photoshop | Posted by antirealism
Jan 10 2009

Using Photoshop cs over the years, I have made a fair few different forum signature’s.

All on different topic for site like -

www.reddwarfforum.com

more info for this forum can be found at www.ub3rg33k.co.uk

red_dwarf

www.gfxvoid.com

white_ninja

www.phoenixforum.co.uk

mech

plus this one that’s a .png file so the ninja stands over any background.

please click the sig to see in separate browser.

ninja

I have a few more to show off over time. really hope you all like these and if you would like to more please leave me a comment in the box below….

Share and Enjoy:
  • Twitter
  • Facebook
  • Google Bookmarks
  • Print
  • del.icio.us
  • RSS
  • email
  • Digg
  • StumbleUpon
  • Live
  • Ping.fm
  • Slashdot
  • MySpace