Horizontal scrolling use MOUSE_MOVE event problem

Hi, I have a a thumbnail scroller that scrolls images horizontally and inverted when I move the mouse.
It works fine on its own, and is giving me the results I want, but whenever I put it in my project, it won't scroll properly.
Like, the scrolling is the same, but it doesnt just scroll the thumbnails anymore, it scrolls everything. The background image, page title, etc.
I'm sure I did something wrong, because I think this his been implented before with no problems, any ideas?
P.S  When I put the scroller on the main timeline, this problem doesn't happen. It only occurs when I put it within a movieclip.
In the main timeline i have a movieclip named mainContainer.
In the main Container movieclip, frame 1, this the code.
var panelContainer:Sprite = new Sprite;
panelContainer.x = 1500;
addChild(panelContainer);
It moves the panelContainer just fine, but it also moves images and text from the main timeline as well.

Sorry, can't believe i forgot that...
addEventListener(MouseEvent.MOUSE_MOVE, onMove);
function onMove(evt:MouseEvent):void{
TweenLite.to(panelContainer, 0.3, { x:-(stage.mouseX/980)*panelContainer.width+2000});

Similar Messages

  • Horizontal Scroll for Apex 4

    I need horizontal scroll for a page in Apex 4. I saw an old thread about horizontal scroll using Apex 3.2. Below is the link for that thread where vee gave some plugin code to achieve this scrolling:
    horizontal bar Scroolling.
    I saved the code in the thread as js file and tried to import it as a plugin but the import was unsuccessful saying that was not a plugin file.
    Has anybody done it in Apex 4? I will be grateful for guidance to achieve this.
    Thanks

    Hi,
    For horizontal scroll copy your theme 15 standard report theme to new name.
    Change template Before Rows to
    <table summary="" cellspacing="0" id="report_#REGION_STATIC_ID#">
    <tr>
    <td>
    <table class="t15standard" summary="" cellspacing="0" #REPORT_ATTRIBUTES#>And template After Rows to
    </td></tr></table>
    <tr>
        <td colspan="99" class="t15afterrows">
            <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
            <table style="float:right;text-align:right;" summary="pagination">#PAGINATION#
    </table>
        </td>
    </tr></table>Horizontal/Vertical scroll, you need create same kind custom template I have in sample application for page 1 report
    Regards,
    Jari
    Edited by: jarola on Apr 20, 2011 5:56 PM

  • I have 10 UiWebView to load different charts and maps on an iPad,using UIScrollView to scroll through each page, problem is on loading of each UiWebView my UiScrollView does not scroll smoothly to other pages horizontally,so how to make the scroll smooth?

    I have 8-10 UiWebView's  to load different charts and maps on an iPad, i am using UIScrollView to scroll through each page, problem is while loading of each UiWebView my UiScrollView does not scroll smoothly to other pages horizontally, my query is can i load UiWebView on background and how to make sure the scoll of pages is smooth, even though the loading of UiWebViews may take time.
    Note :i have tried disabled scrolling on webview, so when i scroll on the page  the scroll event will be of UiScrollView, so believe no conflict with UiWebView.
    also in ios 6 i read about suppressesIncrementalRendering = True but i want to support ios5, also as UiWebViews are said to be running on main thread by default, i suspect when loading of webViews and when user tries to scroll the page, the main thread is busy, but i want the scroll of the page to be smooth  even though the loading of UiWebViews may take time.

    You will probably get a faster and more accurate answer if
    you repost in the Developers Forum.

  • Problem with Horizontal Scroll on java.awt.List

    I use the same code for a General Application as a CDC Application.
    I have no problem at all with the General Application but on the CDC I can't scroll to the right (horizontal).
    Why do I get this problem on the CDC application and not on a regular application?
    I use the PP-1.0 Profile for the CDC application. Does it not support horizontal scroll on java.awt.List?
    This is the code:
    * Main.java
    * Created on den 22 augusti 2007, 10:52
    package cdcapplication6;
    * @author  Erik Rothman
    public class Main extends java.awt.Frame {
        /** Creates new form Main */
        public Main() {
            initComponents();
              for (int i = 0; i < 10; i++) {
                   list1.add("Short text");
                   list1.add("Some very long text indeed. Some very long text indeed.");
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            list1 = new java.awt.List();
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    exitForm(evt);
            add(list1, java.awt.BorderLayout.CENTER);
            pack();
        }// </editor-fold>                       
        /** Exit the Application */
        private void exitForm(java.awt.event.WindowEvent evt) {                         
            System.exit(0);
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Main().setVisible(true);
        // Variables declaration - do not modify                    
        private java.awt.List list1;
        // End of variables declaration                  
    }

    I use the same code for a General Application as a CDC Application.
    I have no problem at all with the General Application but on the CDC I can't scroll to the right (horizontal).
    Why do I get this problem on the CDC application and not on a regular application?
    I use the PP-1.0 Profile for the CDC application. Does it not support horizontal scroll on java.awt.List?
    This is the code:
    * Main.java
    * Created on den 22 augusti 2007, 10:52
    package cdcapplication6;
    * @author  Erik Rothman
    public class Main extends java.awt.Frame {
        /** Creates new form Main */
        public Main() {
            initComponents();
              for (int i = 0; i < 10; i++) {
                   list1.add("Short text");
                   list1.add("Some very long text indeed. Some very long text indeed.");
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            list1 = new java.awt.List();
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    exitForm(evt);
            add(list1, java.awt.BorderLayout.CENTER);
            pack();
        }// </editor-fold>                       
        /** Exit the Application */
        private void exitForm(java.awt.event.WindowEvent evt) {                         
            System.exit(0);
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Main().setVisible(true);
        // Variables declaration - do not modify                    
        private java.awt.List list1;
        // End of variables declaration                  
    }

  • Horizontal Scroll bar problem with CL_GUI_ALV_GRID

    Hi Experts,
    I have created Dynamic ALV by using CL_GUI_ALV_GRID . Everthing is working fine if all the data is displaying in single screen. But if the number of columns increase with the output of data the horizontal scroll bar is not working.
    It is visible but when I click to scroll it to the end of screen it is not working. Can anybody help me that what can be the problem?

    Please reduce the container size in the screen thru SE51 that automatically create the scroll
    or check whether in the attributes of the screen "Hold scroll positio" not to be checked

  • Horizontal Scroll Problem in Rendering in After Effects

    I am having a 30 minute video in which i need to ADD a horizontal scroll till video end, I made a JPG file of 6000px width and 40px height. Place it in a comp with horizontal scroll effect with -70 speed and adding this code in tile centre expression.
    offset = effect("Autoscroll - horizontal")("Speed (pixels/second)") * (time-inPoint) * (100/scale[0]);
    reset=thisLayer.width*10; //reset after 100 times the width has been scrolled
    [(thisLayer.width/2 + offset)%reset, thisLayer.height/2]
    Now when i check it in Ram preview it works fine but when i render it via AME then it stopped somehwere like
    8.20 minute - 13 minute
    19.52 minute - 22 minutes
    between this time scroll doesn't work. Please help me how to solve this problem, It's really urgent for me I need to complete a project.

    I'm not sure what is going on but a better workflow may be to create the scroll as a separate AE comp by pre-composing it, then render and replace in your comp or add the scroll in Premiere Pro and render your deliverable from there.
    It looks like you want the scroll to repeat. The repeat may be where the problem lies. Another approach would be to have your scroll move once, trim the layer to the end of the scroll, Pre-compose trimming the pre-comp to the length of the layer, and then either loop the pre-comp in your main comp using time-remapping and loopOut("cycle") in time remapping, or render and replace the pre-comp and loop the footage indefinitely in Footage Interpretation.
    I tend to to simple title scrolls on Premiere Pro because it's so easy if it's just text and it renders a lot faster than from AE.

  • HP 5-button mouse comfort BR376AA - Driver & Horizontal scroll problem

    Hi all,
    I have a problem with HP 5-button mouse comfort BR376AA. Operating System Windows XP SP3 32bit
    I installed driver 
    Released: 2011-06-29 File name Release_WW_Setup.exe [1/1, 28.25M]
    from http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=DA-89892-1&cc=us&dlc=en&lc=en&...
    But in HP Mouse control center-> menu Buttons, text box Connected Device is message: No mouse has been detected
    In Control Panel, Device manager, Mice is HID-compliant mouse only, no HP mouse
    Horizontal scroll does not work.
    I didn´t find any alternative driver.
    Could anyone help me please?
    Thanks

    @Jara1 
    Thank you for using HP support forum. I have sent you a private message. If you’re unsure how to check your private messages please click here.
    Thank you,
    Omar
    I Work for HP

  • Horizontal scroll on MX1000 sends click event as well. [SOLVED]

    As in the topic, I'm having problems with the horizontal scroll sending regular click events to apps as well as the scrolling, making the function pretty unusable. All my other keys work exactly as they should.
    As for my configuration, I'm running evdev, and I have "pointer = 1 2 3 4 5 7 6 8 9 10 11 12" in xmodmap.
    Ive tried changing the input with both imwheel and xbindkeys, but none of them would intercept the horizontal scroll. (Strange though, since it works fine with the other buttons)
    I don't know what else I can do. Is it just a lost cause?
    P.S: I know it's not app dependent, because I have tried it with every application I have.
    Last edited by Aziere (2007-03-25 16:05:48)

    I prefer evdev because I can't seem to get the thumb buttons to work without it.
    As for xev:
    ButtonPress event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x1e00002, time 1058103, (48,34), root:(471,325),
    state 0x10, button 13, same_screen YES
    EnterNotify event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x0, time 1058103, (48,34), root:(471,325),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16
    KeymapNotify event, serial 31, synthetic NO, window 0x0,
    keys: 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    ButtonPress event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x1e00002, time 1058127, (48,34), root:(471,325),
    state 0x10, button 6, same_screen YES
    ButtonRelease event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x1e00002, time 1058127, (48,34), root:(471,325),
    state 0x10, button 6, same_screen YES
    LeaveNotify event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x0, time 1058127, (48,34), root:(471,325),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16
    ButtonRelease event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x1e00002, time 1058263, (48,34), root:(471,325),
    state 0x10, button 13, same_screen YES
    ButtonPress event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x1e00002, time 1127089, (43,37), root:(466,328),
    state 0x10, button 14, same_screen YES
    EnterNotify event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x0, time 1127089, (43,37), root:(466,328),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16
    KeymapNotify event, serial 31, synthetic NO, window 0x0,
    keys: 38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    ButtonPress event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x1e00002, time 1127105, (43,37), root:(466,328),
    state 0x10, button 7, same_screen YES
    ButtonRelease event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x1e00002, time 1127105, (43,37), root:(466,328),
    state 0x10, button 7, same_screen YES
    LeaveNotify event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x0, time 1127105, (43,37), root:(466,328),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16
    ButtonRelease event, serial 31, synthetic NO, window 0x1e00001,
    root 0x155, subw 0x1e00002, time 1127489, (43,37), root:(466,328),
    state 0x10, button 14, same_screen YES
    Seems pretty obvious what the problem is. It sends button 13/14 as input first, the continues with 6/7 which is the scroll. So what do I do to fix that?

  • Problem with horizontal scroll navigation pattern, please help

    Hello,
    I am trying to create navigation pattern for portfolio website which features horizontal scroll.
    Here is a draft of what im trying to achieve:
    Home
    As you can see it's built based on containers - in every one there will be three photos and as you scroll down the page, the containers go left and you experience horizontal scrolling
    The problem I am currently facing is this:
    On a 1920x1200 resolution when you are scrolling down (starting from the top of the page), the first container (in the beginning) is in fact going left as I want it to, but at certain point (when it's just a little bit behind page margin) it just disappears. I would like to have the effect of container "traveling" out of view area naturally, so that when u are looking at a second container you could still see the first one and the third one.
    In other words I would like these containers to leave the screen in the same way they appear - smooth motion, not the sudden disappear...
    What am I doing wrong ?
    If I recreate same draft but without using muse widgets for containers (instead I use for example single image) it works OK.
    Also I noticed, that if the container is more narrow, the effect doesnt occur - like last conatiner in the exaple, it travels the way I want it to.
    Thank you for any advice.
    Filip

    Please help, still no solution found...

  • JTabel Horizontal scroll bar problem

    Hi,
    I want a horizontal scroll bar added to my table
    hence I do this
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    but the problem is If I increase the size of frame
    the cells do not resize hence there is a gap after
    the last column.
    How do I remove this gap

    Please reduce the container size in the screen thru SE51 that automatically create the scroll
    or check whether in the attributes of the screen "Hold scroll positio" not to be checked

  • Horizontal scroll bar problem in Portal????

    Hi Guys,
    I am facing some problem when i open any thread. Horizontal scrollong bar is coming at the end of the thread.
    eg: If i have some text in the thread which is more than width of the screen and has some 10 replies to that thread, Then i should be able to scrool at that position itself. But now i have to scroll down till end of all the replies and then i have to scroll the horizontal bar to right/left and scroll up to particular reply to see what is there.
    Is there any enhancement going on in portal or it is specific to my system? Please do let me know.
    Thanks,
    Vinod.

    I too am facing this problem with the horizontal scroll bar. 
    There are many other bugs, but I am reluctant to spend my time reporting them as last time I reported a problem here, I got a rude response.
    Al Lal

  • I have a problem with interactive report in  horizontal scroll bar

    hi all,
      in my interactive report the horizontal scroll bar is not visible and i have created a scroll bar with the html code and i have a problem in that scroll bar when ever i will click the select list and if i will move the scroll bar and the select list is also moving but it the select list dont have to move .pls give me a solution for this urgent.
    thanks in advance 

    Kishore suresh wrote:
    hi all,
      in my interactive report the horizontal scroll bar is not visible and i have created a scroll bar with the html code and i have a problem in that scroll bar when ever i will click the select list and if i will move the scroll bar and the select list is also moving but it the select list dont have to move .pls give me a solution for this urgent.
    thanks in advance
    Hi,
    How you think anybody can help if you do not post single line how you have try create that scrolling report ?
    And if your issue is urgent, you are seeking help from wrong place.
    Regards,
    Jari

  • DataGrid Horizontal Scroll Problem when datagrid contains Item renderer

    I have datagrid with horizontal scroll policy enabled. Grid
    contains some item renderer also.One of the item renderer is
    datefield when i select a date from the datefield and say the
    adjacent cell of the grid also contain datefield itemrenderer
    and i am selecting date from that itemrenderer also.When i
    scroll horizontally the date in the itemrender changes to any one
    of the two itemrenderer.Some time it works fine.I am getting the
    issue for combobox itemrender also.Can any one help me to solve
    this issue.

    "happybrowndog" <[email protected]> wrote in
    message
    news:ge11ag$jdo$[email protected]..
    >
    quote:
    Originally posted by:
    ravi_bharathii
    > I have datagrid with horizontal scroll policy enabled.
    Grid contains some
    > item
    > renderer also.One of the item renderer is datefield when
    i select a date
    > from
    > the datefield and say the adjacent cell of the grid also
    contain datefield
    > itemrenderer
    > and i am selecting date from that itemrenderer also.When
    i scroll
    > horizontally
    > the date in the itemrender changes to any one of the two
    itemrenderer.Some
    > time
    > it works fine.I am getting the issue for combobox
    itemrender also.Can any
    > one
    > help me to solve this issue.
    >
    > Ravi, I am having a similar problem. I subclass a
    TextInput as an
    > itemrenderer for a column in a datagrid. My subclassed
    TextInput checks
    > to see
    > the value in the overriden set() method, and depending
    on the value, sets
    > the
    > background color of the TextInput to green. When the
    datagrid scrolls
    > horizontally, some unrelated cell colors also change
    green and some of the
    > data
    > gets duplicated in the cells. The underlying data
    provider's data is not
    > confused however. Seems the rendering is screwed up when
    the Datagrid
    > scrolls.
    >
    > Did you find a solution to this problem? I think
    Datagrid is a piece of
    > screwed up code.
    http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf
    Q2

  • I have installed Adobe Reader 11.0.07 for Mac OS 10.9.3. Have asked this question numerous time without results. The problems I am having are: I cannot scroll using the side slider on downloaded PDF files, nor can I fill in fillable files. Also, and this

    I have installed Adobe Reader 11.0.07 for Mac OS 10.9.3. Have asked this question numerous time without results. The problems I am having are: I cannot scroll using the side slider on downloaded PDF files, nor can I fill in fillable files. Also, and this is extremely irritating, I cannot re-initialize the same file or initialize and another PDF file after I have initialized the first file. If you cannot help please let me know if should use an earlier  version of Reader or find anther company that has the appropriate software.

    Perhaps you missed that you started a discussion at I have OS 10.9.2 and have downloaded latest version of Reader 11. I can no longer fill in form or scroll using the side bar. and you did not respond to the last post there.

  • Whenever I play anything on Windows Media Player Classic, the middle mouse button does not work as a vertical scroll in firefox, but instead shows a horizontal scroll that does not scroll the web pages. How can I fix this problem?

    Hi
    I have a windows 7 and whenever I play anything on Windows Media Player Classic, the middle mouse button does not work as a vertical scroll in firefox, but instead shows a horizontal scroll that does not scroll the web pages. How can I fix this problem?
    I hope that was clear.
    Thnx

    Hello kmanthie,
    I just sent you a private message. If you are not sure how to check your forum messages, this post has instructions.
    I worked on behalf of HP.

Maybe you are looking for

  • Deployed with warnings

    Hello All, I have a SC in a track. I have a used another SC in the same track. I can not create DCs from the used track as it is added only as a dependency. I am using an external library DC from that SC in one the DCs of my original SC. The DC gets

  • Photo Gallery Scripting Question

    Hello all. I got a question that I am sure seems elementary to you, but leaves me stuck. I want the thumb that represents the image that is being viewed to have an alpha of 80. Thanks in advance..

  • View in subquery too slow

    Hi! On Oracle 11.2 SELECT a.* FROM APPLES a LEFT OUTER JOIN PROPERTIES p on a.id=p.apple_id WHERE a.type = '1' AND 0< (SELECT count(*) FROM view_1 v WHERE v.foo=123 AND v.color = p.color)This is 3 or more times slower (0.20 versus 0.60 seconds in one

  • ORA-01173: data dictionary indicates missing data file from system tablespa

    Hello My Database is 11gR1 and Linux is the OS. Thought of posting it as a new thread as things have changed a lot. 2 of my database file were lost due to hardware failure. (the datafile do not belong to SYSTEM TABLESPACE) and and the second was data

  • Intercompany reconciliation in R/3

    Hi, Does anybody knows if there is any way to make intercompany reconciliation without BCS. We need to have an intercompany reconciliation in R/3 before going to BCS, so any difference can be corrected early. Regards, Aracely