Could somebody please advice how to stop the pages dropping ,when l go on ebay ,utube etc

could somebody please advice how to stop the pages dropping ,when l go on ebay ,utube etc

could somebody please advice how to stop the pages dropping ,when l go on ebay ,utube etc

Similar Messages

  • Could somebody teach me how to set the lastest iTunes so that it repeats just one of the numbers installed from the CD? I've alreadly tried it by clicking "control" and the bottom, but it doesn't work. Thank you.

    Could somebody teach me how to set the latest iTunes so that it repeats just one of the numbers installed from the CD?
    I've already given it a try by clicking "control" and the bottom item which means one item in Japanese, but it doesn't work.
    Thank you.

    You can access the repeat options if you right-click on the shuffle icon or if menus are enabled you can use
    Controls > Repeat > Off | All | One.
    Once the control is visible you can click it to switch between states as before. If the control is turned to off it disappears on the next track change. In contrast the shuffle control remains visible whenever it is appropriate. Hopefully the next release will fix this.
    The bottom one should do it.
    tt2

  • How to Stop the method Action When an Exception Occur in other Method

    Hi All ,
    public void action( Event clientEvent) {
    startAction();
    JOptionPane.showMessageDialog(null, getDocumnetId());
    how to Stop the method action ( "action" ) if an exception occur in the method ("startAction")
    ( if the exception occur we doesn't need to show the JOption Message )

    Hi,
    try FacesContext.getCurrentInstance().renderResponse();
    Frank

  • How to stop the video buffering when video is paused

    Hi
    I am developing the video player with custom video controls and I want to stop the video buffering when my video is paused. As sson as I play the video the buffering starts from the last bufferring point.
    can any one please help me for doing this i searched lot but not getting the solution please help me out to sort out this.
    Please refer the following link that I want to create the progress bar for my video player.
    http://tv.adobe.com/watch/training-with-trani/shake-detection/
    Thanks
    Sameer

    Hi
        Here is the code i would tried bothe bufferTime and maxBufferTime but not getting the required output.
        please check the code below.
        var _videoInfo = new Object();
        _videoInfo.onMetaData = onMetaDataHandler;
        ns = new NetStream(nc);
        //ns.maxPauseBufferTime = 0;
        ns.client = _videoInfo;
        ns.addEventListener(NetStatusEvent.NET_STATUS,netStatusHandler);
        ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR,asyncErrorHandler);
        sndTransform = new SoundTransform(initVol);
        vid = new Video(stage.stageWidth,stage.stageHeight);
        vid.smoothing = true;
        videoCont.addChild(vid);
        vid.attachNetStream(ns);
        ns.play("video.flv");
        ns.soundTransform = sndTransform;
    Thanks

  • How to get the page number when click the(Next page) Icon on Tableview

    Hi all,
           I had implemented a tableview in one of the Views that I had implemented for a BSP application. I am using MVC framework.
    Let us assume when we execute the BSP and a table view got 11 pages.
    How I can keep track of the page number when we click the  (Next page, Previous page, Bottom , Top) Icons on my tableview . Is there any attribute willstore that  corresponding page number of the tableview when we click the corresponding Icon's??
    I had checked both CL_HTMLB_TABLEVIEW and CL_HTMLB_EVENT_TABLEVIEW Classes and i don't find any attribute.
    Any help will be appreciated.
    Thanks in advance.
    Thanks,
    Greetson

    Hi Greetson,
      I was thinking to write a weblog about that.
      But now I would like to have your opinion:
      I coded a generic method in my main controller (but you could also insert it in the application class) that save the firstvisible row in the class  me->firstvisiblerowlist (that is a table)
      DATA: l_firstvisiblerowlist TYPE zmmsp_tableview_1st_visi_row.
      DATA: ff  TYPE ihttpnvp,
            ffs TYPE tihttpnvp.
      me->request->get_form_fields( CHANGING fields = ffs ).
      LOOP AT ffs INTO ff.
        IF ff-name CP 'f*visiblefirstrow'.
          READ TABLE me->firstvisiblerowlist INTO l_firstvisiblerowlist WITH KEY name = ff-name.
          CASE sy-subrc.
            WHEN 0.
              l_firstvisiblerowlist-name  = ff-name.
              l_firstvisiblerowlist-value = ff-value.
              MODIFY me->firstvisiblerowlist FROM l_firstvisiblerowlist INDEX sy-tabix.
            WHEN 4.
              IF sy-tabix = 0.
                l_firstvisiblerowlist-name  = ff-name.
                l_firstvisiblerowlist-value = ff-value.
                APPEND l_firstvisiblerowlist TO me->firstvisiblerowlist.
              ELSE.
                l_firstvisiblerowlist-name  = ff-name.
                l_firstvisiblerowlist-value = ff-value.
                INSERT l_firstvisiblerowlist INTO me->firstvisiblerowlist INDEX sy-tabix.
              ENDIF.
            WHEN 8.
              l_firstvisiblerowlist-name  = ff-name.
              l_firstvisiblerowlist-value = ff-value.
              APPEND l_firstvisiblerowlist TO me->firstvisiblerowlist.
          ENDCASE.
        ENDIF.
      ENDLOOP.
    Than you have to provide a generic method to read the firstvisiblerow for each tableview
    GET_FIRSTVISIBLEROW
    *IM_TABLENAME
    *RE_VALUE
      DATA: l_firstvisiblerow  TYPE zmmsp_tableview_1st_visi_row.
      READ TABLE me->firstvisiblerowlist INTO l_firstvisiblerow WITH KEY name = im_tablename.
      IF sy-subrc = 0.
        re_value =  l_firstvisiblerow-value.
      ELSE.
        re_value =  1.
      ENDIF.
    And in the DO_REQUSET of each controller you could write something like:
    * Paginator
      DATA: l_tab1_visiblefirstrow TYPE sytabix.
      l_tab1_visiblefirstrow = o_bsp_main->get_firstvisiblerow( 'f019id_tab1_visiblefirstrow'    ).
    As usual pass the value to the view via:
      o_page->set_attribute( name = 'tab1visiblefirstrow' value = l_tab1_visiblefirstrow ).
    Did you get it?

  • How to make the page expired when user click back

    how to make the page as expired when i click back button on the browser.
    i want a better way.
    actually i have a timer.when it reaches 00.00 then the expired page will be called automaticlly using location.href="expired.jsp" then if the user clicks back it should not show the previous page.this concept is applied with paging concept
    response.setheader is not working ...
    i have redirect when click back using
    <body onunload>....i call another page here.
    but it is not a good way.
    so pls help me to solve this problem
    using session or another good way

    Use this instead.
    Frame.setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);

  • How to retain the page location when SelectAll or SelectNone are clicked

    Hi,
    I have a fairly large jspx page and to get to the end of the page one needs to scroll down. Towards the end of the page I have a af:table component with “Select All” and “Select None” features. Every time the SelectAll or SelectNone is selected the top part of the page is displayed on the screen and to get back to the table the user has to scroll down again. Is it possible to retain the page location when the SelectAll and SelectNone are clicked.
    Thanks in advance

    Hi,
    actually I don't think that there is a solution to this. It seems that the table is re-painted upon selecting the select all link.
    Frank

  • A window pops up when on a website that states Warning : Unresponpsive script. Please advise how to stop the issue?

    While I'm on a website a window pops up and states as follows:
    Warning: Unresponsive script.
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script:File://C:/user/Frederick/appdata/roaming/mozilla/[email protected]/compents/Foxyproxy.j s->File://C: users/Frederick/appdata/Roaming/Mozilla/FireFox/profiles/b61efault/extensions/[email protected]/modules/supperadd.j s:221.
    This all started when a change the foxproxy and it continues to pop up while I'm on any website.
    Please explain to me how to change the proxy or a way to resolve this critical issue.
    You may call me or get in my computer remotely. Whatever it take to fix this problem.
    I have to click on continue or stop many time a day.
    Thank you for your consideration with this matter.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Could you please tell how to caculate the salary ?

    Hi all:
         Could you please tell me how to calculate the salary ? what elements should be taken into account?  
         Thank you very much!!!

    Hi Sony
    Ther are many components that are used to calculate a salary.
    It is dependent on the country in which you are implementing the Payroll.
    Can you be little more clear on your question?
    Ravee
    0.99206.33669

  • How to stop the Flex application when user clicks on Cancel button from JS-confirm message?

    Hi All,
    I use the next code when a user clicks on a link:
    private function clickHandler():void
          ExternalInterface.call('confirm', 'Of course you want to go to the Adobe forums!');
          navigateToURL(new URLRequest('http://forums.adobe.com'), '_self');
    This will show up the javascript confimation box. But when the cancel-button is clicked, the user goes straightly to http://forums.adobe.com...
    How to stop Flex performing the next code when a user clicks on the Cancel button?
    Or, how to catch which button is clicked by a user in Flex?
    Thanks!

    I agree with Mr. Hall that using mx.controls.Alert in Flex may be a better route.
    Show the Alert like this:
    // show an alert with a question and yes and no choices
    Alert.show( "Would you like to go to the Adobe Forums?", "Question",
         Alert.YES | Alert.NO, this, closeHandler, null, Alert.YES );
    Then handle the response in the closeHandler() function:
    protected function closeHandler( closeEvent:CloseEvent ):void
    if( event.detail == Alert.YES )
         navigateToURL( new URLRequest('http://forums.adobe.com'), '_self' );
    else if( event.detail == Alert.NO )
         // they chose no
    The following documentation on Alerts may be helpful:
    http://www.flexafterdark.com/docs/ActionScript-Alert
    Let me know if that helps...
    Ben Edwards

  • How to stop the pages to show me MKD instead EUR and Can I pick valute for all pages??

    I am booking flights or hotels and instead of the price to be in EUR or USD it gives me MKD, and I don't want to! I would like to choose the currency myself or stop the automatic change!
    Thank you in advance,
    ZK

    hello, please contact the support of the sites where this is happening - there is not much that firefox or any other browser can do about it, since it only displays the content that gets transmitted from the sites - they might use your ip address to find out your approximate location and adjust the language/currency settings accordingly...

  • Could you tell me how to use the page parameters to portlet parameters?

    In the Page Group: Properties link , then to the Configure tab,
    then to Parameters and Events section & check the box to enable Parameters and Events.
    I did it. And I can see the Parameter tab on page properties.
    =====================provider.xml=================
    <inputParameter class="oracle.portal.provider.v2.DefaultParameterDefinition">
    <name>boardname</name>
    <displayName>boardname</displayName>
    <description>This is public portlet parameter #1</description>
    </inputParameter>
    <inputParameter class="oracle.portal.provider.v2.DefaultParameterDefinition">
    <name>boardid</name>
    <displayName>boardid</displayName>
    <description>This is public portlet parameter #2</description>
    </inputParameter>
    ==========================================
    Also I did write the above in provider.xml.
    But there is "portlet_name(no parameter)" in Portlet Parameter section.
    I did as the document
    (http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/ARTICLES/ADDING.PARAMETERS.EVENTS.TO.PORTLETS.HTML).
    I don't know what is wrong.
    Experts~!,could you help me?
    With regards,
    eunjoo

    I did it!
    In my provider.xml,
    I deleted <passAllUrlParams>true</passAllUrlParams>
    tags. Then it works~!
    Thanks,
    eunjoo

  • How to reserve the page size when exporting to MS Excel 2010

    Hello. I have a report which exports to MS Excel 2010. I applied the page size as legal in Crystal Report and would like to use the same page size in Excel
    However, MS Excel print preview says the page size is letter.
    How could I keep the same page size in Excel as I applied in Crystal Report. We have a lot of business reports and would like to avoid applying page setting manually in Excel when users print them out each time.
    Thank you.

    Hi Christine
    I am in the process of writing a doc on the different options in CR and the "No Printer" option sis one of those. Seeing this post, made me wonder as this looked like a questionable behavior. My testing does not support your observations. Now, I did a very simple test;
    Created a report, set "No Printer", set the paper size and legal orientation. Exported to XLS - any format, and the export maintained legal paper size in all instance. I did a few other variations, but I can never get the report to export anything other than Landscape.
    Can you  please let me know the version of CR you are using?
    You may also want to attach the report here with saved data (to attach rename the rpt to txt, then in the reply hit on the "Use advanced editor" link and attach.
    BTW.; I am using CR 2013.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Please could anybody tell me how to stop the rainbow wheel from turning

    i sem to have a start up disk full prob but no other mac as target mode, just PC and an external hard disk thanks it is becomeming alarmingly urgent

    Hello! HERE and HERE are articles on freeing up disk space. If you've burned cd/dvds and only leave the computer on for short periods then it's likely not having time to clear the temp files. You can use a utility to do the maintenance or leave it on 24/7 for a couple of days. Be sure and empty the trash when you delete items and remember pictures and music take up the most space. tom

  • How to stop the iTunes launching when play/pause is pressed? PLEASE HELP

    I have a macbook pro 13 inches. When I play computer game, during an intense battle, I always accidently press the play/pause button.
    Immediately, the iTunes launch, which will make my game go frozen and I would always lose the battle. This make me extremely frustrated, I have lose so many battles cause of this problem. I know that I could turn the top row of my action keys to Fn keys. That would solve my problems, right? But no. Becuase I use those keys very often. It would be awful without them. For example, the screen brightness, the mission control, the keyboard back-lit light, the volume adjust. Without all these, my mac experience would be awful. Im just wondering if there are other solution beside for turning the Fn keys on.
    PLEASE HELP ME

    This has fixed it for me
    http://redth.codes/itunes-media-hotkey-disabler/

Maybe you are looking for

  • Migration from HP-UX to Linux DB for UPK3.5

    Hi all I have a customer who wants to migrate the UPK server from one server to other also the repository database used by the UPK server. Old UPK server details UPK server platform:Windows 2003 SP2 UPK version:3.5 Database platform:HP-UX DB Version:

  • Need to format my macbook

    I've been having trouble with my keyboard. Certain letters do not work, but mostly result in other commands being performed or other keys being "pressed". It is not my actual keyboard, as I have tried attaching a USB keyboard, but it does the exact s

  • Can't map directories as non-root

    Hi, I'm running openSuse 10.2 with NCL 1.2 for SLE10. I don't need any GUI so I'm using the following command lines: nwlogin -t testtree -s main -u s02b.class02b.classes.myschool -p ***** nwmap myhome:=//main/sys/Home Using this commands as root ever

  • Is there an health wireless pulse oximeter app for my macbook pro?

    In the documentation for the iHealth Oximeter it only mentions iOS. Can I install the app on my Macbook Pro?

  • [SOLVED] SIS Driver Problem after Upgrade

    I have an old custom-built desktop machine based on an ASRock motherboard using an SIS 741GX chipset and integrated Mirage graphics. I have the xf86-video-sis driver installed, and all worked well until a recent update. The xorg-server now fails with