Amazing Effect, But How?
http://www.reddragonmovie.com
click enter
then click on the girls picture
then click and drag the first picture - if you move it side to side, you can see taht it kind of tilts, as if it has gravity and everything (when you stop the mouse, it kind of swings back and forth a bit)
how is this done?
FlashKit > Flash Help > Flash ActionScript
Posted on: 10-01-2002, 05:59 PM
View Complete Forum Thread with Replies
Sponsored Links:
How Can I Do This Amazing Effect?
Hi friends..check this website is really amazing.
http://www.leroythehand.com
I want to do somethig similar!
I got this script but i got problem with de top and bottom movie blockers.
Check it out!
PHP Code:
// Scrolling by mouse gesture
onClipEvent (load)
{
ycenter = 50;
xcenter = 50;
speed = 1/30;
}
onClipEvent (enterFrame)
{
var distance2 = _root._ymouse-ycenter;
var distance = _root._xmouse-xcenter;
_x -= (distance*speed);
_y -= (distance2*speed);
}
// Collision detection
onClipEvent (enterFrame)
{
if (this.hitTest(this._parent.Right_Collision_Block))
{
_x += (distance*speed);
}
if (this.hitTest(this._parent.Left_Collision_Block))
{
_x += (distance*speed);
}
if (this.hitTest(this._parent.Top_Collision_Block))
{
_y += (distance*speed);
}
if (this.hitTest(this._parent.Bot_Collision_Block))
{
_y += (distance*speed);
}
}
Any ideas or advice?
thanks a lot for any help guys!
View Replies !
View Related
Amazing Effect
Hi all! I wonder how this effect is done, it's almost 2 weeks that i'm thinking on it without any result!
Here is the webpage and the flash is the big one in the center where the news are shown.
The effect is the flash light when you change the image clicking in the bottom buttons.
Thanks for any answer
View Replies !
View Related
Wow The Most Amazing Effect EVER
Does anyone know how to do this effect? Or have any Idea?
http://www.kelamali.com/La_Bibliotheque_du_Mande.html
Simply Amazing!
I dont even have to get the 3d effect (although nice) I would like the movement of the picture slightly to the inverse direction of the mouse.
Any Ideas?
jjmancini
That is fire on my head!
View Replies !
View Related
Wow The Most Amazing Effect EVER
Does anyone know how to do this effect? Or have any Idea?
http://www.kelamali.com/La_Bibliotheque_du_Mande.html
Simply Amazing!
I dont even have to get the 3d effect (although nice) I would like the movement of the picture slightly to the inverse direction of the mouse.
Any Ideas?
jjmancini
That is fire on my head!
View Replies !
View Related
Amazing Actionscript Effect
Hello peeps,
I've just come across this site that features an awesome scripting effect that I'd like to emulate. Its inside the site, and the effect is such that the content resides in individual areas that enlarge and minimise according to the mouse position.
My question to all you gurus is simply how is it done? If anyone can point me in the right direction Id be much obliged.
BTW, the site is www.8edge.com
(Theres also quite a nice fancy intro)
View Replies !
View Related
How Is This Amazing Effect Achieved?
This site uses a really nice transition effect. very smooth change in size and shape as the different areas of the site are accessed, I've seen this done before on other sites so I thought i'd come here and ask if anyone knows of a tutorial or has an fla of this? I notice that it all seems to be in one swf because there are no preloaders between pages and the change is instant.
I'll stand on my head in custard if i get an answer to this
Thank you.
http://www.dubko.com/
View Replies !
View Related
[F8] Amazing Flash Effect
Hi,
I was wondering if anyone knew how to create a flash animation like the one on the home page for EA's NHL 07.
http://www.easports.com/nhl07/
I have no idea how to get make objects act so fluid as they bounce around, nor am I able to figure out how to get individual objects to correspond like those do.
Any help would be great.
ex
View Replies !
View Related
Amazing Text Effect
Dear frd,
i was searching any tutorial for this replacement of words text effect is very speedy and nice ....can anyone help me
http://www.group94.com/home_old.php
chck text replacement animation in "Behind The Scene" section.
anyone can help?
View Replies !
View Related
How Is This Amazing Flash Effect Done,...
Hi.
I been coming to flashkit for a long time and never joined,
Now im hopeing to get some help with how to do this, it would be great for a project im doing.
I came across this cool effect, does somone know how the flying paper to the dancer was made?
Both if possible, paper going across and the dancer..
www.swfmagician.com
If you can point me in the right direction..
thank you
View Replies !
View Related
Amazing Effect. Hows It Done
Hey Everyone
Just wondering if the effect where the browser shakes was accomplished by using AS3. If it was would anyone know the coding required for this effect? I have been playing around with the tween class, but I dont think the tween class is right for this.
site with the effect http://energy.nofear.com
Thanks in advance
Ryan
View Replies !
View Related
Amazing Stretching Effect But How?
This site uses a really nice transition effect. very smooth change in size and shape as the different areas of the site are accessed, I've seen this done before on other sites so I thought i'd come here and ask if anyone knows of a tutorial or has an fla of this? (fla would be fantastic).
I'll stand on my head in custard if i get an answer to this
Thank you.
it's just won kirupa site of the week:
http://www.dubko.com/
View Replies !
View Related
Amazing Stretching Effect But How?
This site uses a really nice transition effect. very smooth change in size and shape as the different areas of the site are accessed, I've seen this done before on other sites so I thought i'd come here and ask if anyone knows of a tutorial or has an fla of this? (fla would be fantastic).
I'll stand on my head in custard if i get an answer to this
Thank you.
it's just won kirupa site of the week:
http://www.dubko.com/
View Replies !
View Related
Amazing.........
this bit of code is for a series of thumbnails in a gallery. it wont load the first time the gallery is selected, but it will the second time. is there some other way i should be loading these, like including the loadVars in the code instead of just loading the whole text document that has all the thumbnails in another frame? is there any other way to approach this. i am super hooped. feedback would be appreciated even if its feedback about why this doesnt warrant feedback...ya know?
code:
onClipEvent (load) {
initial = "pr";
thenumber = 1;
thumbnail = initial + thenumber;
thumbimage = "thumb" + thumbnail;
loadMovie("images/" + _root.galleries[thumbimage], _root.galleries[thumbnail].blank)
if (_root.galleries[thumbnail].blank.myBytes == 100) {
// will target the var myBytes, similar to a global
// trace("movie is loaded");
_root.galleries[thumbnail].blank._visible = true;
_root.galleries[thumbnail].blank._width = 26;
_root.galleries[thumbnail].blank._height = 26;
percentText._visible = false;
} else {
_root.galleries[thumbnail].blank._visible = false;
percentText._visible = true;
}
}
on(rollOver){
_root.overhigh.play();
}
on(release){
bigimage = "image" + thumbnail;
textframe = "t" + thenumber;
if (currentimage != thumbnail)
_root.galleries.preloader.gotoAndStop(2);
loadMovie("images/" + _root.galleries[bigimage], _root.galleries.imageholder)
currentimage = thumbnail;
_root.click.play();
_root.galleries.textloader.gotoAndStop([textframe]);
}
EDIT: Added actionscript tags ( [ as ] ) for readability. - jbum
View Replies !
View Related
This Is Amazing. How'd They Do It?
so i was online shopping for some glasses, and i came across this site.
http://www.eyebuydirect.com/online_demo.php
you can upload your own image, then choose from a number of glasses to see how you would look in them before you buy.
this is incredible... does anyone have any idea how you would even start a project like this?
i'd imagine they're using some sort of xml interface. the page is a php page, i wonder if they are using some sort of database program to populate the glasses selection section.
this is pretty incredible. i was totally impressed.
View Replies !
View Related
Try This Its Amazing
I found this on a bulletin board and decided to try it. A little while back, It was
an article similar to this that said you could make thousands of dollars within weeks with only an initial investment of $6.00! So I thought, "Yeah right, this must be a scam", but like most of us, I was curious, so I kept reading. Anyway, it said that you send $1.00 to each of the 6 names and address stated in the article. You then place your own name and address in the bottom of the list at #6, and
No catch, that was it. So after thinking it over, and talking to a few people first, I thought about trying it. I figured: "what have I got to lose except 6 stamps and $6.00, right?" Then I invested the measly $6.00. Well GUESS WHAT!?... Within 7 days, I started getting money in the mail! I was shocked! I figured it would end soon, but the money just kept coming in. In my first week, I made about $25.00. By the end of the second week I had made a total of over $1,000.00! In the third week I had over $10,000.00 and it's still growing. This is now my fourth week and I have made a total of just over $42,000.00 and it's still coming in rapidly. It's certainly worth $6.00, and 6 stamps, I have spent more than that on the lottery!! Let me tell you how this works and most importantly, WHY it works... Also, make sure you print a copy of this article NOW, so you can get the information off of it as you need it. I promise you that if you follow the directions exactly, that you will start making more money than you thought possible by doing something so easy!
Suggestion: Read this entire message carefully! (print it out or download it.) Follow the simple directions and watch the money come in! It's easy. It's legal. And, your investment is only $6.00 (Plus postage) IMPORTANT: This is not a rip-off; it is not indecent;
it is not illegal; and it is 99% no risk - it really works! If all of the following instructions are adhered to, you will receive extraordinary dividends.
PLEASE NOTE: Please follow these directions
EXACTLY, and $50,000 or more can be yours in 20 to 60 days. This program remains successful because of the honesty and integrity of the participants. Please continue its success by carefully adhering to the instructions. You will now become part of the Mail Order business. In this business your product is not solid and tangible, it's a service. You are in the business of developing Mailing Lists.
Many large corporations are happy to pay big bucks for quality lists. However, the money made from the mailing lists is secondary to the income which is made from people like you and me asking to be included in that list. Here are the 4 easy steps to success:
STEP 1:
Get 6 separate pieces of paper and write the following on each piece of paper "PLEASE PUT ME ON YOUR MAILING LIST." Now get 6 US $1.00 bills and place ONE inside EACH of the 6 pieces of paper so the bill will not be seen through the envelope (to prevent thievery). Next, place one paper in each of the 6 envelopes and seal them. You should now have 6 sealed envelopes, each with a piece of paper stating the above phrase, your name and address, and a $1.00 bill. What you are doing is creating a service. THIS IS ABSOLUTELY LEGAL! You are requesting a legitimate service and you are paying for it! Like most of us I was a little skeptical and a little worried about the legal aspects of it all. So I checked it out with the U.S. Post Office (1-800-725-2161) and they confirmed that it is indeed legal. Mail the 6 envelopes to the
Following addresses:
1. Wilson
815 Labarge Court
Pierre SD 57501- 4718
2. Scott Anderson
2347 Preston Lane
West Dundee, IL 60118
3. Peter teixeira
88 moray Ave. Richmond Hill
Toronto , Ontario
L4E-3E2 Canada
4. Lori Dobson
311 Dixon Rd Apt# 1007
Toronto, Ontario
M9R-1S3 Canada
5.N.Dawson
26 Hawford Way
Willetton WA 6155
Western Australia
6. S. Busscher
341 Elm st
Holland, MI 49424
STEP 2: Now take the #1 name off the list that you see above, move the other names up 1 place (#2 becomes #1, #3 becomes #2, etc...)
and add YOUR name and address as number 6 on the list. STEP 3:
Change anything you need to, but try to keep this article as close to original as possible. Now, post your amended article to tons of different forums where every one can see it you at least need
200, but remember, the more you post, the more money you make! You won't get very much unless you post like crazy. This is perfectly legal! If you have any doubts, refer to Title 18 Sec. 1302 & 1341 of the Postal lottery laws. Keep a copy of these steps for yourself and, whenever you need money, you can use it again, and again. PLEASE REMEMBER that this program remains successful because of the honesty and integrity of the participants and by their carefully adhering to the directions. Look at it this way. If you are of integrity, the program will continue and the money that so many others have received will come your way. NOTE: You may want to retain every name and address sent to you, either on a computer or hard copy and keep the notes people send you. This VERIFIES that you are truly providing a service. (Also, it might be a good idea to wrap the $1 bill in dark paper to reduce the risk of mail theft.)
so, as each post is downloaded and the directions carefully followed, six members will be reimbursed for their participation as a List Developer with one dollar each. Your name will move up the list geometrically so that when your name reaches the #1 position you will be receiving thousands of dollars in CASH!!! What an opportunity for only $6.00 ($1.00 for each of the first six people listed above) Send it now, add your own name to the list and you're in business!
View Replies !
View Related
THIS IS AmAzInG
> Hi, my name is Joseph Franco and I would like to know if someone could
> help me with a problem but first let me tell you a little bit about
> me. I'm 21 and i study architecture at UC Berkeley. I used to work at
> a company called Candle Corp. whom developed server software. . . I
> worked in their R&D dept. then product testing where i aquired a lot
> of my web knowledge. I learned flash 4.0 over the summer and then
> taught a class at candle (all of their software was server based so
> internet implementation as well as interactivty was
> nessesary.) I left to pursue my post secondary education and then
> Candle got bought off by IBM. I now tutor and attend school. . When
> Flash pro 8 came out i was intrigued and went out and bought a copy. .
> . Needless to say it's a far cry from the flash i remember but by far
> the best! Which now brings me to my dilema. .. I was recently at the
> AutoCad website (upgrading my autocad to the 2006 version) when i
> noticed their Flash interactive page. I was blown away! Here is the link. . .
http://usa.autodesk.com/adsk/servlet...&id=2956700&pr
> Then you go to Interactive Overview and click on the button that says
> " View Now" (sorry i'm being so detailed, its just that i really want
> to know how they achieved that)
>
> After the little flash intro and after you click on the image you are
> taken to the menu where there are 4 separate pictures each numbered
> with a green alpha bar across the top and a title. . . once you select
> one it opens up revealing a mask and pushes all the other menu items away and expands. . .
> but when you hover off into the other menu items its closes and
> whichever one you hover over opens! it just blew me way. . . well, if
> you can help me figure out how they did this i woudl greatly
> appreciate it. . .thank you for your time and thank you in advance.
>
>
> Joseph E. Franco
>
View Replies !
View Related
It Is So Amazing And Can't Do It
How can we install and download a program with Macromedia Flash MX 2004 and do all the progress in SWF not with anything outside it !
Like what macromedia did with Central Installation !
In SWF ! (wow) And With no Agreement !
Please Help me if it's possible for you !
View Replies !
View Related
An Amazing Thing, That I Don't Know How To Do
Hello... thank's to view this post..... I' was searching in internet for amazing flash sites.... and in one of this sites appear a thing that I can't explain very good... it's like a pop up but is a new window that doesn't have the borders and title of the "Internet Exporer"... I don't know if you understand what I mean..... but here is the link http://www.sub7designs.com/test/ ....
If you know how they do that.... can you explain it... or make a litle explanation
thank you very much
CaVi21
View Replies !
View Related
If U Can Uderstand Why F5 Does This Your Amazing - Cos I Cant
i have a swf file, imbedded in a simple dreamweaver file, i upload it and it works fine, im using javascript pop up boxes on my buttons , its all finee.
but as soon as i publish and use the same swf file, the file comes up and the pop ups dont work, in the bottom left corner it comes up with that error in a triangle.
this just simply doesnt make sense.
what is going on, heres the code for my flash 5 buttons, using get url action...
javascript:launchwin('blah.htm' , 'newwindow' , 'scrollbars=yes', 'height=480,width=500' )
PLEASE SOMEONE HELP!!!!!!!!!!!
View Replies !
View Related
Most Amazing Meny Ever
I wonder how to do a meny that is -say 4 buttons, when I mov over the first button a thing moves around the firsta button and stays there, and when i move to say button 3 the thing moves from button 1 to button 3......now to the question, anyone got a actionscript fot this one?
and the other question is how to do a text that appear on the(and follows the pointer to) pointer when moving over at text or a picture?
www.razorclean.com
View Replies !
View Related
Simply Amazing
It absolutely amazes and astounds me. I was doing a search for a tutorial on email forms (and PHP) and I came across 6 or 7 pretty good looking forms. When I looked at the PHP code behind the form, I realized it was all identical.
All these people have done is change the interface and upload the code as their own What kind of community do we have that people are passing off someone else's work as their own
I know this happens on the net, but to find 6 movies on Flashkit with identical code is something I think we can get rid of.
My opinion
View Replies !
View Related
Amazing Coke Ad.
Hi,
Does anyone knows, how did they do to make the coke ad that appeared in www.msn.com ? It's like the flash film run beyond the stage (film dimensions). Very cool
Tks...
View Replies !
View Related
How To Do This Amazing Thing?
Hello!
I'm no developer, I'm a designer. And I suck at actionscript.
Though...I need this for a project. I need to learn how to do this:
http://www.conclaveobscurum.ru/
Ok, not the whole thing.
Manage to surf in there and click on "Sulfur Album" on the left. Then on "Cine". And choose "Por D.Serge". And click on the thumbnail.
That's what I need to do: the character moves on left when I go to the right, and viceversa. Top and bottom too.
I'm using Flash MX. Can somebody be so kind to direct me to a tutorial explaining a similar technique?
Basically it's about setting the position of a movie clip with mouse movements, if I'm correct. I would love to modify a movie clip's playback and scale value with mouse position.
Thanks a lot.
View Replies !
View Related
Amazing Site... How Is It Done?
I recently discovered http://www.teknision.com/siteVersion...da%20Innovates . It is an extremely awesome site with an Instant Messenger (that translates virtually any language) and when you click on the menu items it resizes, even when multiple items are clicked (if you explore the site u will know what I mean). Does anyone know how to make the menu items resize, even when multiple items are expanded? I know you could probably use an ton of If Then statments but when one item is changed, If Then statments would set back the menu item to the default. I think they used some other techinique that I am trying to figure out. Any ideas? And I know the instant messenger this is probably to advanced for any member of this board but if anyone has any ideas, please let me know. Thanks.
mike
View Replies !
View Related
Amazing, Where-s The Source
I checked out http://tag-der-arbeit.extrajetzt.de/ , and was AMAZED at this game, I love it... But I was wondering where the source was, I-d love to see the programming for this game, does anyone know where it is+
ps: ... I can-t speak germen or... anything exept spanish and english
View Replies !
View Related
AMAZING FULLSCREEN, But How Do They Do It?
I just checked out this site;
http://www.jumpman23.com/xx2/
It has the most amazing 'fullscreen' option (bottom right of the site once it loads). It runs the swf FULLSCREEN, no menus, no windows, just totally amazing full screen. Now, I have a mac, and maybe this has been done before? But I dont think it has, especially on the mac platform?
Does anyone have any idea how it is done? I take it it uses javascript of some kind, but nothing like i have ever seen? I also noted that the site needs flash 9 to run, do we think that has anythign to do with it?
Any help appreciated!
View Replies !
View Related
Amazing Shrinking MC
so im loading in an external swf and the thing decides it wants to shrink and be about 3/4 size when loaded, which is, needless to say, unacceptable. i'm just using
bulletin.loadMovie("bulletin.swf");
anyone know whats goin on?
thanks
View Replies !
View Related
Amazing Site... How Is It Done?
I recently discovered http://www.teknision.com/siteVersion...da%20Innovates . It is an extremely awesome site with an Instant Messenger (that translates virtually any language) and when you click on the menu items it resizes, even when multiple items are clicked (if you explore the site u will know what I mean). Does anyone know how to make the menu items resize, even when multiple items are expanded? I know you could probably use an ton of If Then statments but when one item is changed, If Then statments would set back the menu item to the default. I think they used some other techinique that I am trying to figure out. Any ideas? And I know the instant messenger this is probably to advanced for any member of this board but if anyone has any ideas, please let me know. Thanks.
mike
View Replies !
View Related
|