Cool Effect In Apples Itunes Store
I am sure this is done in flash but i am not 100%, can anyone tell me or show me a link on how to create a similar thing to the movie sorter in iTunes. This is when you log on to the store and in the middle at the top is sorts through the latest movies available.
Can anyone help please,
Neil
Adobe > ActionScript 1 and 2
Posted on: 05/29/2007 06:25:34 AM
View Complete Forum Thread with Replies
Sponsored Links:
Gallery Like The ITUNES STORE
Hi
I would like to build a gallery like the ITUNES STORE which displays images using a slider and seems to enlarge the image on a horizon line see: music video store
can anyone lead me to code, components or tutorial
thx
v360
View Replies !
View Related
Gallery Like The ITUNES STORE
Hi
I would like to build a gallery like the ITUNES STORE which displays images using a slider and seems to enlarge the image on a horizon line see: music video store
can anyone lead me to code, components or tutorial
thx
v360
View Replies !
View Related
ITunes Store Movie Navigation
To All:
I'd like to create a navigation in FLASH like the one seen in iTunes Store > Movies.
With the Movie posters that you can scroll through. Does anyone know of a template like this already created that is for purchase? Just curious. I'm not that knowledgable in ActionScript and it would probably take more time than I have right now to build.
Any thoughts or ideas would be greatly appreciated!
Thanks!
View Replies !
View Related
ITUNES STORE STYLE GALLERY
Hi
I would like to build a gallery like the ITUNES STORE which displays images using a slider and seems to enlarge the image on a horizon line see: music video store
can anyone lead me to code, components or tutorial
thx
v360
View Replies !
View Related
[CS3] Itunes Art Screen Saver Effect
Does anyone know where to get code to create a grid of square images like album art and have them randomly flip over one by one to a different image?
exactly like apple's screen saver on the itunes art setting. (not coverflow effect)(not one big image)(not a mosaic of little images making one big image)
I am looking for something with each square being a different image like the mac screen saver where the area is populated with different images at random of cover art and each square rotates horizontally one at a time to reveal a new different image. I'm not looking for a mosaic or one image broken up in squares for a transition. I need to display about 30 different images which will be buttons to view the large image as a pop up or on a different page.
In the sample image, one square is currently flipping but it moves on to every square one at a time at about a rare of one every 3 seconds.
creating for flash site.
Thanks
View Replies !
View Related
Itunes Art Screen Saver Effect
does anyone know where to get code to create a grid of square images like album art and have them randomly flip over one by one to a different image?
exactly like apple's screen saver on the itunes art setting. (not coverflow effect)
creating for flash site.
Thanks
View Replies !
View Related
Too Many Apples
Hi,
Im trying to create a game where 100 objects randomly fall from the top of the screen and the player has to catch them in a basket that moves from left to right at the bottom in sync with the mouse movement.
So far Ive managed to get the basket movement working but im having difficulty with the falling objects. I can get them falling randomly but i can't figure out how to set a limit on how many fall and also to slow down the randomness!! Can anyone please help me.
At the moment Ive got the following:
One object called "obj" converted to a symbol which is then converted to a mc called "ani_clip". Inside the movie clip I have created the motion tween from the top of the screen to the bottom which begins from kf3 to kf15. Kf's 1 and 2 are blank.
Ive then got an actions layer with two kf's. The first kf contains the following code:
function start_play(clip)
{
rectw = 550; // size of the main stage
recth = 400;
// rand position
xpos = random(rectw-20) + 10;
setProperty(clip, _x, xpos);
setProperty(clip, _y, ypos);
setProperty(clip, _xscale, xyscale);
setProperty(clip, _yscale, xyscale);
clip.gotoAndPlay(3);
}
// random delay
threshold = 25;
num = random(30);
if(num > threshold) {
start_play(this);
}
and the second just has a gotoAndPlay(1); command.
Then finally ive got this piece of code on the first kf of the main stage:
for(i=1; i<30; i++) {
duplicateMovieClip("ani_clip", "ani_clip" + i, i);
}
It works great but im not sure what to do next to slow down the randomness and limit the falling objects to 100. Im fairly new to flash so any help would be most greatfull.
Thanks, Bobby
View Replies !
View Related
Apple Store Movie Sorter Effect
I am sure this is done in flash but i am not 100%, can anyone tell me or show me a link on how to create a similar thing to the movie sorter in iTunes. This is when you log on to the store and in the middle at the top is sorts through the latest movies available.
Can anyone help please,
Neil
View Replies !
View Related
Random Apples
Hi,
Right here i go. I'm trying to make this game where apples fall out of a tree from the top of the screen to the bottom. I want the apples to appear at random places along the x axis at the top of the screen.
I have looked at loads of tutorials about randomness but i just dont get it . I have also used a script that i found in the "flash" help, but the apples only flash on and off the screen and slowely that flashing slows down, (here is the script below)
onClipEvent (enterFrame) {
amount = 10;
while (amount>0) {
duplicateMovieClip (_root.apple, "mc"+i, i);
setProperty ("mc"+i, _x, random(400));
setProperty ("mc"+i, _y, random(50));
i++;
amount--;
}
}
Please can anyone explain to me why the apples only flash on and off and how can I stop this (or just explain what is happening here). I'm new to actionscript and have no programming experience.....
View Replies !
View Related
Function Not Always Finishing, Apples And Monkeys
Help! I'm having a bit of trouble. I have a card memory match game.
When two cards match a function is called.
-the matched set of cards are put in temp variables (so that if/when new cards are selected before the match is removed from stage, they can be assigned as the most recently clicked cards),
-there is timer delay of 2 seconds and
-TIMER.COMPLETE calls the function holdCards to remove cards from the stage.
However the problem is when one set of cards (say apples) is matched and then a second set matched quickly right after (say monkeys), holdCards only runs once (for monkeys). Matched apples stay on the stage.
I don't know how to go about resolving this issue, since the 2 second delay is crucial.
Ugh, hopefully that is clear...I've been looking at the code for way to long. Thanks in advance.
View Replies !
View Related
Cool Effect
I wish to use an effect similar to the one used on www.slamminvinly.co.uk .
Its the loading scene, with the radioactive sign.
Any ideas???
Thanks
StockY
View Replies !
View Related
Cool Effect
http://usuarios.lycos.es/rclweb/in.swf
Actiopn script:
onClipEvent (load) {
function doTransition () {
var currClip = this["pic" add currNum];
var aboveClip = this["pic" add (currNum - 1)];
var tmpH = ((currNum - 1) * maskHeight);
currClip._y = tmpH;
currClip._yscale = 100;
aboveClip._y = 0;
aboveClip._yscale = tmpH * 10;
currClip._visible = true;
aboveClip._visible = true;
currNum--;
if (currNum == 0) {
tFinished = true;
}
}
function doStuff () {
if (!tFinished) {
doTransition();
}
if (!done) {
if (tFinished) {
//--Next scene
done = true;
}
}
}
if (_level0.soundIsOn) {
scanner = new Sound (this);
scanner.attachSound("scan");
scanner.start(0, 999);
}
tFinished = false;
maskHeight = 10;
var tmpNum = 35;
i = 1;
while (tmpNum >= i) {
this.attachMovie("pic", "pic" add i, i);
var tmpClip = this["pic" add i];
tmpClip._y = (i - 1) * maskHeight;
tmpClip.image._y = (i - 1) * (-maskHeight);
tmpClip._visible = false;
i++;
}
currNum = 35;
}
onClipEvent (enterFrame) {
doStuff();
}
Somebody can orient to me, with a similar example or more simple
Plis
View Replies !
View Related
Cool Effect
Does anyone know how to achieve the cool picture effects at the website where a mask slides back and forward following your mouse. And also the frame resizing evertime you select a new pic.
Cheers.
View Replies !
View Related
Cool Effect
Hello all,
i've seen an effect i'd love to use but have no idea how it works... If you go on the website http://www.imagevuex.com/images/http://www.imagevuex.com/images/ you'll see that the pictures that are loaded have a change of saturation while loading and when passing over the picture. Where can we manipulate a picture's saturation in flash?
thanks for your help
priff
ps the link given comes from www.mjau-mjau.com! they developped a mp3 player and image viewer quite cool
View Replies !
View Related
Cool Effect, But How Do They Do It..?
I Hope someone can tell me how they create the effect that follows over the outline image of the people on the right as if they would be glowing.
http://www.adnutech.com/marketing_site/company.php
I hope someone can tell me how they create this or at least a tutorial I can go to.
Thanks to anyone who can help.
View Replies !
View Related
Cool Effect.. But How Do They Do It?
I Hope someone can tell me how they create the effect that follows over the outline image of the people on the right as if they would be glowing.
http://www.adnutech.com/marketing_site/company.php
I hope someone can tell me how they create this or at least a tutorial I can go to.
Thanks to anyone who can help.
View Replies !
View Related
Cool Effect
Does anyone know how the did this effect when the banner image loads.
http://www.simplyinteractive.net/mainframe.htm
When you click another page it changes out the picture but the effect that revels it is what I am trying to do. Any suggestions on how to get this effect. Thanks
View Replies !
View Related
Cool Effect How ?
Hey guys take a look at this site..
http://www.eccentris.com great site cute girl
but the best is the filter effect !!!
how can i do that??? there masks code.. etc etc.. but i really don't have a clue how to start so if someone knows of a tutorial or example to make pls help . thanks alot
View Replies !
View Related
This Effect Is Cool
Quote:
anyone know how to make this effect? riple like but more on pinching... so sophisticated!
so, any comment on how to mkae this? pls tell me... thx!!!
http://www.templatehelp.com/aff/prev...e2.html&i=6453
and also this one...
http://www.templatehelp.com/aff/prev...e2.html&i=6109
hmm, i can't get any idea from that... but tq anyway...
but the effect is start from center to the outside..
View Replies !
View Related
Cool Effect
Hello, does anyone know how to create effects with flash similar to the ones at www.rockrivermusic.com ?? Those moving light effects in with the "tale" in blue.. anyone knows of tutorials for this kind or other nice effects?
View Replies !
View Related
Cool Effect... How Do You Do That?
Check this out
http://www.hypertemplates.com/templates/8274.html
I love how when you click one of the buttons that curtain comes down and covers the content then retracts and the new page is displayed. How did they do that?
I have been trying to add a seperate movie with the curtain that plays when the button is clicked and then on the same release have the new content appear but I find that when I click the button the content changes before the curtain comes down. Can I delay the change some how? I thought to just put a little AS into the curtain clip itself like this:
The content clip is called "conten" an the curtain clip is called "tran"... "gogo" is the name of the first frame in the curtain clip.
BUTTON:
on (release) {
if(_root.b<>1){_root.b=1;
_root.tran.gotoAndPlay("gogo");
}
}
This is what I put in the curtain file: I also tried it without the Y thing (replacing Y with _root.b ) and it did not work... ANY IDEAS? Maybee I am going about this the wrong way....
_root.b= Y
if(Y = 1){
_root.conten.gotoAndPlay("start1");
}
if(Y = 2){
_root.conten.gotoAndPlay("start2");
}
if(Y = 3){
_root.conten.gotoAndPlay("start3");
}
if(Y = 4){
_root.conten.gotoAndPlay("start4");
}
if(Y = 5){
_root.conten.gotoAndPlay("start5");
}
View Replies !
View Related
[F8] Really Cool Effect In An Ad..
I was wondering if anyone knew how I could go about creating a similar effect to the snazzy purple and blue whizzes in this ad:
http://smg.photobucket.com/albums/v7...dcoolspell.swf
A friend tried helping me with the AS but I'm not very familiar with it..
[Action in Frame 1]
function bannerClick()
{
trace("Banner Clicked");
} // End of the function
function manaButton()
{
_parent.loadMana();
} // End of the function
function starsignButton()
{
_parent.loadStarsign();
} // End of the function
function wipe1()
{
if (mask1._x < 85)
{
mask1._x = mask1._x + 15;
particleGen(mask1._x + 130, 50, 5, 10, 10);
}
else
{
mask1._x = 85;
} // End of the function
} // end if
function wipe2()
{
if (mask2._x < 20)
{
mask2._x = mask2._x + 15;
particleGen(mask2._x + 225, 104, 5, 10, 10);
}
else
{
mask2._x = 63;
} // End of the function
} // end if
function wipe3()
{
if (mask3._x < 33)
{
mask3._x = mask3._x + 15;
particleGen(mask3._x + 222, 150, 5, 10, 10);
}
else
{
mask3._x = 33;
} // End of the function
} // end if
function wipe4()
{
if (mask4._x < 75)
{
mask4._x = mask4._x + 15;
particleGen(mask4._x + 145, 205, 5, 10, 10);
}
else
{
mask4._x = 75;
delete("onEnterFrame");
} // End of the function
} // end if
function wipe5()
{
if (mask5._x < 22)
{
mask5._x = mask5._x + 15;
particleGen(mask5._x + 240, 120, 10, 20, 20);
}
else
{
mask5._x = 22;
delete("onEnterFrame");
} // End of the function
} // end if
var pCount = 0;
var colorArray = new Array("4df1fb", "4263ab", "4a96c7", "77befb", "024f86");
function (theX, theY, theSeed, theAreaX, theAreaY)
{
();
();
();
this;
for (i = 0; i < theSeed; i++)
{
theSpark = this.attachMovie("spark", "spark" + pCount++, pCount, {_x:theX + (random(theAreaX) - 20), _y:theY + (random(theAreaY) - 10)});
theSpark.vX = random(8) - 4;
theSpark.vY = random(8) - 4;
theSpark._rotation = random(360);
"0x" + colorArray[random(colorArray.length)];
new Color(theSpark);
new Color(theSpark).setRGB("0x" + colorArray[random(colorArray.length)]);
theSpark.onEnterFrame = function ()
{
(this);
this;
this._x = this._x + this.vX;
(this._y, this);
this.vY = this.vY - 0.200000;
this._y = this._y + (this.vY - 0.200000);
this._alpha = this._alpha - 5;
this._yscale = this._yscale - 3;
this._xscale = this._xscale - 3;
this._rotation = this._rotation + 5;
if (this._alpha >= 0)
{
(this);
removeMovieClip(this);
} // end if
(this);
} // End of the function
} // end of for
();
();
();
} // End of the function
particleGen = function (theX, theY, theSeed, theAreaX, theAreaY);
// [Action in Frame 12]
this.onEnterFrame = wipe1;
// [Action in Frame 28]
this.onEnterFrame = wipe2;
// [Action in Frame 47]
this.onEnterFrame = wipe3;
// [Action in Frame 63]
this.onEnterFrame = wipe4;
// [Action in Frame 103]
this.onEnterFrame = wipe5;
// [Action in Frame 165]
expandStarsign.play();
this.buttonMana.onRollOver = function ()
{
manaButton();
} // End of the function
this.buttonStarsign.onRollOver = function ()
{
starsignButton();
} // End of the function
// [Action in Frame 185]
stop();
View Replies !
View Related
Cool Effect
This is a very simple but very cool effect made using Photoshop's threshold feature and some creative masking in Flash. Check it out.
http://www.paddyduke.co.uk/lab/subway.htm
Download the .fla file HERE.
thanks
Paddy
View Replies !
View Related
Cool Effect
I was trying to find a cool design or idea or anything for my new site and I came up with this:
FLA
SWF
Its just a cool little blur effect...kinda thing
View Replies !
View Related
Cool Effect
would anyone know how to achive this transition effect on this templete site, or know which direction to point me in
http://www.templatehelp.com/preset/p...ELd6LeJ4BZOzPg
View Replies !
View Related
Cool Effect
Hi I really like the effect as found at http://www.bsfllp.com/flash.htm
I would like to know
a) how you get that masking thing happening
but mainly
b) i like the way it scrolls is and seems to really slow down.
i looked up and found this tute
http://www.kirupa.com/developer/flash5/slidingmenu.asp
but when i tried it with larger images everything went nuts.
can any one demysify??
Thanking you
Minky
View Replies !
View Related
Cool Effect...
This is a pretty cool effect.. at http://www.beatles.com/top.html you can see the big 1 and it has the words going around it and u can click and drag the words.. how do i do that???
View Replies !
View Related
Cool Effect
I was trying to find a cool design or idea or anything for my new site and I came up with this:
FLA
SWF
Its just a cool little blur effect...kinda thing
View Replies !
View Related
How Did They Do This Cool Effect?
I've been racking my brain trying to figure out how they did the cool "lighting" effects in this Flash:
http://images.templatemonster.com/sc...3300/3387.html
Did they just use flash alone, or did they also use some other piece of sotware? Any idea guys?
View Replies !
View Related
|