How to make the scrollbar function with mouse scroll wheel?

Is there a way how to make my content scroll even with the mouse scroll wheel?... I have to edit the coding??

Hey!
You shouldn't have to edit any code.
There is an active player bug surrounding this issue however, which causes the following:
1) It should work on windows.
2) It may not work on Mac.
We're continuing to pursue this issue, we know it's important to our users.
Thanks,
Tara

Similar Messages

  • How to make the wifi connection with Ipad in china since it requires user's name and password.

    How to make the wifi connection with Ipad in china since it requires user's name and password just like the dialed-up?

    The same way you would connect to a secure wifi network in any other country. Supply the username and password when prompted.

  • How to make the wdDoIniiit() function executived twice in the view of WebDy

    Hi Guyes, How can i make the  wdDoIniiit() function executived twice in the view of WebDynpro? Thank you

    Hi
    WdDoInit() :- This is called only once when the View is loaded freshly.
    WdDoModifyView:- Called every time an action is performed on the View.
    It is called by webdynnpro runtime environment for modification of the view layout.
    For all the views,this takes place at a time immediately before the closing response renders.
    check for
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/86/16e13d82fcfb34e10000000a114084/frameset.htm">Modifyview</a>
    also you can know about <a href="http://help.sap.com/saphelp_nw04/helpdata/en/86/7fcf3d4f902d10e10000000a114084/frameset.htm">Supply function</a>
    Regards
    Abhijith YS

  • How to make customize Replace function with Positions not pattern ?

    Hi
    Due to Repalce with patterns in  flex, i am facing issue.
    I  want to make cutomize replace function with  parameters
    1 Parameter - String to replace
    2 Parameter - Start Posion.
    3 Parameter - Last position
      which return string value.
    For Example
      replaceInWholeString(str:String, sPos:Number, lPos:Number ):String
    values like
    1st paramter - "asked"
    2nd Paramter - 11
    3rd Paramter -  15
    Original String :: I want to reply
    Output string : I want to asked
    Please Reply ,if someone having solution
    Thanks
    Sunil Rana

    You can use any number of the String methods to acomplish this.
    I would proabably go with something like: slice(...) + input + substr(...);

  • How to make the server respond with a popup?

    I want to make the server respond with a popup?my code is like this,but it does not work,why?
    <code>
    public class Welcome2
         public static void main(String[] args)throws IOException
              ServerSocket server = new ServerSocket(2222);
              while(true)
                   Socket s = server.accept();
                   BufferedReader in = new BufferedReader(new InputStreamReader(s.getInputStream()));
                   String msg = in.readLine();
                   if(msg.equals("visitor"))
                        System.out.println("recv...");               
                        JOptionPane.showMessageDialog(null,"Visitor coming!\n");
         System.exit(0);
                   server.close();
    </code>
    it can properly print out "recv...",but no popup,why?

    Define "does not work". What happens?
    Does your program compile? Do you get an exception? Does the program receive a line? Is the line equal to whatever you expect? Is showMessageDialog() called? Put in some debugging println's to see what happens.

  • Unable to scroll through pages of a PDF with mouse scroll wheel

    I have identical computer setups at home and at my office (27" iMac running Yosemite, a Logitech mouse (M-BJ58), and Acrobat Pro XI). On my office Mac, every increment of the mouse's scroll wheel advances one page, but on my home Mac, I have to scroll the wheel several times before it advances to the next page, and then once it does, no amount of scrolling will make it advance any further in either direction. I've tried everything I can think of, and I can't figure out how to make the scrolling behavior at home match that of the office.
    In Acrobat, Page Layout is set to Single Page and Zoom is set to Fit Page in both places. Any ideas?

    Answer, no, I do not know the cause. Single web site problems are not either Safari or the operating system.
    I seriously doubt if resetting the iPad will fix the problem. If you still have problems, contact Macy's tech support.
    Barry

  • How to run the runallocation function with following scenario

    the cost center 123  has the following property and value
    property name      CC_PER     CC1     CC1_PER     CC2     CC2_PER
    value                                80              456              60                  789                40
    CC_per contains the percentage of value to be allocated out.
    CC1 contains the id of  target CC to be allocated to
    CC1_PER contains the percentage of value to be allocated to CC1
    CC2 contains the id of  target CC to be allocated to
    CC2_PER contains the percentage of value to be allocated to CC2.
    So here what we need to achieve is to allocate 80% of CC123 out.
    60% of which go to 456 40% of which go to 789..
    How to use runallocation standard function to achieve this? although I can write a customized script for the same.
    Edited by: Jianbai on Oct 25, 2010 10:35 PM

    What you see in those posts is correct - drivers (as well as senders and receivers) can be Transaction Data only.
    What you confused is how to select those records that hold those drivers. For this you can use Properties of Dimensions. So, basically it will be same as if you populate a variable via *SELECT (from Dimension) and than use that variable in allocation (WHAT or WHERE or USING or TOTAL).
    For example,
    *DIM Product_Group... USING= [Fruit] = "apples"...
    doesn't mean that driver will be taken from Product_Group Dimension where Property FRUIT has value "apples". It means that it will take those members from Dimension Product_Group that have "apples" in FRUIT Property and than select SIGNDATA from those records that have those selected members in the Application.
    Yes, it is perfectly fine to use property values in allocations, but you have to keep in mind that
    1. It will get that data (key figure) from the Application, not from Dimension;
    2. It is possible that there are not records in the Application that comply with that selection. Than no allocation will be executed (depending on SP and OSS Notes applied).
    Hope this clarifies things.
    Gersh

  • How to make the recv function in winsock2 stop after a specific time..?

    In an developing a Windows Desktop Console Application in c++ in Visual Studio 3013 for Windows Desktop, which acts as a client and tries to connect to a server. Once the Connection with the server is successful, it sends a handshaking signal to the
    server and waits for a response from the server. Iam using winsocks2 in this application. The receive function I am using is a blocking call
    iResult = recv(ConnectSocket, recvbuf, recvbuflen, 0);
    So until my server sends a response, the client is blocked. What I need is the client to check for response only for a certain time (say 10 sec). If there is no response within this time frame ,I want the client to disconnect from the server. How to achieve
    this?

    In an developing a Windows Desktop Console Application in c++ in Visual Studio 3013 for Windows Desktop, which acts as a client and tries to connect to a server. Once the Connection with the server is successful, it sends a handshaking signal to the
    server and waits for a response from the server. Iam using winsocks2 in this application. The receive function I am using is a blocking call
    iResult = recv(ConnectSocket, recvbuf, recvbuflen, 0);
    So until my server sends a response, the client is blocked. What I need is the client to check for response only for a certain time (say 10 sec). If there is no response within this time frame ,I want the client to disconnect from the server. How to achieve
    this?
    You could use setsockopt
    https://msdn.microsoft.com/en-us/library/windows/desktop/ms740476%28v=vs.85%29.aspx
    to set the timeout option, SO_RCVTIMEO, for the recv
    function.

  • How to make the report run with urls supplied parameters

    I have a report that I send the report's parameters by URL.
    How can I make the report automatically run with the parameters supplied?
    So when the report opens the user does NOT have to click the "View Report" button the report would just run and display the results for the user?
    Thank you for you help.

    Take your iPad to the apple store and explain your problem. They won't make you sit there for an hour to reproduce the problem. I took an iPad back a month ago wit h screen problems. They didn't look at the problem, they just exchange it.
    Again, Apple won't make you stand on your head to reproduce a problem with one of. their produces.

  • How to repair the sleep function with the latest version 10.8?

    After installing 10.8 I have a problem with the "sleep" function. When I use this by hand my iMac shut down and have to restart.
    This problem doesen't appear when I use the automatic one (in my case shut the iMac down after 15 minutes) and can I use the my iMac without any problem after touching the spacebar.

    http://support.apple.com/kb/HT3964?viewlocale=en_US

  • How to make the knob of a horizontal Scroll Bar stay at right

    Hi I need some advise to achieve this:
    I have a chart continuously deploying towards the right side (think on an electro cardiogram that is continuously feeding data). All the chart information is kept available inside a JScrollPane. What I want to achieve is:
    1. if the horizontal scroll bar knob is at the right end of the scroll bar make the end part of the chart be displayed continuously (view is scrolling to the right, the knob stays at the right end)
    2. if the user moves the knob left from the right end freeze the motion and just show the selected portion (meanwhile data keeps being fed and stored but not displayed)
    3. when the user decides to drag the knob again to the right end the behavior of point # 1 resumes.
    The basic swing structure I'm using for this is the following:
    public class Electro extends JPanel {
    public Electro() {
    JFrame f = new JFrame();
    JScrollPane sp = new JScrollPane(this);
    f.getContentPane().add(sp);
         f.pack();
         f.setVisible(true);
    I would highly appreciate any feedback from fellow members. Thank you.

    hi friend
    try this in ur code
    public class Electro extends JPanel {
    public Electro() {
    JFrame f = new JFrame();
    JScrollPane sp = new JScrollPane(this);
    sp.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
    sp.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
    f.getContentPane().add(sp);
    f.pack();
    f.setVisible(true);
    i think it will be help full to you
    thanks
    waiting for reply

  • Bug: scrolling with mouse scroll wheel while dragging tracks no longer works

    After upgrading to Spotify for Mac 1.0.2.6, I can no longer use my mouse's scroll wheel while dragging tracks to a different position in a playlist. This is an important feature when working with long playlists. Steps to reproduce:Create a playlist that extends past the bottom of the windowClick and begin dragging the first song on the playlist downwardUse your mouse's scroll wheel to scroll the playlist down. It will not scroll.

    Hey ,
    Thanks for letting us know.
    We don't have any update on this yet and we'll pass the information on to the right team.
    We'll keep you posted.
    Thanks! 

  • Scrolling upwards with mouse scroll wheel behaves strange

    Hi,
    I have a pretty plain installation that I have not done anything particular to configure the mouse or anything. It is just a plain Dell two button usb mouse with scroll wheel. That has been plugged in and seems to work ok, except the upward scrolling.
    Scrolling down both fast and slow works ok.
    When scrolling up it seems to not work completly as expected. The way I would describe it is that it mostly scrolls up, but at random intervals pops downward a bit then if you continue to scroll up it goes up again.
    This happens in all programs that you can use the mouse wheel to scroll up and down with, such as Firefox or Eclipse.
    Is this a bug, or something that is not configured right?

    You'll never know. Life is unexpected
    And please mark this as [Solve].
    Noone cares to do this these days.
    Last edited by lives2evil (2011-03-21 20:36:23)

  • Lightroom Freezes with Mouse Scroll Wheel

    K, bit of an odd one here....
    My lightroom appears to work perfectly except when i use the scroll wheel on my mouse, it seems to lock up.
    I am using Win7 64bit with Lightroom 3.4.1
    When i check my task manager; windows seems to think that lightroom is running perfectly.
    I have tried a fresh install of lightroom and also a different mouse but keep getting the same faliure.
    Help would be appreciated.

    I suggest it is most likely computer/os/driver related and not to do with Lightroom.
    Hopefully a Windows person will pick this up.

  • How to make the arch LiveUSB with Openbox

    I use arch with Openbox, now I want to make iso / LiveUSB from the arch in my hard drive, I would like my arch is already built can be used on any computer like Ubuntu LiveUSB. what should I do?. please help me
    ================================================
    http://pocilyx.blogspot.com
    Last edited by pocil (2012-01-25 16:14:31)

    First search than ask:
    https://wiki.archlinux.org/index.php/Building_a_Live_CD
    https://wiki.archlinux.org/index.php/Archiso
    https://bbs.archlinux.org/viewtopic.php?id=64989
    and so on...

Maybe you are looking for