Old Movie Reel Effect
I am wanting to make an old movie reel effect for my website using Flash 5. My navigation bar is going to come down and run by much like it would if it were going through a projector. When it stops I want all my links to look like slides from the reel. Any suggestions on where to start or how to go about doing this?
Tek-Tips > Adobe(Macromedia): Flash Forum
Posted on: 11 Feb 03 13:53
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
How Do You Create A Movie Reel Effect?
I'm am developing in FLASH 5. What is the best way to create a movie reel effect. For instance if you what the perfed edges to acclerate in a forward motion for 20 frames and reverse for 10 frames at a slower rate and then back to a forward motion. Is this done with actionscript or can it be done without? Can you do this with a mask?
Reel Rolling Effect
How can i recreate the effect of reels on a fruit machine rolling and then stopping. I want to create a banner where the reels roll and then stop one by one with my title in each reel but i want it to look realistic.
Thanks for any help
Old Film Reel Effect
How can I do an old fashion film effect with scratches, the number countdown, and maybe even the sound of it all too? Is there a tutorial out there that will help? I am not sure if it would have to be a separate movie loaded on top of the main movie I want to show though.
Looking For Mouse Reel Effect Like Www.skyimagestudios.com
Hey all, does any one know of a tutorial, or could point me in the right direction for a mouse reel effect like the one on http://www.skyimagestudios.com ? I've seen these around, I just can't find anything on it. Any help would be appreciated. Thx
Movie Reel Turning
Can anyone tell me the steps to make a movie reel turn while staying in one place?
Continuous Movie Reel?
Hello guys...
I'm trying to dynamically bring in a selection of images in a row from left to right or right to left for the full width of the stage...
I've been to: http://www.actionscript.org/tutorial...el/index.shtml
but I need something that starts from the edge of one end and continues untill the other...
Cant figure out the script....please help
Old Time Movie Reel Countdown
Can anyone point me towards a tutorial or just a movie example of an old time movie reel countdown. Like a black and white 5,4,3,2,1 thing. I have one made, but it lacks the authentic look and feel so I need some pointers. I saw one of these quite some time ago, and now I can't locate anything on it.
thanks!
Demo Reel
I'm not sure if this is posted in the wrong forum. If it is, sorry
Ok, this is what I need done. First of all, if you have been to my site you know that my sister and I are a brother-sister tap team. We are looking to make a demo reel using some of our video clips that we have.
Now, I have no idea where to start .
If someone could please contact me on any of the instant messenger programs, or email me at michael@twofortap.com to help me, I would really appreciate it.
Thank you, and I hope to hear from someone soon!
Michael
www.twofortap.com
Cotton Reel
here's a little thing i made whilst i was messing around.
my idea was to create a 'cotton reel' that is on a spring so that you can pull string from it, and when you loosen your string, it rolls back up.
take a look
[swf=http://www.kirupa.com/forum/attachment.php?attachmentid=13863]height=700 width=700[/swf]
[edit]updated it so it's smoother when you roll over it - my friend complained [/edit]
Help With Picture Reel
I'm creating a picture show reel. It's very basic, but it's only for learning purposes. As far as I can tell, the Actionscript is correct. It's supposed to show three slides, but instead it's showing four. And the first two are overlapping each other. Can someone take a look at it for me? Thanks. I'll also post the code. It might be fruitless though if not looking at the FLA. It can be obtained from here
center = Stage.width/2;
cellWidth = reel_mc.cell_mc._width;
_root.onEnterFrame = function() {
leftStop = center-reel_mc._width+cellWidth/2;
rightStop = center-cellWidth/2;
reelSpeed = (_xmouse-center)/10;
reel_mc._x += reelSpeed;
if (reel_mc._xrightStop) {
reel_mc._x = rightStop;
}
};
function NewCell(num, details) {
oldClip = _root.reel_mc.cell_mc;
newClip = oldClip.duplicateMovieClip("cell"+num, num);
newClip._x = num*300;
}
NewCell(1, "");
NewCell(2, "");
NewCell(3, "");
Picture Reel Problem
*~ Made Using : FlashMX ~*
I have just tried to make a flash picture reel that loads up jpg's externaly and shows them in the picture viewer that you can scroll horizontaly (Newbie stuff or what! But that's me newbie ) Anyway when the pictures load up they don't load in the position of placeholder_mc and only one of them actually shows up? I need to know why they wont show in place? If you need to see the file I have ZIP'd it up and attatched it to this post with the pictures to.
Thanks in advance.
PS: I kinda need help A.S.A.P. so if you can be as quick as possible.
Cheers
Studentmonster
Scrolling Picture Reel
Hi I need some help please. I am trying to accomplish a scrolling pic reel exactly like the one on this website http://www.lomamedia.com/V1.html. I want it in a bottom, scrolling continously without any pause or break in between and so far i have came up with this code only
onClipEvent(enterFrame){
this._x += 3
}
If someone knows the correct script please help. I can only use actionscript 1 that is what's compatible with my editor.
Scrolling Picture Reel
Hi I need some help please. I am trying to accomplish a scrolling pic reel exactly like the one on this website http://www.lomamedia.com/V1.html. I want it in a bottom, scrolling continously without any pause or break in between and so far i have came up with this code only
onClipEvent(enterFrame){
this._x += 3
}
If someone knows the correct script please help. I can only use actionscript 1 that is what's compatible with my editor.
Embedding A Demo Reel F8
What is the most effective way of showing video on the web?
Do I embed a flash video on my flash site or open a seperate url
as a quicktime or wmv?
Do I need a seperate streaming app or is flash effective enough?
The demo reel needs to be small but still have sharp image, It will be higher quality than normal as it is an efx reel.
Any ideas?
Ant
Scrolling Reel Problem
I created a continous slide show usind the scrolling reel tuturial. The show works fine, the problem is when I load slideShow.swf into another movie clip in another movie.
I want the slideShow.swf to play when a certain button is pushed. So far in the home timeline on the first frame of the actions layer I have this:
button.onRelease = function() {
if (_root.section != "slideShow.swf") {
_root.section = "slideShow.swf";
_root.transition.gotoAndPlay("closing");
}
};
the movie clip that the slideShow.swf is loading into has an instance name of "container."
This is the code on the first line of the slide show
slide_number = 17;
reel_speed = 1;
slide_count = 3;
m1 = _root.content.slide_1;
m2 = _root.content.slide_2;
m1._x = 0;
m1._y = 0;
m2._x = 600;
m2._y = 0;
_root.content.onEnterFrame = function() {
_root.content.moveLeft(reel_speed);
};
function moveLeft(nPixels) {
m1._x -= nPixels;
m2._x -= nPixels;
if (m1._x<-600) {
m1 = _root.content["slide_" + slide_count];
slide_count = slide_count += 1;
if (slide_count > slide_number) {
slide_count = 1;
}
m1._x = 550;
m1._y = 0
}
if (m2._x<-600) {
m2 = _root.content["slide_" + slide_count];
slide_count = slide_count += 1;
if (slide_count > slide_number) {
slide_count = 1;
}
m2._x = 550;
m2._y = 0;
}
}
What I have noticed is the first slide loads corectly, but then the rest don't work. Do I have a wrong path for all of the slides except for slide_1?
Flash Demo Reel: What's The Best Way To Put This Together?
Hey all,
I'm putting together a demo reel of a variety of Flash projects we've done.
I would like the resulting file to be controllable with a Flash controller, meaning I'd like users to be able to pause it, rewind, fast forward or scrub through it.
I already have a component for the VCR style controller but how would you suggest putting the various pieces together in a way that it will be controllable?
- Should I bring in each of the various Flash movies as a separate scene in an external movie, then export it as a SWF and load it into a holder MC?
- Should I bring each of the various movies into a separate slide? Would slides even work with a controller?
Is there a comletely different way altogether? What do you guys think?
Scrolling Picture Reel
Hi I need some help please. I am trying to accomplish a scrolling pic reel exactly like the one on this website http://www.lomamedia.com/V1.html. I want it in a bottom, scrolling continously without any pause or break in between and so far i have came up with this code only
onClipEvent(enterFrame){
this._x += 3
}
If someone knows the correct script please help. I can only use actionscript 1 that is what's compatible with my editor.
Web Site Intro Reel
hi im designing a web site for my friend he is a rapper and he is going to have a show and we want to make a coming soon reel for his web site on the reel ive seen it before where you could see all the things the website does how can i do that does anyone know of any info for this.
Flash Reel 4 Real
Hi guys..
Been out searching for a job/internship.. came a cross this realy cool company http://www.ontwerp.tv/v4/ here in Johannesburg SA check them out.
Well the boss there told me i should prepare a reel that showcases my animation skills alongside my Design skills ( obvious ) using any software that am comfortable with (which is flash8 ), ever since ive been doing alot of research on this and came accross some realy cool animations out there like http://www.andreaswannerstedt.se/session/ .... done by the famous Andreas Wannerstedt ( got me all worked up )
I would like to adopt a simmilar idea as this http://www.andreaswannerstedt.se/session/ on my flash reel , but obviously diffrent colours , layout and content ,... my main problem is i am not so sure what processes to follow to achive this kind of clean effects...
( is it action scripts , or just filters or both ? and how does he get to have all the graphics interact that well switching from scene to scene)
So if theres any flash gurus out there who have any ideas please holla and lets discuss ...
Thanks ... help will be much appreciated ...
am at www.klausy.net & affiliated at www.elektroliquid.com
Flash Demo Reel: What's The Best Way To Put This Together?
Hey all,
I'm putting together a demo reel of a variety of Flash projects we've done.
I would like the resulting file to be controllable with a Flash controller, meaning I'd like users to be able to pause it, rewind, fast forward or scrub through it.
I already have a component for the VCR style controller but how would you suggest putting the various pieces together in a way that it will be controllable?
- Should I bring in each of the various Flash movies as a separate scene in an external movie, then export it as a SWF and load it into a holder MC?
- Should I bring each of the various movies into a separate slide? Would slides even work with a controller?
Is there a comletely different way altogether? What do you guys think?
Flash Picture Reel
I'm a noob at Flash, but I need to make this scrolling-picture movie from a folder of images. There will be no reaction from the mouse; it will just be a picture gallery that scrolls horizontally.
This is what my boss gave me:
Does someone know of a good tutorial I could look at?
Flash Image Reel
hi guys !
from a long time ago i have been thinking how paramount pictures made the reel of the current movies playing
look at this : http://www.paramount.com/
anyone knows the logic behind that flash reel, or can give a link to a tutorial where teach this ?
cheerz !
Script To Move A Reel Of Pics?
Hi there
I have a website I'm working on, and I have the stage 700x400 filled with the first image from a reel of pics (the reel has 5 pics, each 700x400).
I want it to work so that when I click on one of the buttons, the reel moves along to the next pic in line (gliding in, not just budging up). I guess that means once you've clicked 4 buttons, it will start moving backwards? Not sure, to be honest.
Any ideas what kind of thing I need for this?
All help gratefully received.
Steve
Show Reel Wows (linking Several Files)
ok I've made 5 clips in Flash MX (they're all from different project files) .. but when I try to put them in a new project to produce a little show reel none of the clips work......
What's the best way to produce a little show reel??
ta,
mojo
Dynamic News Reel From XML - That Doesnt Scroll
Hi All,
Okay, I've created a flash (using MX) that I hard coded to have buttons (text w/ clear background) that scroll up to a point, stay there for 20 seconds or so and then scroll back down the way it came; then the next button scrolls up and so on ...
What I'd like to do is make this dynamic - meaning have a new button be created & placed into the animation dynamically from the text of a XML document (aka - not imaged based). That being said, though I've patched together a nice gallery using a similar technique, I'm really clueless on how to apply that to this. Creating/loading the XML I think I can handle. What I dont know is how to have the flash have the animated intro I want - then dynamically create all of the buttons (basically putting the new text on the clear background w/ the correct as link listed in the xml), have them go up then back down & move to the next. Then when all of the buttons are done, have the closing animation.
Does anyone know how to do what Im hoping to do? Know of any good tutorials on this (I've found things close but they arnt close enough)? Am I even being clear?
Thank you for any help you can toss me.
Creating A Showreel/demo Reel With Flash Movies
Hi,
I want to make a showreel/demoreel of my flash character animation work as opposed to making a portfolio website. It is purely flash movies with no interactivity and so I want to make a linear showreel (or just very long movie of my work). I have just found that it is near impossible to import flash .swf files as quicktime movies into After Effects as AE 7 doesn't seem to read the quicktime movies, or quicktime doesn't read the swfs, I don't really know.
Does anyone know of a quick way to edit my flash movies into a demo reel format? Are there any freeware packages that I could use. I would want to ouput to either swf or a quicktime file.
Many thanks in advance.
Text Effect Movie Into Main Movie
Ok i have my movie and my text effect, and when i use the targetMC code to put it in there it works except the text from the text effect only shows the "w" that it was made with instead of the text i told it to say, yet when i run it by itself it works fine. Plz Help! - EnSanity
thanks!
Run Button Inside A Movie Effect Outside A Movie
hi
I am working in flash 8 on Windows XP. I am creating a US Map Project . Under which when i mouse over on a particular US-state it's size is increased. I did it by using a movie clip. I made such moive clip's for each state of USA.
Now my requirement is when i mouse over on a particular US State it must grow its size. and further it must have few spots on that movie. on which when user clicks a small panel with some information about that location should be shown.
For this i made a movie for each US State. and set mouse over event .
on(rollover){
mcName.gotoAndPlay(2);
}
till here it works fine. But for further spots for locations i made button in each moive.
Now when i mouseover on movie it gives me desired results. But when i try to click on the button
inside that movie. It doesnt work.
Please Urgent Help is required .
Movie Effect
Can anybody tell me how I can make a movie in black & white and like so that you only see the silloute if you know what I mean.
That's when for example a man is completely white and you don't see the details like nose, ears, muscles,...
Does anybody know how I can do this???
Please help me!!!
Thanks in advance
Greetings
Ego The Movie Effect
Anyone know how to to the following effect.......it is a well know site......After clicking the link below go to ego the movie on the righthand side.
http://www.egomedia.com/default2.html
Thanks
Old Movie Effect
Does anyone know an effective way of making a movie look old, such as making it shake a little, or having bits in the way of a projector, adding faded or worn away edges?
Thanks for any help
Movie Effect
OK,
I want to have a picture being revealed by a series of boxes. Like the screen is black, but inside a box that moves across it u see the picture underneath. I think it can be done using layer masking. Any suggestions?
Help With Movie Effect
I crossed the movie effect, so you can make a script or something that you can make it look like an old movie.
url pls
OLD - MOVIE Effect
I did a search for old movie effect but nothing returned so I thought I would ask here.
How is the old movie effect done? You know, the one where the image shakes slightly, several lines appear randomly, dots flash.
I have an example that I found on a website. I'd rather not post the link (cause its not mine) until someone wants to see the example.
Thanks!
Daniel
Old Movie Effect
Hello!
I'm trying to archive an old movie effect (dust, scratches and a yellow tint) the .swf shows what I got so far.
I'm pretty happy with the result but I want:
1. The lines should not appear as often as they does now. It becomes stressful (I followed a tutorial, whats why I don't know how to do this myself)
2. Some help on how to make code that just slightly shakes the image (pink wallet) at random, not to much and not to heavy just small steps like in real old movies
The yellow tint is a moveclip with a slight change of alpha, I know that its possible to make a script for random alpha but I don't think thats necessary.
Thankful for help
/M
OLD - MOVIE Effect
I did a search for old movie effect but nothing returned so I thought I would ask here.
How is the old movie effect done? You know, the one where the image shakes slightly, several lines appear randomly, dots flash.
I have an example that I found on a website. I'd rather not post the link (cause its not mine) until someone wants to see the example.
Thanks!
Daniel
Please Help--old Movie Effect
I want to create a cartoon animation in flash. I want the background to animate and will look old..like old movies..scrathy..yellowish color.
I have searched everywhere but have failed..
Please do help
Effect Like In The Movie
HI, guyz... actually i been try to do text effect like wat u see in the movie.. such as.. sleepy hollow begin part.. where they show name and blah blah.. which fade blur then show the text... or even with an animation of lines then it became a text.. I hope my explain understandable.. hehe.. i got the picture but hard to put in words...
so anyone expert in visual animation i guess of flash expert please help me... thanx...
Old Scratchy Movie Effect
http://www.flashkit.com/tutorials/Sp...-754/index.php
I have been trying to mack this effect work and I must be stupid, because I can't even get the line to move.
This is what I've done:
1. Created a new movie 400 x 300 and colored it black
2. Inserted a movie clip symbol called "line" and drew a vertical line and placed it onto the movie.
3. Inserted a movie clip synbol called "dot" and drew a dot and placed it onto the movie.
4. Inserted a movie clip symbol called "actions" and placed it outside the viewable area.
5. All of the above was on layer one.
6. Then I copied and pasted the following action script into the actions for the action synbol:
onClipEvent(enterFrame){
_root.line._x=random(400);
}
7. I then tested the movie and expected the line to jump around and much to my dissapointment it just sat there
What did I do wrong?
Old Movie Intro Effect
I am trying to create an effect similar to an animated pie chart or the countdown to old movies where a circular graphic is displayed and is gradually replaced in a clock work motion by another. Can anyone tell me how I might do this or if there are any good tutorials on the subject. I have looked at an animated pie chart but it seems to have used mirror images half a rectangle to create the effect which is no good for a full image.
Any help would be much appreciated.
Text Effect Movie
I am pretty new to Flash. I can do everything that does not involve simple action script.
What I am looking for is a Smart Clip where all I need to do is change the animation (using tweens) of a single letter which can then be applied to an entire block of text. I know I found something like this way back when I was using Flash 4. All I would have to do was enter the text into a variable, change the animation to whatever I wanted, then publish.
I am hoping for a clip so I can simply drop it into any movie quickly.
I guess this is probably a lame request because it seems that something like this would be already available if it were easy to do. If it is, I haven't been able to find it on this site or any other.
If anyone knows of a tutorial that can show me how to do this, that would be great too.
Thanks for any help!
Help With Old Scratchy Movie Effect Please..
Hello all,
I have been browsing through the tutorials..In the Special Effects section on the 4rth page is a tutorial for making "Old Scratchy Movie Effect" i have followed the tutorial line by line to the T...But for some reason its not working...when i go to test i see my line and dot, and they do not do what the tutorial shows..Shows does anyone know what I might be doing wrong? i have tried everything that i could think of...Some help would be appreciated..Thank you to all who help me out
Thanks
Seeking Old Movie Effect
You know the old movies they have those count down, 54321 thing right ? and when it's counting they have the horizontal line static thing happening as well, I saw it here once but didn't have a chance to grab it and I cannot find it now ...
If anyone can give me a pointer where to look for....
thx
How To Create This Effect And Movie
this has some sort of simple mask which I can't seem to replicate wiht any luck. how's the best way to pull this off.
Also would the different scenes be in seperate movies or would this all be on the one time line.
Cheers.
Help With Linking Effect To Swf In A Movie
Howdy -
I got some great help earlier in this forum and just need a little more to finish things off.
I've got a button palate that calls up jpgs into a centered movie clip (that's where the help was before). Now I want to add a transition effect when the images change.
I found (I know) some code with an alpha tween I like, and I can apply it to the initial image, but subsequent images don't have the effect. In addition, the effect happens immediately upon load and then the picture dissapears.
So, attached are some relevent files. I'm pretty sure I've got the code in the wrong place, and linked to the wrong location, but I've tried all kinds of different things, and still cant get it.
Thanks
Eric
Old Movie Effect On Picture
Hi
I posted on here a long time ago with a project I was working on and got great advice from you guys, so heres another question
I have a black and white still image and want to have like an old movie effect on it, you know the crackling and lines thing, just to make it seem old and add some motion to the whole thing
If anyone knows any tutorials or can explain how this is done I will be thankfull
Cheers
|