Started 1 week ago (2009-12-01 17:50:00)
by nycynik
I found a few questions just like this, with
no answers on the forum as well:
http://www.actionscript.org/forums/s....php3?t=118 932
http://www.actionscript.org/forums/s....php3?t=144 283
Started 1 week, 3 days ago (2009-11-28 10:39:00)
by CyanBlue
I don't think that site is going to let you share the product once somebody bought it... Don't you think???
Started 3 weeks, 3 days ago (2009-11-14 11:45:00)
by patrick99e99
color fade effect problem
Hi,
I am having a little bit of trouble with some code and am hoping someone here can shed some light on the problem. First off, I am using prototype (javascript framework), however the syntax is very similar to
actionscript, so hopefully AS people will be able to help out..
So, this is a text color effect ...
Started 3 weeks, 5 days ago (2009-11-12 14:50:00)
by attunedesigns
I would highly recommend getting some footage (vector or movie, etc.) and importing it to the timeline. Then you can
rotoscope it, syncing with the joints every frame.
Its how i did the silly man at http://jovicakes.com/
!!
Started 1 month, 2 weeks ago (2009-10-19 14:09:00)
by attunedesigns
I would recommend posting this in the
AS3 section if its rushed. You will get much more exposure there.
Started 1 month, 3 weeks ago (2009-10-12 07:45:00)
by garfieldgirl
anyone can help me with this?
Started 1 month, 3 weeks ago (2009-10-13 15:29:00)
by Digital Pimp
Hi
I am looking to do something similar to the effect in the header of www.loadedrecords.com . Does anyone have any idea how or could anyone point me to a tutorial?
TIA
Russ
Started 1 month, 3 weeks ago (2009-10-12 21:12:00)
by RogerClark
You'll need to use two images on the stage rather than one
I suggest you have an array if image holder MC's (which contains both MCs)
Then change the code so that it
transitions one image holder in at the same time as it transitions the other image holder out.
Then you'll need to update (toggle) which of your image holders contains the currently displayed image, load the other ...
Started 2 months ago (2009-10-07 13:31:00)
by runtime
Quote:
Originally Posted by Wotan318
function getMinusOrPlus():int{
var rand : Number = Math.random()* 3 ;
if (rand<1) return -1
else return 1;
}
ActionScript Code:
function getMinusOrPlus ( ) : int {
var rand : Number = Math . random ( ) * 2 ;
if ( rand< 1 ) return - 1...