Scrolling gallery problem - doesn't reach end of movieclip

take a look
here .
ive tried a majority of what I can find on the internet, however
none seem to be able to scroll right to the end of each side of the
movie clip. is anyone able to point me in the right direction?
also, an acceleration / deceleration would be nice.

I have something like this on my website. The scrolltext is
on a movie clip that is 900 pixels in height and yet the stage is
only 150 pixels high. You can see it at
http://www.jjesteban.com.

Similar Messages

  • Kinetic image scrolling gallery on iPad

    I'm struggling with this a bit.  I'm trying to build a image scrolling gallery which allows you to flick through a horizontal list of images.  If you select a pic it will load in a window which sits above the horizontal list.  I'm developing this for the iPad.
    I keep getting hung up on where to start with this since it's using touch.  Not seeing any clear tutorials online.  I don't think I want to use any sort of a tweening class.
    Has anyone out there done something like this?  I'm probably missing something really simple and appreciate any help.
    Thank you.

    I just make such a 'flick scroll gallery' for iPad.  But I still have a problem on its performance.
    I have made many of such swfs for PC.  First, I deploy it to iPad using PFI but it did not work well ... too heavy for iPad.  So I am improving its performance now.  It becomes much better than before, but it is still heavier than iPad's native apps (like 'Photo app').
    For your reference, my design for the gallery is a 'train' made from three images side-by-side.  The train is masked to see only the image at center, and is draggable for horizontal direction.  When flick to left ended (for example), if x-position of the train exceeds certain pixels from zero (center position) then the train moves to 'minus width of image' by tween class with 'easeOut' easing.  If not, then the train moves back to zero by tween.
    When tween is end, if the train's position is NOT zero, switch three images on the train and back to zero immediately.  ...Can you imagine? (Sorry for my terrible English.)  Of course, you can improve the movement considering flick velocity, etc.
    If you or anyone know how to achieve SPEEDY flick scroll (as iPad native apps) by PFI, I will appreciate it very much!

  • Reached end of file while parsing error

    I have a problem. It looks like my program has no errors but I get an error that says "reached end of file while parsing" (note: this is being developed in NetBeans). Can you help me?
    class LongNumbers {
        public static void main(String[] args) {
            long numbers = 12345678910L;
            int number = 2;
            switch (number) {
                case 1: System.out.println("One\nTwo\nThree\nFour\nFive\nSix\nSeven\nEight\nNine\nTen");
                case 2: System.out.println(numbers);
            int firstArg;
            if (args.length > 0) {
                try {
                    firstArg = Integer.parseInt(args[0]);
                } catch (NumberFormatException e) {
                    System.err.println("Argument must be an integer");
                    System.exit(1);
    }

    Oh, nevermind. I found the problem. The admins can delete this if they want.

  • LG G2 When I select share while in the gallery, facebook doesn't come up as an option.  Is there something I need to set up differently?

    LG G2 When I select share while in the gallery, facebook doesn't come up as an option.  Is there something I need to set up differently?

    Did you go to the Playstore and download the Facebook app? Try that and see if that works.
    I don't use FB, but I read somewhere other people having problems with sharing in KK as well. You could try a download like "Andmade share" to see if that works for you if the previous idea doesn't.

  • Creating a Horizontally Scrolling Gallery in Muse

    I need to create a horizontally scrolling gallery, something that shows four images at a time, and automatically scrolls through said images, a total of about twenty images.
    The end result my client wants is for the gallery to show four images, highlight each one at time, and then scroll in the next four, but I don't even see a way to just create a simple scrolling gallery in muse.
    Is there any way to do this? Any suggestions for something I can drop into muse to make this happen? I have seen several people ask this question, but it never seems to get any answers, and google has been less than enlightening on this.
    Thanks.

    Hi Julia,
    I understand that I can tooltip over them, but what I'm looking for is something that will allow me to do something like this example on the main page for Lionsgate.com. The functionality I want is to be able to present the player with a menu of thumbnail buttons which will change a main display, very much like what you illustrated above. What is different, however, is that I want the user to be able to SCROLL a list of thumbnails which are contained within a menu window. In this way, if I wanted to have links to twenty or fifty or a hundred buttons/thumbnails, I can present the player with only a few at a time without completely cluttering the interface. They can use arrow keys to scroll up or down through the available thumbnails. It's a very common interface, and Apple uses the ribbon idea as part of their main interface. 
    Long story short, is it possible to replicate this with existing Muse widgets, or does someone know of a not-too crazy way to do this?
    Thanks,
    Neal

  • Flash scrolling gallery - up down right left

    I found a Flash parallax scrolling gallery tutorial here:
    http://www.webdesignerwall.com/tutorials/parallax-gallery/
    but I want the mouse move up and down as well instead of being just right to left.
    could anyone help me plzzzzz?
    I believe it has something to do with "Z" as well az "X" and "Y"
    To be more specific I want to be able to build something like this
    http://www.ff0000.com/
    when it comes to navigation, simply to be able to move the screen
    according to viewer's mouse, up, down, right and left
    Here is the code:
    stageWidth = Stage.width;
    speed1 = 15;
    speed2 = 14;
    mc1Width = front_mc._width;
    mc2Width = back_mc._width;
    mc1X = front_mc._x;
    mc2X = back_mc._x;
    lock_scroll = false;
    _root.onEnterFrame = function () {
         if (!lock_scroll)
              scroll_mc();
    function scroll_mc() {
         var xdist = _xmouse-(stageWidth/2);
         mc1X += -xdist/speed1;
         mc2X += -xdist/speed2;
         if (mc1X>=0) {
              mc1X = 0;
         if (mc1X<=stageWidth-mc1Width) {
              mc1X = stageWidth-mc1Width;
         if (mc2X>=0) {
              mc2X = 0;
         if (mc2X<=stageWidth-mc2Width) {
              mc2X = stageWidth-mc2Width;
         setProperty("front_mc", _x, mc1X);
         setProperty("back_mc", _x, mc2X);
    //create an empty mc container for content to display
    createEmptyMovieClip("content_box", 200);
    content_box._x = 195;
    content_box._y = 92;

    Thanks "dmennenoh"
    what I'm looking for is a simple and complete tutorial of how to create a
    home page in flash
    which is sensetive to visitor's mouse so that later on I would be able to
    use it as a template and load any kind of swf files into it.
    I guess my biggest problem is the explanation of what exactly I want!!!
    is it called Parallax scrolling?!!
    anyway I have visited tons of website which do what I have in mind
    www.coraline.com (click on "enter site" on top of the page in order to be able to see it)
    www.hellosoursally.com
    www.ff0000.com
    any kind of help is much appreciated

  • Thinkpad L512 display doesn't reach full brightness

    My 2 month old Thinkpad L512 display doesn't reach full brightness, except for a few seconds after bootup. Then it dims down to maybe 8 or so on a scale of 1-10. Which is often good indoors, but in a bright situation, I could use the extra screen brightness.
    The screen correctly dims significantly (to maybe 2 or so on a scale of 1-10) after siting idle for a few minutes, as specified in the Power settings. But when it recovers, it is at full brightness for 10 seconds or so, then dims back down to 8 and stays there until I repeat the cycle.
    I have poked around in the Display and Power settings, and the display is set to 100% there.
    Any ideas? Thanks!
    David

    I had this problem with several of my machines.  I noticed that if you unplugged the power and plugged it back in, the machine would jump back up to the brightest setting.  But if you tried to adjust the brightness down and *then* back up, it would never reach the highest brightness.
    I tried reinstalling the Power Management Driver and reinstalling Power Manager itself (both to no avail).  I tried to downgrade to BIOS 1.20 but that didn't really have an effect either.
    Finally, I downgraded to BIOS 1.19 and that resolved the issue.  However, now I'm having an issue where the brightness changes two settings every time you hit the button (which was supposedly fixed in 1.20...though I had the same issue in 1.21).
    I'm pretty frustrated with this machine.  Hopefully the *next* BIOS resolves all of brightness related the issues...

  • Trying to get " url " to work in my scroller/ gallery...

    trying to get " url " to work in my scroller/ gallery...
    please take a look at my action script and xml... ive got all
    the fields working except for the " url " ... what adjustments do i
    need to make to get the url for each pix to work...
    thanks...trey
    delay = 3000;
    function loadXML(loaded) {
    if (loaded) {
    xmlNode = this.firstChild;
    image = [];
    title = [];
    headline = [];
    description = [];
    total = xmlNode.childNodes.length;
    for (i=0; i<total; i++) {
    image
    = xmlNode.childNodes.childNodes[0].firstChild.nodeValue;
    title
    = xmlNode.childNodes.childNodes[1].firstChild.nodeValue;
    headline
    = xmlNode.childNodes.childNodes[2].firstChild.nodeValue;
    description
    = xmlNode.childNodes.childNodes[3].firstChild.nodeValue;
    firstImage();
    } else {
    content = "file not loaded!";
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("images.xml");
    p = 0;
    this.onEnterFrame = function() {
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    if (loaded != filesize) {
    preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
    preloader._visible = false;
    if (picture._alpha<100) {
    picture._alpha += 10;
    function nextImage() {
    if (p<(total-1)) {
    p++;
    if (loaded == filesize) {
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    title_txt.text = title[p];
    headline_txt.text = headline[p];
    description_txt.text = description[p];
    picture_num();
    slideshow();
    function prevImage() {
    if (p>0) {
    p--;
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    title_txt.text = title[p];
    headline_txt.text = headline[p];
    description_txt.text = description[p];
    picture_num();
    function firstImage() {
    if (loaded == filesize) {
    picture._alpha = 0;
    picture.loadMovie(image[0], 1);
    title_txt.text = title[p];
    headline_txt.text = headline[p];
    description_txt.text = description[p];
    picture_num();
    slideshow();
    function picture_num() {
    current_pos = p+1;
    pos_txt.text = current_pos+" / "+total;
    function slideshow() {
    myInterval = setInterval(pause_slideshow, delay);
    function pause_slideshow() {
    clearInterval(myInterval);
    if (p == (total-1)) {
    p = 0;
    firstImage();
    } else {
    nextImage();
    and here is my xml...
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <images>
    <pic>
    <image>sample1.jpg</image>
    <title>Google</title>
    <headline>headline 1</headline>
    <description>this is the description of article
    1.</description>
    <link>
    http://www.google.com</link>
    <targetIsUrl>Y</targetIsUrl>
    </pic>
    <pic>
    <image>sample2.jpg</image>
    <caption>Yahoo</caption>
    <headline>headline 2</headline>
    <description>this is the description of article
    2.</description>
    <link>
    http://www.yahoo.com</link>
    <targetIsUrl>Y</targetIsUrl>
    </pic>
    <pic>
    <image>sample3.jpg</image>
    <caption>BAS-llc</caption>
    <headline>headline 3</headline>
    <description>this is the description of article
    3.</description>
    <link>
    http://www.bas-llc.com</link>
    <targetIsUrl>Y</targetIsUrl>
    </pic>
    <pic>
    <image>sample4.jpg</image>
    <caption>USC Trojans</caption>
    <headline>headline 4</headline>
    <description>this is the description of article
    4.</description>
    <link>
    http://www.uscripsit.com</link>
    <targetIsUrl>Y</targetIsUrl>
    </pic>
    </images>

    Extensions that do not have a "Remove" button are installed by other software and are not under control of the Firefox extension manager.
    Such globally installed extensions are usually found via a registry scan or are installed in a location that Firefox scans for installed extensions.
    *https://developer.mozilla.org/Installing_extensions
    *https://developer.mozilla.org/Adding_Extensions_using_the_Windows_Registry
    Extensions installed this way need to be removed via the settings (options/preferences) of the program that has added this extension or this program has to be uninstalled via "Control Panel > Programs".
    In Firefox you an only disable such an extension.
    Create a new profile as a test to check if your current profile is causing the problem.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over problems.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Non SMTP inbound email doesn't reach to SAP

    Hi Experts,
    Currently we are trying to implement offline approval in SRM for Shopping Cart. So approver will approve and reject through email.
           i) Approver receive an email from SRM system which has two buttons approve and reject , This email is sent from SAP using SMTP protocol.
          ii) Approver takes an action by clicking approve button at this point automatic reply is triggered out to SAP with an approval note in the body.
         iii) Approver Mail in  step c) doesn’t reach to SAP , but it comes to mail box which we have in outlook exchange server.
    Problem: The email doesn't reach SAP because for inbound emails we have configured SMTP protocol however the client's outbound email config is non SMTP. SAP doesn't support any non SMTP protocol for inbound emails. 
                One way to achieve this is by consuming EWS in ABAP for moving mails in exchange mail box to SAP mail box.
                Has anyone tried this before? Please suggest if there is a alternate solution to achieve this.
    Regards,
    Gowri           

    For a US based mail service like Comcast, your best bet is to run through your mail account settings and verify that it is configured properly. Quickest way to check would be to drop your email address into the iPhone mail helper, located at http://www.apple.com/support/iphone/mailhelper/ , also linked at the top of this section. Often times it is an SSL setting toggled the wrong way, or a port number assigned incorrectly.
    If everything looks to be in there properly, remove and then enter in the account manually using the steps from the mail helper. And always verify that you are using the correct user name & password combination by logging in to your Comcast webmail. Hope this helps.
    Message was edited by: X_oran

  • Reached end of file whlie parsing

    Hello,
    I get the error message "reached end of file while parsing" when I try to compile the below program.
    Does anybody know why I am getting this message?
    I think my braces are all paired.
    Thanks.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class DrawFillRect extends JApplet {
         private MyColorChooser chooser;
         private JButton paint;
         private RectPanel myPanel;
         public void init()
              chooser = new MyColorChooser();
              Container c = getContentPane();
              c.add( chooser, BorderLayout.WEST );
              myPanel = new RectPanel();
              paint = new JButton( "Paint" );
              paint.addActionListener(
                   new ActionListener() {
                        public void actionPerformed( ActionEvent e )
                             myPanel.draw( chooser.getCustomColor() );
              c.add( paint, BorderLayout.CENTER );
              c.add( myPanel, BorderLayout.EAST );
    }     

    The error is likely coming from code that you are not showing us. Look carefully at the error message to see what line of code is setting it off, then start debugging.
    edit: please see my message in your other thread. It is considered rude in all societies, including this one, to have received help and not to have acknowledged it. This may affect the willingness of members to help you in the future.
    Edited by: Encephalopathic on Aug 17, 2008 8:30 PM

  • The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I'm very computer literate and am pretty sure the problem is on your end.

    The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I've tried it multiple times and continue to get the same message: "NOT FOUND The requested item could not be found". I also tried through the Market application on the phone but ended-up with the same result.
    I'm very computer literate and am pretty sure the problem is on your end. If this is the case then no one can download the app. I considered that perhaps because it's still in Beta that it was removed due to some other type of software issue. I would really like to use Firefox on my new Droid (2.0); when with this be available?

    Firefox will not appear in the Market for most phones with incompatible hardware. You can check if your phone is supported here:
    https://wiki.mozilla.org/Mobile/Platforms/Android
    Even on some supported devices, a bug in the Market software prevents Firefox from showing up. This may be related to the fairly recent Android Market app update. If you go to Settings/Applications/Market and choose "Uninstall" you can uninstall the update, and then search for and install Firefox from the marketplace.
    Or, if you have a supported phone, you can download the app directly by typing this address into your phone's browser: http://bit.ly/fxbeta3
    (Note: To download the app directly for an AT&T phone, you will have to search for instructions on "sideloading" the APK file, since AT&T disables the option to install from non-Market sources.)

  • Is there a device that extends the range of airport?  it doesn't reach throughout my home.

    is there a device that extends the range of airport?  it doesn't reach throughout my home.

    Another AirPort router will do what you want.

  • My mouse fell now the scroll/zoom option doesn't work. Any tips?

    My mouse fell from the couch to a carpeted floor. Now the scroll/zoom option doesn't work. Any tips? It landed and rolled a bit.

    Hello:
    I suggest you buy a new one.
    Barry

  • I've seen several issues with updating Apps.  Is there a problem on Apple's end?

    I'm unable to update my Apps.  The "Update All" button is not highlighted.  If I click on the individual App, it just goes to that App, instead of updating it.  I've seen this issue from other people, but no one has supplied an answer that I've seen.  Is the problem on Apple's end?

    Actually, I have seen a few people answer it and state that restoring to factory settings fixed it. You can try that. Backup your iPad, restore to factory settings, restore your backup and see how that works for you.
    Read this for more information.
    Use iTunes to restore your iOS device to factory settings

  • Horizontal scrolling gallery like this website

    Hi,
    having seen this website on Muse's "site of the day" gallery, I was wondering how the horizontal scrolling gallery is done using Muse?
    http://4ad20.themysteryparade.com
    Are there any tutorials explaing this technology - can you point me to a site? Any experts that have an answer how to do this?
    Thanks so much,
    Markus

    You can change the the Page width , as per your requirement. We just need to assemble few asset, please have a look to the following Video which I have created for you, that should clear few things, in my example, I have created a page with following properties,
    Width: 3000px;
    Height: 500 px;
    Background Fill: none;
    Browser Fill: image; Scale to Fill, Scrolling: Unchecked.
    http://gauravtestsite4.worldsecuresystems.com/Gaurav/2013-09-18_1525.swf
    I hope this will give a basic idea.

Maybe you are looking for

  • All of my add-ons are gone!

    Recently I had to do a system restore to get rid of a virus on my laptop. It worked, but now all of my add-ons are gone. (These were add-ons I've had for a long time, well before the time I restored my system to.) The one I'm most concerned about is

  • Adobe cs5 Production premium installation issues on Windows 7

    Hello New Hardisk. New Bios, New windows 7 Ulitimate Up to date windows 7 updates Installing  cs5 as administrator Installation stops on Disk 2 exactly at 76% . Tried twice and the same case. CPU goes up to 100% Memory 29% Tested the Hard disk fine.

  • Updated mac to snow leopard now safari won't open

    I just updated my iMac to snow leopard, as I was having problems updating iTunes. Now safari says it can't open with this version of mac snow leopard. Any suggestions?

  • How to use certificates as in Firefox ?

    I don't use Safari but Firefox because on the server of the french taxes, I make different déclacarations of tax and for each one a different certificate. With Firefox, in "Préférences", "Gestionnaire de certificats", I have several registered certif

  • Recent problems with DRM errors despite Siverlight installed.

    I have Love Film on the mac air and it has worked a dream until last Saturday. While I access the site easily and select something to stream it is coming up with a DRM error. I have checked everything in Silverlight and un-installed and re-insalled a