Cover Flow In Flash?
Hello,
I downloaded itunes 7.1 yesterday and saw the coverflow feature.. Now I want to know if this is do-able for use on a portfolio website?
I'm a real actionscript noob.. but if someone helps me I can give him some credits on my website... (www.rolandpeelen.com)
greetzz
FlashKit > Flash Help > Flash ActionScript
Posted on: 03-11-2007, 06:42 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Cover Flow With Only Flash
is there a way to make a flash that looks like the itunes cover flow and use only flash no XML. PHP or Java can this be done?
Flash Cover Flow
On the Flash Player 10 Page, under 3-D Effects, there is a coerflow styled menu. Does anyone know if there is a Tutorial for creating a coverflow in flash CS4?
Edited: 11/21/2008 at 01:22:33 PM by macampbell_09
Flash Gallery With Cover Flow Effect
I have downloaded free version of itunesViewer and working on it. I found it was extensively using onEnterFrame which is taking lots of CPU, slowing the system.
there's function 'controlTheObject' which contains onEnterFrame code. Please help me to eliminate the use of onEnterFrame. Can there be other alternatives??
I have attachet the file i have been working upon.
Cover Flow
Hello,
I want to build a website and show my folio.
The way I want to display it is like the itunes coverflow.
here's the link
http://www.apple.com/itunes/jukebox/coverflow.html
just wanted to if it was possible to create this in flash...?
thanks
Cover Flow
I tried to make cover flow work, and i just couldnt get angle tweens right. they have some beauitful components out there for doing just this, but they cost money, and like most people, i want dont want to pay. So i was thinking if anyone could point me in the right direction for doing cover flow, or maybe has a script that does it. Anything helps. if you dont know what coverflow is its the iTunes thing with the pictures that flip across the screen.
Cover Flow - Continuous Icons
Hi,
I'm not really sure on where to start. If someone could point me in the right direction it would be much appreciated.
This is my whole load function
Code:
function loadNext():Void {
if (!loadedAll) {
var num:Number = current-1;
if (infostruc[current-1].loaded) {
var num:Number = current-Math.floor(distance/2)-1>=0 ? current-Math.floor(distance/2)-1 : 0;
while (infostruc[num].loaded && num<infostruc.length) {
num++;
}
if (num>=infostruc.length) {
var num:Number = current-1;
while (infostruc[num].loaded && num>0) {
num--;
}
if (num<=0) {
loadedAll = true;
}
}
}
var newLoad:MovieClip = this.createEmptyMovieClip("artLoad"+num, this.getNextHighestDepth());
newLoad.createEmptyMovieClip("art",newLoad.getNextHighestDepth());
newLoad._alpha = 0;
var mc:Object = {};
mc.number = num;
var artLoader:MovieClipLoader = new MovieClipLoader();
artLoader.addListener(mc);
artLoader.loadClip("./"+infostruc[num].art,newLoad.art);
mc.onLoadError = function() {
infostruc[this.number].loaded = true;
loadNext();
};
mc.onLoadInit = function(target:MovieClip) {
target._parent._width = frontCDWidth;
target._parent._height = frontCDHeight;
root["_bmd"+this.number] = new BitmapData(target._width, target._height);
root["_ref"+this.number] = new BitmapData(target._width, target._height);
root["_bmd"+this.number].draw(target);
var mc:MovieClip = target._parent.createEmptyMovieClip("gradient_mc", target._parent.getNextHighestDepth());
matrix = new Matrix();
matrix.createGradientBox(target._width,target._height,reflectionRotation/180*Math.PI,0,0);
mc.beginGradientFill(reflectionFillType,reflectionColors,reflectionAlphas,reflectionRatios,matrix,reflectionSpreadMethod,reflectionInterpolationMethod,reflectionFocalPointRatio);
mc.moveTo(0,0);
mc.lineTo(0,target._height);
mc.lineTo(target._width,target._height);
mc.lineTo(target._width,0);
mc.lineTo(0,0);
mc.endFill();
target._alpha = 40;
target._parent.beginFill(reflectionBackgroundColour);
target._parent.moveTo(0,0);
target._parent.lineTo(0,target._height);
target._parent.lineTo(target._width,target._height);
target._parent.lineTo(target._width,0);
target._parent.lineTo(0,0);
target._parent.endFill();
root["_ref"+this.number].draw(target._parent);
infostruc[this.number].loaded = true;
target._parent.removeMovieClip();
updateInfo();
loadNext();
};
}
}
If someone knows of a site or something where I can read up on how to do it, I'd really like to know.
Thanks,
ITunes Cover Flow Inquiry
Hey guys I'm wondering if anyone knows of a site that uses or has a tutorial on the iTunes Cover Flow idea. I was researching it a bit and found out that a Oliver Steele was the creator of the Cover Flow view and Apple had purchased the technology and intellectual property from him. Anyways if anyone knows of a site that has something @ all on the Cover Flow ie. Tutorial or examples please reply
Thankx a billion
Smccullo
AS2 - Cover Flow = XML + Listener + AttachMovie
Last edited by bmcc81 : 2008-11-18 at 13:24.
Hi,
I'm working on a Itunes continuous Cover Flow. I've made this through looking at other peoples projects, so I'm not exactly 100% on how I did it. But I do get the just of it and I do know AS.
The problem is I can't get the external images from my XML to load into my created MovieClips.
So what's a happening is the following.
So basically I load XML with:
PHP Code:
var x:XML = new XML();
x.ignoreWhite = true;
var urls:Array = new Array();
var captions:Array = new Array();
var whoIsOn:Number = 0;
x.onLoad = function(success) {
var number:Array = this.firstChild.childNodes;
for(i=0;i<number.length;i++) {
urls.push(number[i].attributes.url);
captions.push(number[i].attributes.caption);
trace(urls[i]);
trace(captions[i]);
mc = this.createEmptyMovieClip("mc_"+i, i);
}
loaded();
whoIsOn = 0;
Download_On_Itunes.caption.text = captions[0];
// mc.attachMovie("my_mc"+((i%12)+1),"urls"+([i]+1),1);
}
x.load("gallery.xml");
Then I create a for loop and attachMovies from the library.
PHP Code:
//INIT-----------------------------------------
for (var i = 0; i<num; i++) {
mc = this.createEmptyMovieClip("mc_"+i, i); // THIS ONE I COMMENT OUT AND NOTHING WORKS
mc.attachMovie("my_mc"+((i%12)+1),"mc_"+i,1); // attach MovieClip from Library.
// my_mc.loadClip("images/DIG2-2750.jpg", 1);
// my_mc.loadClip(mc[i],urls[whoIsOn]); // USE THIS ONE OR THE ONE ABOVE DOESN'T WORK
// mcLoader.MovieClipLoader(mc[i],urls[whoIsOn]);
// Place text inside Download_On_Itunes.author.text for the first time only
Download_On_Itunes.author.text = linkArrayTitle[0];
// this.my_mc1.art_mc1.loadMovie("images/DIG2-2750.jpg", 1);
// mc.loadMovie("urls"+([i]+1), 1 );
mc.index = i;
// Numbering for debug
var ref:ReflectionFlipper = new ReflectionFlipper(mc, 3, backgroundColor);
refArray.push(ref);
// MC Fuse
//set MCs position if they are allowed to show up. And Fuse them.
if (mc.index<=lastP) {
mc._x = this["guideLine"+i]._x;
loopArray.push(mc);
if (mc.index == centerP) {
mc._xscale = mc._yscale=0;
mc.scaleTo(scaleVal,.5,easingType,.5,{startfunc:'calcRotation', startargs:mc});
Download_On_Itunes.swapDepths(this.getNextHighestDepth());
Download_On_Itunes.captions.swapDepths(this.getNextHighestDepth());
} else {
mc.tintTo(backgroundColor,tintVal,0,easingType);
}
} else {
mc.tintTo(backgroundColor,tintVal,0,easingType);
mc._visible = false;
// set invisible MC in deeper Level.
mc.swapDepths(-1*mc.index);
}
//Y MC
mc._y = yLevel; //set all MC's _y position
// MC
//
calcRotation(mc);
mc.onPress = function() {
home.sequenceFlg = true;
sequenceSlide(this);
};
//
//MC in both sides are invisible
if (i<1 || i>=lastP) {
mc._alpha = 0;
mc._visible = 0;
}
}
I also tried to force in the images by using a MovieClipLoader();
PHP Code:
// New MovieClipLoader
var mcLoader:MovieClipLoader = new MovieClipLoader();
var mcLoaderObj:Object = new Object();
mcLoaderObj.onLoadProgress = function () {
//loader.percent.text = Math.round((loaded/total) * 100)+"%";
}
mc.onLoadInit = function(target:MovieClip, loaded, total) {
// Force image size
target._width = 100; // Adjust this
target._height = 100; // Adjust this
mc.loadClip("images/DIG2-2750.jpg", 1);
}
mcLoader.addListener(mcLoaderObj);
But whatever that didn't work either. Someways I can get the images loaded in, but I lose the REFLECTION and ROTATION. Which are external Classes.
I really hope someone can help me, because I wasted all last week on this and it's looking bad this week too. I've used all my knowledge.
Could it be because of LINKAGE of MCs? Stopping the image information to go through?
I've also attached my files in case some Amazing person would give me a hand.
Click Here To Download
Thanks in Advance
IN FLASH 8
[CS3] Flash Window-cover Thing?
Yeah, I don't know what to call it...
Anyway, I want to do this:
(an example of what I want to do is on newgrounds.com) When somebody clicks a link, a flash window pops up on the same window the link was on, but on top of the previous html/php/et cetera page. This happens on newgrounds.com on any flash movie/game... you click the link to view the game/movie, and up comes a window (a FLASH window (ooh magical)) that contains the game in the middle. That is what I want to replicate. Any ideas/knowledge?
Flash Banners That Cover The Page
I need to make a banner which has a rollover button. When the button is rolled over part of the content on the page is covered. In other words the banner grows out into the page.
I know how to do this but it would mean making a lot of white space for the growing banner. What i want to do is to cover the page when rolled over. Any ideas on how to do this? Would it involve two swf files? As you can see i have no clue. Here is an example of the effect I'm after.
example
You have to use IE for this
My Flash Movie Cover Other JS Elements
Hello all,
Visit this site: http://www.comelecinca.com/v2/
As you can see, there is a YELLOW menu, when you place your mouse pointer over the menu, it unfolds the submenu options. The problems is that those submenu options remains hidden under the flash movie. Its something like the flash movie lapels the JS menu.
What can I do about it?... Is there any property to make my flash movie go to the background?
Thanks in advance!
How To Have A Flash Movie Cover The Page's Frameset
I'm wanting a button in the movie to load a page in the same window, so thus I have to use frames. But I need the flash object to NOT be in the frameset, BUT be on top of it.
I've tried having the flash in a layer, and then iframes in a layer that is under it, but the button won't load the pages into the iframes, I've tried both ID and NAME in the iframe tags.
I can layer on top of a table, but tables can't contain webpages, unless you use the iframes which haven't worked.
And I've tried using z-index to bring the flash movie infront of the frameset, but the frameset overrides everything, which is retarded.
Or maybe someone can tell me how to load a webpage WITHIN a flash movie? I've searched high and low for how to do this, but apparently seems to be an impossible task.
This issue has caused hours of frustration, and a frustrated artist is NOT a good thing.
[CS3] Make Flash Movie Cover The Browser
Hi, i have a question which bothers me.
I have make a flash website 100% width and height. I want to place a button so that when user click it, it goes in a full mode.. which removes the browser url bar also.. I've seen this in some websites but can't actually do it.
Can someone help me with it plz?
How Do I Scale My Flash Move To Cover The Whole Browser Window?
Hi fellow flashers.
For my latest project I want to build the whole site in flash and make the movie cover the whole browser window...
My question is.... how do i do this?
What size do i make my flash movie?
Is there code that i inbed in the html?
Will it scale for different resolutions?
What are the negitives of doing this?
If someone could answer these questions then I will be very happy, so happy infact ill do a full 360 on my office chair.
Much love.
Dynamically Retrieve Album Cover For Mp3 Loaded Into Flash
i know there is a way to do this, but i'm not sure where to start. it has something to do with amazon.com and their database of album art.
basically i want an mp3 file to display its corresponding album art.
has anyone done this before?
2 Column Text Flow In Flash?
Does anyone have a suggestions for flowing content (via xml) into 2 columns of text in flash? I realize I can use a scroller, however, the layer requires text to flow across 2 textfields, thanks.
Can I Use Flash To Create A Simple Flow Diagram?
I have a Cold Fusion application and would like to create a simple flow diagram as follows:
demonstrate an application object in the middle of the screen. To the left I would like demonstrate 1 or many inputs to that middle object - each one is connected to the center object with an arrow-headed line. TO the right I would like to demonstrate a series of outputs - each one connected to the center object with an arrow headed line. The names of all objects will be pulled from Cold Fusion dynamically.
I think that integrating Flash with Cold Fusion is the way to go - but need some help verifying that this is true.
I would like to understand if it is possible to do this with Flash and if so, can anyone point me to some articles or tutorials that will help me to build this? And/Or point me to examples that are similar?
Flash/Flex AS3 Dynamic Flow Diagram
Ok so there was a program in AS2 to graph a tree and connect the nodes. So I translated the program created by "jsebrech" (thank you) and found here -> http://www.actionscript.org/forums/s...ight=flowchart from AS2 to AS3. I am posting it so that anyone who needs it can use it. One thing of note I put a 'return' in the CompactHorizontally function in LayouGraph.as because it has a bug in the original program and didn't have the time to find out how to fix it. If anyone is interested in looking for it read the discussion in the original posting to find out a little about the program!
Enjoy!
Text Flow In Flash: Translation Problem
I've built an educational training program in Flash originally in English. I am now having to translate it into Hebrew and Arabic but I cannot get the text flow in Flash to change from left to right, to right to left. I have changed all of the settings in Windows Control Panel and have unchecked the "Right to Left text flow" in Flash preferences. Any suggestions???
How Do You Make Large Flash Sites Flow Better, Faster. Please Help.
Stupid question, I've made a few flash sites before but luckly they ended up begin smallish(~5 pages etc, <.5mb) so download times were not that bad, I would just end up throwing everything in one big scene. Now I have to make a big site and the flash file will be larger (>2mb).
So how do I break-up the site when I'm making it to decrease the time it would take to get the flash site started and help it flow better when users jump from page to page? Do I put different pages in different scenes? Will that help? Or do I put different pages in different flash files and call them from other flash files? Do I convert the other pages into movie items and call them from the first scene to get started and then go from there?
IN OTHER WORDS HOW DO I MAKE LARGER FLASH SITES WORK LIKE THE PROS DO? All I need is a clue to go in the right direction so I don't waste time fixing a big mess.
Thank you for your time
Michael (aka Gnorts)
How To Cover The Ones Duplicated
why whatever i input numbers in the depth input-box of DuplicateMovieClip, the ones duplicated are never covered by other objects above them? thanzz
Blurry Cover?
I know I'm probably dain bramaged, but I can't figure out how to create an effect I want. I want a clear but blurry panel to cover part of a background for text to go on. here is an example of the technique http://www.millang.dk/ Anyone help me figure out how to do it?
Invisible Cover
I want to make a Invisible cover that will only cover objects in one layer making it possible to see the other layers behind (X-ray glasses)
I.E. a black box and a smaller red box in side of it. Moving hte invisible cover over the center of the red box will cause it too look like there is a hole in the middle of the red box... then removing the cover will make make the red square whole again.
How Do You Make A Dvd Cover?
hello
i need to make a dvd cover on flash. is there any premade setup for this?
if not is there anyway i can set my own demensions to make one? i think flash mx has preset ones but not set to the exact dimension value of a dvd cover.
im pretty sure a dvd is 272mm x 184mm.
i need is to be printed out and set up as one piece of paper, with a front and back and spine that gets folded.
hopefully there is a setup already made for this?
please help! thankyou
How To Cover Text (******)
Hi,
On a input text box, how do I replicate a password box (when typing, only *** appears, but the text actually gets typed in)
...........Cover Preloader Help...........
I recently downloaded Billy T's http://www.tableau.com.au tutorial on the cover preloader and I was curious on how to load a home page movie when my site first opens (like a welcome) and I want to be able to click on a button and then have the cover go over the home page movie and then open up with a different loaded movie exactly how it works now... My problem is that I load an external home page movie when the site first opens and when I click on a button, the next loaded movie is in front or behind the home page movie... Like the home page movie doesn't go away when I load another movie basically........
Any help will be extremely helpful,
Cover Preloader Help Please
I downloaded the http://www.tableau.com.au tutorial on the cover preloader and I followed it corerctly and it worked, but I want to load a home page, and external movie as well. I want to be able to click on the buttons and it will play the cover sequence to load another movie.
Quote:
Originally posted by ForTheLoveOfGod
I recently downloaded Billy T's http://www.tableau.com.au tutorial on the cover preloader and I was curious on how to load a home page movie when my site first opens (like a welcome) and I want to be able to click on a button and then have the cover go over the home page movie and then open up with a different loaded movie exactly how it works now... My problem is that I load an external home page movie when the site first opens and when I click on a button, the next loaded movie is in front or behind the home page movie... Like the home page movie doesn't go away when I load another movie basically........
Any help will be extremely helpful,
I have the same problem.....anyboby please help me....all help is greatly appreciated.
Thanx in advance!
Jpg Cover Loader, Please Help.
hello all, i'm currently trying to modify the cover Preloader i found on tableau.com.au
tute
I want to make it load a jpg into the _root.content instead of a swf. I can't seem to get the paths right as in this particular tutorial the preload code is on the first frame of the loaded swf's, content1, content2 and content3. I have tried to move this code into the loadBar movieclip and modified it but i can't get it right.
I can't post a .fla now or my exact code, but does anyone think they could do it?
Also i wouldn't mind making it a bit more full proof, as well you click on another button while the loading process is happening, it messes with the movie.
Thanks a lot in advance
Cheers!
Cover Up A Rollover
I am creating a short training module in Flash 8. I have a few invisible buttons over some of the text - when the user rolls over that text, a movie clip displays some visual information pertinent to that text. I also have a few other "on-release" buttons that open up movie clips that contain larger graphics. The problem: when the second movie clip is open and on the stage, the invisible buttons associated with the text - that are now under the larger movie clip - are still accessible. Is there a way - scripting or otherwise - to prevent this "bleed-through" effect.
Many thanks for your help.
Taking Cover
okay, im making some kind of shooter game and does anyone know how to make something like that you press space while standing next to some object, you'll take cover?
Cannot Seem To Cover Mc.onRollOver With Another Mc?
Hello...
I have built an onRollOver event handler on a movie clip called test:
test.onRollOver = function(){
this.gotoAndStop(2);
}
This works fine, but if I put another movieclip on top of the test clip, the test clip's onRollOver area is still hot? Is this just the way it goes? Does anybody know how I can remedy the problem?
I have attached a very simple fla with my files. In it, you will see two squares (one on top of another). The one on the bottom has the rollover effect. If I happen to be in its area but over the other clip, the bottom clip is still active. Like my top mc is "transparent".
I assume I could assign an onRollOver event handler to the top clip that does nothing, but this doesnt seem like a very elegant solution.
Thanks.
CD Cover Template
Hi guys,
where can i find a cd cover template in illustrator extension or if there is one?
Or do you know any other forum that I can join for this type of help in Illustrator?
Please help. Thanks.
Bobby
Last edited by bobbywong03
How To Cover A Button?
Hello
I'm making a flash site wish scrolling line of little pictures. Those little pics are buttons. That scrolling line goes just on the part of the page. And so that the rest pic doesn't how up where they are not suppose to I covered them. But if you would put mouse over that place it still changes to the "hand". And If you would press on it if still work as a button. Is there a way to cover a button so that it doesn't show up if I don't want it to?
Cannot Seem To Cover Mc.onRollOver With Another Mc?
Hello...
I have built an onRollOver event handler on a movie clip called test:
test.onRollOver = function(){
this.gotoAndStop(2);
}
This works fine, but if I put another movieclip on top of the test clip, the test clip's onRollOver area is still hot? Is this just the way it goes? Does anybody know how I can remedy the problem?
I have attached a very simple fla with my files. In it, you will see two squares (one on top of another). The one on the bottom has the rollover effect. If I happen to be in its area but over the other clip, the bottom clip is still active. Like my top mc is "transparent".
I assume I could assign an onRollOver event handler to the top clip that does nothing, but this doesnt seem like a very elegant solution.
Thanks.
Cd Cover Collision
Greetings Every1!
Right now I'm working on page for a reknow reggaeton artist. I want to make the cd cover of the album of the artist, people could play around, you know, like in an specific area , users could drag the album cover and if they release it, the CD is going to hit the corners and goes like a to bounce as if he was a little floating. I saw some type of movie clip using the technique of drag and collision but, some idea of how to accomplish this?
thanks for all your time!
Cover Up A Button Impossible?
How can I block a button?
how can I cover a button so that the cursor can't push it?
I don't want the user to push a button when I cover it, is this possible?
I've tried many strategies, if this problem is like the others I've run into, there's a clever solution...
do you have it?
Many thanks in advance, I'm on the verge of some stuff I'm happy with if I can get this to work. I've got work arounds in the wings, but they add complexity.
Has Anyone Here Ever Done Album Cover Work?
I just got a job to create a cd cover, insert, and back. So far the producer really loves the work that I've done and wants me for the job instead of the other graphic artist's that he's used. This is my first time, and I created most of the graphics using Macromedia Fireworks. How much should I really ask for??? I feel that even though I new to this field of work, I did do an hell of a good job. But I have no clue when it comes to what people charge in this field of work.
Moving Cover Effect
Does anybody know how to do this cool covering and uncovering efect in Flsh 5. An 2 example website in which this effect is used are http://www.2advanced.com and http://www.itcatmedia.com .
How Do You Get An Image To Cover Your Whole Website
how do you get an image to cover your whole website..
like i must be using a funny setting...
beceause i have seen images as the background...
that go all the way to the edges....
mine stop and have a black background...
which is my stage color
i have my publish settings for percent....100%
anyone know how to get around this????????????????
Audioplayer Cover Animation
Hi all, i'm new here. Sorry for the bad english.
I'll try to explain my problem:
I've created an audioplayer that is a movieclip. in it, over the buttons there is an invisible button with the audioplayer shape on the hit frame.
the audioplayer is covered by a cover that closes when the mouse go out the invisible button (onRollOut) and when the mouse go over (onRollOver), the cover opens.
the audioplayer instance name is: mc_audioplayer
the audioplayer cover instance name is: mc_audioplayer_cover
the invisible button instance name is: mc_audioplayer_invbtn
on the _root timeline i write this:
mc_audioplayer.mc_audioplayer_invbtn.onRollOver = function() {
mc_audioplayer.gotoAndPlay("open");
};
mc_audioplayer.mc_audioplayer_invbtn.onRollOut = function() {
mc_audioplayer.gotoAndPlay("close");
};
in mc_audioplayer there are 6 layers:
actions
labels
inv_btn
cover
buttons
background
the problem is that now the buttons can't be clicked because there is the invisible button over them. How can I resolve the problem without loosing any functionality?
thankyou a lot.
How Do I Make The Swf Cover The Whole Screen?
Hey people.
I need a swf file i have make to run on some computers with the annimation just looping. is there any way to make the whole page white with the annimation playing. eg at the moment you can see the top bars and the start menu at the bottom. how do i make the movie cover the whole screen???.
Thanks people
Stef150
Yugop Shift Cover
http://www.shift.jp.org/ba/
How was this created? if someone has alreday answered this, please point me in the right direction. I'm interested in the effect of clicking through the different layers of text.
Put Your Picture On A Magazine Cover
I am interested in creating a flash-based application that will allow a user to:
1) Upload a photo of themself
2) Place a logo/change logo color
3) Export that image to print and/or send to a friend
Has this been done before, any advice?
Making The Swf Cover The Whole Browser
Hi!
I was wondering how you could make the flash movie cover the whole browser space that is available.
Like in this site example
Its probably something that is asked or written about on the net a lot, but I couldn't find the right words to google I guess.. :(
Thanks in advance for the effort..
|