animike
- Author was Featured
- Bought between 50 and 99 items
- Exclusive Author
- Has been a member for 5-6 years
- Referred between 50 and 99 users
- Sold between 10 000 and 50 000 dollars
- United States
32
Purchases
Buyer Rating:
4.75 stars
4.75 average based on 4 ratings.
-
5 Star
375%
-
4 Star
125%
-
3 Star
00%
-
2 Star
00%
-
1 Star
00%
| Created | 19 July 08 |
| ActionScript Version | Unknown |
| Documentation | Well Documented |
| Opens With | Flash 8 (8+) |
| Published Size | 44kb |
© All Rights Reserved animike -
Contact Envato Support

- Author had a Free File of the Month
- Author was Featured
- Bought between 100 and 499 items
- Canada
- Elite Author
- Exclusive Author
- Has been a member for 5-6 years
- Interviewed on the Envato Notes blog
- Item was Featured
- Most Wanted Bounty Winner
- Referred between 100 and 199 users
- Sold between 100 000 and 250 000 dollars
+3 moreJolly squirrel!
It’s cool now. But here’s an idea. A squirrel that follows the mouse and says things like: Hey get back here.” “Where you goin?” and when it gets frustrated, it throws nuts at the cursor. THAT would rule!!
Nucking Futs! lol. Cute
lol i agree with URanimEnigma
lol
This is great
))) nice work
))
WOW ! I want this squirrel.
Nice work!
LOL – how about a Fumb Duck
Hahaha totally nucking futs !
I LOVE IT !!!
This is so nucking great!
That’s freakin’ rucking! Love it!
Great little guy.
I am importing this as an external swf in my as3 project.
How can limit the squirrels maximum left and right x position to the width of its’ loading movie clip?
I know virtually nothing about actionscript, but I’ve been trying for a day now to google around without any luck.
y position was easy to set
Thanks for a great little squirrel that has been Nucking me Futs by now
Kind Regards,
Satprem
So my googling around has brought me to this line of code that seems to bring me a bit closer to what I want to achive. But I’m not sure exactly how to implement it?
if (_root._xmouse>0&&_root._xmouse
And how to make she squirrel stop running when hi hreaches the edge set in the above code?
Any Help would be gratly appriciated
Hey. In the movieclip’s code just add the following lines of code after the line “var xgoal = _root._xmouse;”
if (xgoal < 100) xgoal = 100; if (xgoal > 400) xgoal = 400;where 100 is your leftX limit and 400 is your rightX limit
Ha HA HA !!! Yeyyy Thank you so Much!!!!!
So easy…
I was spending 2 days trying to figure it out
So nice to have your proffesional support. Emmencly appriciated.
Kind Regards Satprem
Cheers. Thanks for purchasing. Enjoy that crazy little guy!!
Hey again,
Since you were so helpful, I thought I might save another 2 days of headache by asking you
In the squirrels stop frame I am trying to add a speach bouble with some text inside a movie clip. That’s all fine, but since the whole squirrel is fliped when he is moving or facing left, my text also becomes fliped…
I am trying to use the code that you have put there for the squirrel, but I can’t figure out how to reference my text to do the the same. Or rathe oposite.
else if (dir == “L”) { this._xscale = -scale; this._yscale = scale; Object(this).squirrel.text = scale; }
Looks like you are in the right neighborhood… A couple of things you should be aware of:
“this” refers to the squirrel clip itself and you should give your text a different instance name “text_mc” because “text” is a flash identifier
if (dir == "R") { this._xscale = scale; this.text_mc._xscale = scale; } else if (dir == "L") { this._xscale = -scale; this.text_mc._xscale = -scale; }Hey Dude, you’re an angel
Thank you so much again.