Need help resizeing a flash carousel

so i have the carousel already made (i didn't make it i found it online)
http://www.gotoandlearn.com/play.php?id=32
im trying to make the carousel 195 height 620 width but idk if i'm supposed to change the code or the stage size ,or both
i tried changeing some of the code but that didn't work out too well i'll be honest i didn't know what i was doing
i also wanted to make the images into links
i have used flash before so im not a complete noob with this i just dont know action script
if someone would be willing to help me out i'd be willing to help you out with some photoshop work in return

i was messing with the radius variables already i kinda got something going right now
http://www.gotoandlearn.com/play.php?id=34
this is the AS from the link i only changed the radius variables and the size of the document to 620 X195 and it looks like the right size i just need to change the picture shouldn't be that hard im guess thats the xml and i need to make them into clickable links like facebook youtube twitter and some other stuff
import mx.utils.Delegate;
import mx.transitions.Tween;
import mx.transitions.easing.*;
var numOfItems:Number;
var radiusX:Number = 270;
var radiusY:Number = 60;
var centerX:Number = Stage.width / 2;
var centerY:Number = Stage.height / 2;
var speed:Number = 0.005;
var perspective:Number = 0;
var home:MovieClip = this;
theText._alpha = 0;
var tooltip:MovieClip = this.attachMovie("tooltip","tooltip",10000);
tooltip._alpha = 0;
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function()
    var nodes = this.firstChild.childNodes;
    numOfItems = nodes.length;
    for(var i=0;i<numOfItems;i++)
        var t = home.attachMovie("item","item"+i,i+1);
        t.angle = i * ((Math.PI*2)/numOfItems);
        t.onEnterFrame = mover;
        t.toolText = nodes[i].attributes.tooltip;
        t.content = nodes[i].attributes.content;
        t.icon.inner.loadMovie(nodes[i].attributes.image);
        t.r.inner.loadMovie(nodes[i].attributes.image);
        t.icon.onRollOver = over;
        t.icon.onRollOut = out;
        t.icon.onRelease = released;
function over()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sover");
    sou.start();
    home.tooltip.tipText.text = this._parent.toolText;
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
    home.tooltip._alpha = 100;
function out()
    delete home.tooltip.onEnterFrame;
    home.tooltip._alpha = 0;
function released()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sdown");
    sou.start();
    home.tooltip._alpha = 0;
    for(var i=0;i<numOfItems;i++)
        var t:MovieClip = home["item"+i];
        t.xPos = t._x;
        t.yPos = t._y;
        t.theScale = t._xscale;
        delete t.icon.onRollOver;
        delete t.icon.onRollOut;
        delete t.icon.onRelease;
        delete t.onEnterFrame;
        if(t != this._parent)
            var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,t._xscale,0,1,true);
            var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,t._yscale,0,1,true);
            var tw3:Tween = new Tween(t,"_alpha",Strong.easeOut,100,0,1,true);
        else
            var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,t._xscale,100,1,true);
            var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,t._yscale,100,1,true);
            var tw3:Tween = new Tween(t,"_x",Strong.easeOut,t._x,200,1,true);
            var tw4:Tween = new Tween(t,"_y",Strong.easeOut,t._y,320,1,true);
            var tw5:Tween = new Tween(theText,"_alpha",Strong.easeOut,0,100,1,true);
            theText.text = t.content;
            var s:Object = this;
            tw.onMotionStopped = function()
                s.onRelease = unReleased;
function unReleased()
    //BONUS Section
    var sou:Sound = new Sound();
    sou.attachSound("sdown");
    sou.start();
    delete this.onRelease;
    var tw:Tween = new Tween(theText,"_alpha",Strong.easeOut,100,0,0.5,true);
    for(var i=0;i<numOfItems;i++)
        var t:MovieClip = home["item"+i];
        if(t != this._parent)
            var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,0,t.theScale,1,true);
            var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,0,t.theScale,1,true);
            var tw3:Tween = new Tween(t,"_alpha",Strong.easeOut,0,100,1,true);
        else
            var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,100,t.theScale,1,true);
            var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,100,t.theScale,1,true);
            var tw3:Tween = new Tween(t,"_x",Strong.easeOut,t._x,t.xPos,1,true);
            var tw4:Tween = new Tween(t,"_y",Strong.easeOut,t._y,t.yPos,1,true);
            tw.onMotionStopped = function()
                for(var i=0;i<numOfItems;i++)
                    var t:MovieClip = home["item"+i];
                    t.icon.onRollOver = Delegate.create(t.icon,over);
                    t.icon.onRollOut = Delegate.create(t.icon,out);
                    t.icon.onRelease = Delegate.create(t.icon,released);
                    t.onEnterFrame = mover;
function moveTip()
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
xml.load("icons.xml");
function mover()
    this._x = Math.cos(this.angle) * radiusX + centerX;
    this._y = Math.sin(this.angle) * radiusY + centerY;
    var s = (this._y - perspective) /(centerY+radiusY-perspective);
    this._xscale = this._yscale = s*100;
    this.angle += this._parent.speed;
    this.swapDepths(Math.round(this._xscale) + 100);
this.onMouseMove = function()
    speed = (this._xmouse-centerX)/2500;
www.flashmo.com/preview/flashmo_203_carousel
i found another carousel that has clickable links (sorry if im useing wrong terminology here) but do i just copy and paste the AS from one to the other and the xml too? that should work right?
heres the code from the link flashmo
// Code Credit: Lee Brimelow
// Tutorial Reference URL: www.gotoandlearn.com
// Modified by www.flashmo.com
stop();
var folder:String = "thumbnails/";    // a folder for thumbnail files + an XML file
var total:Number;
var radiusX:Number = 310;
var radiusY:Number = 90;
var centerX:Number = 400;
var centerY:Number = 150;
var speed:Number = 0.005;
tn_group_mc._visible = false;
fm_label.text = ""; fm_url.text = "";
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function()
    var nodes = this.firstChild.childNodes;
    total = nodes.length;
    for( var i=0; i < total; i++)
        var t = tn_group_mc.duplicateMovieClip("tn"+i, i);
        t.angle = i * ((Math.PI*2)/total);
        t.onEnterFrame = mover;
        t.tn_mc.inner.loadMovie( folder + nodes[i].attributes.filename );
        t.tn_reflection_mc.inner.loadMovie( folder + nodes[i].attributes.filename );
        t.fm_label = nodes[i].attributes.label;
        t.fm_url = nodes[i].attributes.url;
        t.fm_button.onRollOver = function()
            fm_label.text =  "Title: " + this._parent.fm_label;
            fm_url.text = "URL: " + this._parent.fm_url;
        t.fm_button.onRollOut = function()
            fm_label.text = "";
            fm_url.text = "";
        t.fm_button.onRelease = function()
            getURL(this._parent.fm_url);
xml.load( folder + "flashmo_thumbnails.xml");
function mover()
    this._x = Math.cos(this.angle) * radiusX + centerX;
    this._y = Math.sin(this.angle) * radiusY + centerY;
    var s = this._y /(centerY+radiusY);
    this._xscale = this._yscale = s*100;
    this.angle += this._parent.speed;
    this.swapDepths(Math.round(this._xscale) + 100);
this.onMouseMove = function()
    speed = (this._xmouse-centerX) * 0.0001;

Similar Messages

  • Need help installing adobe flash on mountain lion o/s for my mac

    need help installing adobe flash on my mac with mountain lion operating system

    What kind of problem are you running into?  Have you gone to http://get.adobe.com/flashplayer?
    Here's a help document that might assist you with common problems.  If you continue to encounter problems, please post back.
    Macintosh Installation Help

  • Need Help with a Flash Web Project

    Hello, everyone. I am trying to use Flash to make a two-step
    system. I want the flash document to, first, allow a person to
    upload multiple image files and then, second, for the flash
    document be able to create a slideshow with the uploaded images and
    fade in and out from each image until the slideshow is over. I want
    it to be where the flash document creates its own slideshow with
    the images that are uploaded in the first step that I mentioned. I
    want it to do it completely on its own so I need to know how to
    give it the proper AI so that it can do this task.
    So, are there any tips that anyone has on how to do this? Can
    anyone tell me exactly how to do this? I really need help with this
    for my new website project. Thanks in advance, everyone!

    The problem with the text not appearing at all has to do with you setting the alpha of the movieclip to 0%.  Not within the movieclip, but the movieclip itself.  The same for the xray graphic, except you have that as a graphic symbol rather than a movieclip.  To have that play while inhabiting one frame you'll need to change it to a movieclip symbol.
    To get the text to play after the blinds (just a minor critique, I'd speed up the blinds), you will want to add some code in the frame where you added the stop in the blinds animation.  You will also need to assign instance names for the text movieclips in the properties panel, as well as place a stop(); in their first frames (inside).
    Let's say you name them upperText and lowerText.  Then the code you'd add at the end of the blinds animation (in the stop frame) would be...
    _parent.upperText.play();
    _parent.lowerText.play();
    The "_parent" portion of that is used to target the timeline that is containing the item making the command, basically meaning it's the guy inside the blinds telling the guy outside the blinds to do something.
    You'll probably want to add stops to the ends of the text animations as well.
    If you want to have the first text trigger the second text, then you'd take that second line above and place it in the last frame of the first text animation instead of the blinds animation.
    Note, on occasion, undeterminably, that code above doesn't work for some odd reason... the animation plays to the next frame and stops... so if you run into that, just put a play(); in the second frame to help push it along.
    PS GotoandPlay would actually be gotoAndPlay, and for the code above you could substitute play(); with gotoAndPlay(2);

  • Need Help down loading Flash on Apple Mini Mac

    Lost my User name & pass word & am unable to down load flash version 8 or better,,, totally computer illiterate & need HELP !

    Hi Michael,
    Please see What userid & password do I need to install Flash Player?.
    Maria

  • Need help with adobe flash player 10.2 keeps crashing

    ok i am having a problem with the adobe flash player ten it keeps crashing on firefox ie8 and google chrome
    operating system is windows xp  32 bit
    really need help because this has been going on for 3 weeks straight  and i downloaded the adobe flash player from the adobe site
    i have uninstalled it 3 time and reinstalled it 3 time
                                                                                                                                                                  need help ASAP!!!!!!!!!!!!!!!!!

    Hello,
    Please try the following way:
    1.Open "Start", then in the "Start Search" bar input "regedit", then click "Enter"
    2.In the opened "Registry Editor", find the key "HKEY_LOCAL_MACHINE -> SOFTWARE -> Macromedia -> FlashPlayer -> SafeVersions" and delete it.
    3.Download the latest Flash Player from http://get.adobe.com/flashplayer/, and install it.
    Thanks

  • I need help with Adobe Flash Player, PLEASE!

    I have been on multiple site trying to play games or watch videos (e.g. YouTube) and keep getting an error message saying I have to install Adobe Flash Player in order to play/view.  I have done this multiple times and currently have Flash Player 11 ActiveX and Flash Player 11 Plugin.  What more do I need to do because it still won't let me watch the video or play the games!
    PLEASE HELP ME!
    Additional info:  I just wound up downloading Google Chrome (but don't like it) and don't have the same problem.  So, it's only happening  when I am trying to do all this on Internet Explorer 9.

    Flash Player Help | Installation problems | Flash Player | Windows
    Mylenium

  • Need help with Installing Flash 9

    First off, let me apologize if this is in the wrong forum, I couldn't really find a forum for my specific need.
    I was running Flash 8 just fine, but then a video requested that I update to Flash 9, because that's the only way the video would play.
    So I tried installing the PPC version, and right at the last file it needs to finish installing a window pops up saying "ERROR CREATING FILE, 1008:5,-5000 Access denied error."
    Now all flash files won't work on my browser.

    Did you enable "root user" according to "Mac Help" or did you set up a new user in the system preferences? If you did it according to Mac Help, then Flash should have been installed correctly. Did you try the other option first? That option, if it worked, would have installed Flash into the current user. How many different users do you have?
    Post back if you still need help, maybe someone else will pick up on this that is better than I am about such problems.
    Sorry that I haven't been much help.
    Larry

  • Need help w/adobe flash player, PLEASE

    I need help!! I bought my daughter a V-Reader from V-Tech for Christmas and I am trying to get it set up. I have gone through all the steps of trying to upgrade the software. However, when I try to begin the process it is telling me I need to install Adobe Flashplayer. So I go to Adobe & download & install Adobe Flash player 11 ActiveX. However, when I go back to the set up portion of this V-Reader, it is still telling me I need to install Adobe Flash Player. I am so confused & don't know what to do. I am not very computer savy, so whatever help I can get needs to be pretty easy to understand & would be extremely appreciated. I have Windows Vista, I really don't know what else you need to know. Thanks for any & all help.....

    Am I correct to assume that you connect that E-reader to your PC, and you need Flash Player on the PC?
    Do you know if your Vista is 32-bit or 64-bit?
    You mention ActiveX, so you must be using Internet Explorer.  What version do you use, and is it the 32-bit edition or 64-bit edition (Help, About Internet Explorer should tell you that)?
    On Internet Explorer 8 or 9, check Tools, Add-ons: do you see Shockwave Flash Object, and is it enabled?
    On Internet Explorer 9, check Tools, ActiveX Filtering: is it enabled?  (It must be disabled for Flash Player to function.)

  • I need help solving Latest Flash Player upgrade crashing issues.

    I recently upgraded my flash player at Adobe reccomendation. Now it crashes all the time. I need help solving this issue. I currently have Flash Version 11.5.502.135. My old version never crashed, not even once. I would be fine uninstalling the new version and going back to the older one but i cant find it.

    Could you please create a crash report? The following page has more information: http://helpx.adobe.com/flash-player/kb/report-flash-player-crash.html
    You can install Flash Player 11.4.402.287 version.
    Thanks,
    Sunil

  • Need Help Putting a Flash Widget into an Image Being Exported into HTML

    Hi, I'm making a banner for the top of my band's MySpace. I only got into making layouts and such because we didn't want to spend the money on hiring a professional, so I'm kind of new to this and I don't know if anyone can help but what I'm trying to do is put a flash widget (for Twitter) into an image on Photoshop which I will then export into html. Can I do this on Photoshop or do I need to do it on another program. Any help would be appreciated, thanks!

    No, this requires you to learn HTML and create the proper embedding code and page layout.
    Mylenium

  • I need help making Shockwave Flash 15.0 r0 work again.

    It was working fine earlier today, on Google Chrome. But for some reason it stopped and now I get a something asking if i want to stop the plugin because it is not responding. I have tried to make it work on my own following some of the things i found only, and on here Installation problems | Flash Player | Windows and Flash Player Help yet nothing. I really need this fixed ASAP.
    Adobe Flash Player (2 files) - Version: 15.0.0.189
    Shockwave Flash 15.0 r0
    Name:
    Shockwave Flash
    Description:
    Shockwave Flash 15.0 r0
    Version:
    15.0.0.189
    Name:
    Shockwave Flash
    Description:
    Shockwave Flash 15.0 r0
    Version:
    15,0,0,152
    this is what shows up in chrome://plugins/
    yet this the image I am supposed to be able to see does not show up
    Please and thank you for your help

    Please ask your question on a forum for the Flash Player

  • Need help resizing logo

    I have a logo in AI, I need to have it resized down to fit into a template provided by the company that will print the stickers.
    I have never used AI before, I took a stab at it and I can resize part of it but the background of the image will not. I can't even figure out how to select it
    someone that could help, I can probably get you some money via paypal or something.
    Thanks

    If you look in the Layers Palette and see a Lock on the background then you won't be able to do anything with it until you UnLock it.  Try that first and then post back with results.
    Best,
    markerline

  • Need help resizing pages for different screens

    Hey guys,
    Ok well I made this website that has a lot of pages now and
    the only problem is that I have a 21" widescreen monitor so
    everything I created has to be scrolled on a lot of smaller
    screens. I'm almost possitive that there is a way to tell the html
    to resize the website when different screen sizes are detected. Any
    help would be great. Thanks.
    Also if there is a way to do this, then would it be possible
    to change the settings sitewide without using templates?
    Jeremy

    > I'm almost possitive that there is a way
    > to tell the html to resize the website when different
    screen sizes are
    > detected. Any help would be great. Thanks.
    There is - it's called "design"! You have to build the page
    to be
    flexible - see this tutorial as an example of how to do it
    with tables:
    http://www.dwfaq.com/tutorials/Tables/flexible_tables.asp
    Once you have the page built, you cannot just drop in a magic
    pill and make
    it resize itself.
    And remember, screen size is not the real variable you need
    to worry about -
    it's browser viewport size. Even when you know my screen is
    1280x1024, you
    still do not know what my browser size is.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "dayencom" <[email protected]> wrote in
    message
    news:eiqmfu$33q$[email protected]..
    > Hey guys,
    >
    > Ok well I made this website that has a lot of pages now
    and the only
    > problem
    > is that I have a 21" widescreen monitor so everything I
    created has to be
    > scrolled on a lot of smaller screens. I'm almost
    possitive that there is a
    > way
    > to tell the html to resize the website when different
    screen sizes are
    > detected. Any help would be great. Thanks.
    >
    > Also if there is a way to do this, then would it be
    possible to change the
    > settings sitewide without using templates?
    >
    > Jeremy
    >

  • Need Help Resizing in PS Elements 6

    I recently worked on a couple of my photos in PS Elements 6, and after I saved them, I found that they had changed size drastically.  Both were about 2MB originally, but after working on them one had gone down to a mere 190Kb, while the other had increased all the way up to a whopping 40.5MB--so big that I cannot even email it, since it is almost double the maximum 25MB for one email.  I tried "Resize" under "Image", but that appears to only change the dimensions in inches--there is no way to revert back to the original 2MB.  I am new to Photoshop, indeed to computers, so any help would be appreciated.  Thanks.

    You are confusing the size of the file that contains your photograph, with the size (number of megapixels) of your photograph.
    These two things are not the same, and sometimes do not move together.
    Futhermore, there is no need (and no way) to re-szie your photograph back to 2MB. All of your photograph information is in the file, even though it is 190K now. When you save a .jpg, it very often will get smaller, because .jpg uses compression. You do need to be aware of the quality level that you are saving the file at ... in PSE, you can save it from a quality of 1 (poor quality, very small files) to a quality of 12 (high quality, large files). A lot of people (like me) choose a compromise of around 8 or 9, as the quality degradation from one save at quality 8 or 9 usually isn't noticeable unless you blow up the photo very large. The choice is up to you.
    Your 40.5MB photograph is huge because you probably saved it as .psd or .tif. If you resave it as .jpg, the size will shrink to something much smaller, which you can e-mail.

  • Need help with actionscript (flash professional)

    Ok so its been a while since I've used flash and i need a
    little bit of help. I've searched through the help books and tried
    to figure it out on my own but im stuck.
    I'm making a website for my music page using flash
    professional on Mac OSX.
    I'm trying to make a menu along the left side that when you
    press the "more" button at the bottom of multiple other buttons it
    will make the set of links (which i have as buttons) switch out
    with another set of links. (also buttons)
    I cant get this more button to do it though!
    here is a link to my .fla file
    http://rapidshare.com/files/196874495/website.fla.html
    Help would be GREATLY appreciated.
    Thanks.
    -Ken

    _parent tells the guy that's holding the movieclip (its
    parent) to do something.
    The reason I say something seems corrupted with the file is
    because I took your button out of the movieclip and used it with
    the code you had for the movieclip, which should have worked as you
    had it on(release){ gotoAndPlay(2)} because for whatever reason,
    buttons don't consider the guy holding them as their parent...
    bitter adopted orphans I reckon.
    but it didn't work, and I gave up trying to figure out why.
    Sometimes files just need to find a new home in another
    file.

Maybe you are looking for

  • Blue screen, Windows stopped working, BC code 50

    I did a clean install of Windows 7 Home Premium 32 bit, on my vista laptop. I have had two blue screens in the past week, stating windows stopped working here are the details: BC code - 50 BCp1 - 80024114 BCP2 - 0000000 BCP3 - 9850ED3A BcP4 - 0000000

  • Reading from XML file and updating the table ????

    Hi I have package which reads the hier.XML file and does Update inserts into the 5 tables i have table called MAIN_tbl with the column cur_date. The package kicks if this cur_date is one day less than the hier.XML file DT. Currently i m manually chec

  • Help with a menu bar

    Hi all, Thank you in advance for any help. I'm a bit of a beginner when it comes to coding but I'm trying to come up with a drop down menu bar very simliar to the one on this website: www.fatmedia.co.uk I've used inspect element to view the CSS and a

  • Loader.loaderURL returns "wrong" location. [[DYNAMIC]]/9

    Hey everyone, I have an issue where I am watching the value of:  loaderInfo.url and sometimes it returns the url of my file just fine, example "path/myfile.swf and it is all good. Other times it will return  path/myotherfile//[[DYNAMIC]]/9 I found th

  • Urgent Boot Camp Problem

    On my dad's iMac computer I have downloaded the Windows 7 32 Bit Beta from the Microsoft website and successfully burned it to a disc. I then went to partition his HD which worked fine. After that, I was prompted to insert the install CD (it was the