Scrolling pop ups

hi! i'm curious how to make it so that when i scroll over text on a bar at the top of my site, a list of more pages to choose from pops up below the mouse arrow.
is this possible in iweb?
thanks!

if you willing to learn, I would suggest to learn everything: DOM, HTML, CSS, JavaScript, XML ... a good place to get info: http://www.w3.org/
lastly, you need to know iweb from the inside; as of iweb3 you can make your own widgets to take control over iweb. Here is my example:
http://www.cyclosaurus.com/Home/CyclosaurusBlog/Entries/2009/8/11Pieces_of3.html
it's done with my widgets.

Similar Messages

  • Why can't I close the Firefox browser or any pop-ups?

    This is a problem I had with Firefox before I formatted my computer a few weeks ago. Firefox was working just fine after the fresh windows install which was great (I actually had to switch to using Safari because I couldn't stand how glitchy Firefox was), but looks like the same problem is happening again!!
    In sum: the Firefox browser will not close when I click the X close button in the top corner. Also, no pop-ups will close, whether I click on OK or X or anything to either accept or deny changes. When a pop-up is prompted on a website so that I can upload a picture or other media (such as uploading a new profile picture on twitter), I am not able to scroll through my computer's content on the pop-up (scrollbars don't work), X close the pop-up or even press OK to accept the changes and choose the picture. However, I am still able to access the content, choose an item and browse through folders for what is displayed on my screen, so it is not frozen. It won't even let me use the arrow keys to scroll through the content though.
    I have to ctrl+alt+del to close firefox. No, restarting my computer doesn't help. Clearly reinstalling firefox doesn't help as I recently did that when I formatted my computer, and internet explorer, safari and opera work just fine.

    Invoke the music player, Options -> Exit. It's the last one in the list
    Cheers,
    DeepestBlue
    5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
    If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

  • Images inside pop-ups not displaying correctly

    I am generating a CHM using RoboHelp 10. I have certain pop-ups in some topics. These pop-ups contain screen shots. After generating the CHM, when I click the pop-ups to view the screen shots, they are not displayed correctly. That is, half of the image does not appear and there are no horizontal scroll bars either to scroll. This happens for pop-ups that are appear on the left side of a topic.The images inside pop-ups that appear to the right side of a topic appear fine when clicked.

    Hi Rick,
    Thank you for the response. Alas, updating the DHTML effects doesn't help. In the project that am working, I have used hyperlinks that are marked to be displayed as auto-sizing pop-ups.
    I also tried editing the eHlpDhtm.js file as mentioned in the thread here, https://forums.adobe.com/thread/1297423#expires_in=86399993&token_type=bearer&access_token =eyJhbGciOiJSUzI1NiIsIng1dSI6I…. But that was of no avail either.
    Do you have any other insights here?
    Regards,
    Anamika
    P.S. Am using RH 10.0.1.292.

  • Images inside pop-ups in CHM not displaying correctly

    I am generating a CHM using RoboHelp 10 on a Windows XP machine.
    I have a few pop-ups in some topics. These pop-ups contain screen shots. After generating the CHM, when I click the pop-ups to view the screen shots, they are not displayed correctly. That is, half of the image does not appear and there are no horizontal scroll bars either to scroll. This happens for pop-ups that appear on the left side of a topic. The images inside pop-ups that appear to the right side of a topic appear fine when clicked.
    The help file was originally created using RH 7. I upgraded the source files to RH 10 successfully and there were no errors during the upgradation.
    I even tried generating the CHM on other systems with RH10 and the same system configuration as mine but ended up with the same results. I assume there is some compatibility issue maybe between RH 7 and RH10.
    Looking forward to any helpful insights here as this is pretty urgent at the moment for me to resolve the aforementioned issue at the earliest.

    Hi Rick,
    Thank you for the response. Alas, updating the DHTML effects doesn't help. In the project that am working, I have used hyperlinks that are marked to be displayed as auto-sizing pop-ups.
    I also tried editing the eHlpDhtm.js file as mentioned in the thread here, https://forums.adobe.com/thread/1297423#expires_in=86399993&token_type=bearer&access_token =eyJhbGciOiJSUzI1NiIsIng1dSI6I…. But that was of no avail either.
    Do you have any other insights here?
    Regards,
    Anamika
    P.S. Am using RH 10.0.1.292.

  • Is't Single-VLAN One-Armed Mode let the pop-ups error?

    Dear all
      In my network I deployed Single-VLAN One-Armed Mode In this mode,the real server’s default gateway is the upstream router. To ensure the return
    flow traverses back through the load balancer, the IP address of the client isrewritten to that of the load balancer.
      Direct access web was fine ,however when open Pop-ups website will appear error Example, the figure-1 :
      figure-1
      When I used real Server IP address not through ACE anything will be fine. Example, the figure-2 :
    figure-2
    The Web's Code
    <%@ page language="java" pageEncoding="UTF-8"%>
    <%@ taglib uri="/WEB-INF/hnisi.tld" prefix="hnisi"%>
    <%@ include file="/jsp/framework/head.jsp"%>
    <%@ page import="cn.sinobest.framework.util.DTOUtil,cn.sinobest.framework.util.Util,cn.sinobest.framework.util.ConfUtil" %>
    <%
        //当前登录用户 所属系统机构
        String orgCode = DTOUtil.getUserInfo().getBAE001();
        //操作员ID
        String operId = DTOUtil.getValue("OPERID");
        //角色类型
        String roleType = DTOUtil.getValue("ROLETYPE");
            String fromFuncDesc = DTOUtil.getValue("fromFuncDesc");
        //所选操作员的姓名
        String sOperatorName = DTOUtil.getValue("SOPERATORNAME");
        //权限树 where 条件
        String whereClsTree = " rightid in (  select distinct B.RIGHTID "+
                    " from FW_RIGHT B"+
                    " left join FW_OPERATOR2RIGHT A on LOCATE(B.RIGHTID,A.RIGHTID) = 1"+
                     " where A.AAE100 ='1'"+
                     " and B.AAE100 ='1' and A.operid = '"+operId+"' ";
        //条件:有效角色,当前登录用户只能操作用户所属系统机构及下级机构的角色,以及上级机构的共享角色
        String whereCls =" AAE100 ='1' and (BAE001 like '"+orgCode+"%' or ( IFSHARED = '1' and LOCATE(BAE001,'"+orgCode+"') = 1))";
        if(!Util.isEmpty(roleType)){//角色类型
                 whereClsTree +=" and AUTHTYPE='"+roleType+"' ";
                 String roleType_zdfpzj = ConfUtil.getDict("ROLETYPE", "13");//最大分配角色
            if("2".equals(roleType)){//分配角色包括:分配角色、最大分配角色
                     whereCls += " and ROLETYPE in('"+roleType+"','"+roleType_zdfpzj+"') ";             
            }else{
                           whereCls += " and ROLETYPE='"+roleType+"' ";
        whereClsTree +=" )";
    %>
    <%-- 导航栏标签 --%>
    <hnisi:gNavStr />
        <legend style="cursor:hand;" >
            <span>
                <img id="img_fw_authmngr_geneauth_list_grid" src="${ctx}/themes/default/images/query_icon_right.gif">
            </span>
            <span title="单击展开或收缩">
                <b><%=sOperatorName%></b>已拥有的权限树
                <hnisi:tree id="menus" type="1" whereCls="<%=whereClsTree %>"/>
            </span>
        </legend>
        <form name="roleListForm" method="post">
            <%-- 角色列表--%>
            <hnisi:glt id="fw_authmngr_geneauth_role" whereCls="<%=whereCls %>" />
            <p align="center">
                <%-- 确定按钮 --%>
                <hnisi:btn name="btnQuery" onclick="roleAutoOk()" value="保存" href="javascript:void(0)"/>
                <%-- 清除按钮 --%>
                <hnisi:btn name="btnCls" onclick="cls()" value="清除" href="javascript:void(0)"/>
                <%-- 关闭按钮 --%>
                <hnisi:btn name="btnClose" onclick="winClose()" value="关闭" href="javascript:void(0)"/>
            </p>
        </form>
        <form name="roleForm">
            <input type="hidden" name="OPERID" value="<%=operId %>"/>
            <input type="hidden" name="ROLEIDS">
        </form>
        <script type="text/javascript">
        <!--
        var orgCode ="<%=orgCode%>";
        var operId ="<%=operId%>";
        var roleType ="<%=roleType%>";
         * 权限列表窗口
         * @param roleId:角色ID
        function winRight(roleId){
            var eventId="1";//授权事件(1 查询、2 授权)
                 //弹出模态对话框,并加上时间戳以防止缓存
                 window.showModalDialog("right!left.do?EVENTID=" + eventId+"&ROLETYPE="+roleType+"&ROLEID=" + roleId+"&_t="+new Date().getTime());
         * 确定-保存授权信息
             function roleAutoOk(){
                       $(function(){
                           var roleIds = "";
                           $.each($("input[name='checkbox']:checked"),function(i,o){
                               roleIds += (i==0 ? "" : ",")+o.value;                 
                           if (roleIds == ""){
                                    FWalert("请选择要操作的角色!");                          
                                    return;
                           roleForm.ROLEIDS.value  = roleIds;
                           var params = FWGetForm(roleForm);
                           if(params.ROLEIDS ==""){
                               FWalert("请选择要操作的角色!");
                           }else {
                                    var fromFuncDesc = "<%=fromFuncDesc%>";
                                    //先进入本次权限变更列表页面,确认后再保存
                                    var title = encodeURIComponent('授权确认');//对话框的标题
                               var url = "right!list.do?OPERID="+operId+"&fromFuncDesc="+fromFuncDesc+"&ROLETYPE="+roleType+"&ROLEIDS="+roleIds+"&title="+title+"&_t="+new Date().getTime();
                                    var position="resizable:1;status:0;help:0;scroll:1;center:1;dialogWidth:800px;dialogHeight:500px";
                                    window.showModalDialog(url,window,position);
         * 直接授权:弹出权限树窗口
        function directAuto(){
            var eventId="2";//授权事件(1 查询、2 授权)
                       //弹出模态对话框,并加上时间戳以防止缓存
                 window.showModalDialog("right!left.do?EVENTID=" + eventId+"&ROLETYPE="+roleType+"&OPERID=" + operId+"&_t="+new Date().getTime());
         * 清除:清除已选择的角色 checkbox
        function cls(){
            var c_checkbox=document.getElementsByName('checkbox');
                       for (i=0;i<c_checkbox.length;i++){
                c_checkbox[i].checked=false;
         * 关闭窗口
        function winClose(){
                 window.close();
        //-->
        </script>
    </body>
    </html>
    The ACE's config
    `show running-config`
    Generating configuration....
    boot system image:c4710ace-mz.A4_2_0.bin
    interface gigabitEthernet 1/1
      switchport access vlan 100
      no shutdown
    interface gigabitEthernet 1/2
      shutdown
    interface gigabitEthernet 1/3
      shutdown
    interface gigabitEthernet 1/4
      switchport access vlan 3
      no shutdown
    access-list ALL line 8 extended permit ip any any
    access-list allowany line 8 extended permit ip any any
    access-list allowany line 16 extended permit icmp any any
    probe icmp Ping
      interval 2
      faildetect 2
      passdetect interval 2
      passdetect count 1
      receive 2
    probe tcp TCP6666
      description RPC Client Access
      port 6666
      interval 30
      passdetect interval 60
      connection term forced
      open 10
    probe tcp TCP8888
      description RPC Client Access
      port 8888
      interval 30
      passdetect interval 60
      connection term forced
      open 1
    rserver host YB1
      ip address 110.43.102.241
      inservice
    rserver host YB2
      ip address 110.43.102.245
      inservice
    rserver host YB3
      ip address 110.43.102.246
      inservice
    rserver host YB4
      ip address 110.43.102.247
      inservice
    rserver host YB5
      ip address 110.43.102.248
      inservice
    rserver host YB6
      ip address 110.43.102.242
      inservice
    serverfarm host YB01farm
      predictor leastconns
      probe TCP6666
      rserver YB2
        inservice
      rserver YB3
        inservice
      rserver YB4
        inservice
      rserver YB5
        inservice
    serverfarm host YB02farm
      predictor leastconns
      probe TCP8888
      rserver YB2
        inservice
      rserver YB3
        inservice
      rserver YB4
        inservice
      rserver YB5
        inservice
    parameter-map type http PRESIST-REBALANCE
      persistence-rebalance
    sticky ip-netmask 255.255.255.255 address source YB01-GRP
      timeout 60
      replicate sticky
      serverfarm YB01farm
    sticky ip-netmask 255.255.255.255 address source YB02-GRP
      timeout 60
      replicate sticky
      serverfarm YB02farm
    sticky http-cookie COOKIE1 STICKYYB01
      cookie insert browser-expire
      timeout 3600
      replicate sticky
      serverfarm YB01farm
    action-list type modify http IP-header
      header insert request X-Forwarded-For header-value "%is"
    class-map match-all YB01-slb-vip
      2 match virtual-address 110.43.102.251 any
    class-map match-all YB02-slb-vip
      2 match virtual-address 110.43.102.252 any
    class-map type management match-any remote_access
      description remote-access-traffic-match
      2 match protocol xml-https any
      3 match protocol icmp any
      4 match protocol telnet any
      5 match protocol ssh any
      6 match protocol http any
      7 match protocol https any
      8 match protocol snmp any
    policy-map type management first-match remote_mgmt_allow_policy
      class remote_access
        permit
    policy-map type loadbalance http first-match YB01-slb
      class class-default
        sticky-serverfarm STICKYYB01
        action IP-header
    policy-map type loadbalance http first-match YB02-slb
      class class-default
        sticky-serverfarm YB02-GRP
        action IP-header
    policy-map type loadbalance first-match YB6666
      class class-default
        sticky-serverfarm STICKYYB01
        action IP-header
        insert-http https header-value "on"
    policy-map multi-match client-vips
      class YB01-slb-vip
        loadbalance vip inservice
        loadbalance policy YB6666
        loadbalance vip icmp-reply active
        nat dynamic 100 vlan 100
        appl-parameter http advanced-options PRESIST-REBALANCE
      class YB02-slb-vip
        loadbalance vip inservice
        loadbalance policy YB02-slb
        loadbalance vip icmp-reply active
        nat dynamic 100 vlan 100
    interface vlan 3
      ip address 192.168.50.2 255.255.255.240
      access-group input ALL
      service-policy input remote_mgmt_allow_policy
      no shutdown
    interface vlan 100
      ip address 110.43.102.238 255.255.255.0
      access-group input allowany
      nat-pool 100 110.43.102.239 110.43.102.239 netmask 255.255.255.255 pat
      service-policy input remote_mgmt_allow_policy
      service-policy input client-vips
      no shutdown
    ip route 0.0.0.0 0.0.0.0 110.43.102.112

    Hi,
    The error comes when accessing the website through LB. The error is thrown by the server. Do  we know what does that error indicate and will be thrown by server under what circumstances?
    Can you just try with one server in the serverfarm and check if it works fine?
    Does it load initial page at all or throws error right away.
    What do you see in show conn output? Which VIP is in question here?
    Regards,
    Kanwal

  • Annoying Pop ups

    I am having annoying pop ups and new tab openings on safari on my Mac ( OSX 10.9). Also having small green boxes next to words on page that when I scroll over obviously show an ad.  Just started appearing in the last few days. When I cutoff Java Script they are gone but I cannot get through many sites without the Java Script

    There is no need to download anything to solve this problem.
    You may have installed one or more of the common types of ad-injection malware. Follow the instructions on this Apple Support page to remove it. It's been reported that some variants of the "VSearch" malware block access to the page. If that happens, start in safe mode by holding down the shift key at the startup chime, then try again.
    Back up all data before making any changes.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, ask for further instructions.
    Make sure you don't repeat the mistake that led you to install the malware. It may have come from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    Malware is also found on websites that traffic in pirated content such as video. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • Memory Capacity when using DHTML Hotspot/pop-ups

    I use Robo v5. I have begun reformatting my predecessor's
    topics to make them more robust and have been exploring the Robo
    Help. Perhaps I am not technically-savvy enough to use these
    features properly, so if I am, please just advise me and I'll see
    if my boss will send me to some official Robo training. Our end
    users seem to like what I've been doing, however, and it is indeed
    making our Help System more usable.
    What I'm doing is embedding screen captures as pop-ups using
    the "DHTML - Create Drop-down Hotspot and Text" menu option. The
    links work and all of that is good, however, in my larger topics,
    I'm noticing issues when working in those topics. 1 of 2 things
    occur frequently enough to be a nuisance:
    1. The topic just "dies" - the cursor freezes and my scroll
    bar cuts off the bottom portion of the topic. None of the data is
    lost, but I have to close it and reopen it. Part of the topic just
    disappears including the workspace it occupies.
    2. I run out of memory - I actually get a dialog that says
    "Insufficient Memory" and the topic aborts automatically. Again,
    none of the data is lost, but I have to reopen it. Sometimes, this
    occurs every couple of "saves".
    In my smaller topics, it's a non-issue.
    Is this related to the number of Hotspots I'm embedding or is
    it an issue with my Local Drive or what? I truly appreciate any
    guidance here! Thanks.

    Thanks for responding.
    1 - is 1.8KB and contains 12 pop-ups, some of which are
    pointing to the same image.
    2 - is 2.7KB and contains 50 pop-ups, some of which are
    pointing to the same image.
    These topics also have images embedded within the actual
    topic and not as a pop-up. Another thing I'm using are image maps
    (which I didn't mention before 'cus I didn't think it would
    matter).
    Are there other options for using images that reduce the size
    of a topic? I found that using pop-ups make the topic easier to
    read (they previously were entirely too monsterous because the
    screen captures were within the text. I now use only the primary
    ones in the body of the text and embed the subsidiary ones as
    pop-ups.)

  • Push notification pop ups

    I own an iPhone 4 and on it I have a number of applications. Recently, upon going into these applications a pop up regarding "Push Notifications" appears.
    This informs me to connect to iTunes to enable these notifications. In certain applications these pop ups fail to disappear once I press "Ok", they simply reappear  second later, therefore making the applications impossible to use. Since this happened I cannot receive notifications of Facebook messages etc.
    I have already connected to iTunes in an effort to get rid of these pop ups but it has not helped. I have also tried turning off the Notifications in my Settings, deleted and re downloaded the apps, updated my software and reset my entire phone but nothing has helped.
    I would greatly appreciate a reply/ advice as how to combat this problem as it is now incredibly frustrating to use my phone .
    Regards

    I have had the same problem and what I have found that you can do is:
    Settings->Notification centre->select app->choose none at the top and scroll down and choose to not show in notification centre
    This us the only thing I have found that you can do and it seems to stop them coming through for me!
    Hope this has helped you

  • Iframes, with pop ups?

    Hey! I use an external scheduling website for my pet sitting service. (Basically our clients can log onto the website to book services, blah, blah, blah.) So I wanted to use iframes within iweb so it appeared like clients were never leaving our site to book services, even though they were using an external website.
    Sounds great, right?! I got the iframes working with the right dimensions and stuff. But, whenever the external website needs to do a pop up (often for scheduling and payment) the pop up ends up WAY down the screen. (Like two screens down...) So it's kinda useless unless I warn all of my clients to scroll down if it appears like nothing is happening. Unfortunately, I can't give ya'll access to my data base to see what I mean - but does anyone have any experience using iframes with a site that utilizes pop ups?
    Is there a setting in iweb I don't know about that deals with iframe pop ups?
    Thanks!

    Hi,
    Just want to share that in WD, only Modal popup are possible. you can see this in description of parameter MODAL of method CREATE_WINDOW (Obsolete! Only Modal Popups Are Supported).
    Thanks,
    Chandra

  • Something was hidden in a download and now these double green underlined hyperlinks show up everywhere, and pop ups too whenever I click on ANYTHING. I can't figure out how to find it and get rid of it.

    Something was hidden in a download and now these double green underlined hyperlinks show up everywhere, and pop ups too whenever I click on ANYTHING. I can't figure out how to find it and get rid of it.

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight is inexcusable and has compromised the value of Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Eu estou tendo problemas com pop-ups, já baixei todos os complementos possiveis mas não adianta, eles continuam aparecendo; como faço para não aparecer mais?

    Havia um programa que já veio instalado no computador mas que depois de um tempo meu antivirus acusou que ter vírus. Deletei-o e então começou a aparecer os pop-ups. Baixei vários complementos como AdBlock, Avast online Security etc mas nada deu certo, eles continuavam a aparecer nas redes sociais, como em outros sites. Tive que recorrer ao Modo de Segurança do Firefox e desde então não aparece mais pop-ups. Queria saber se tem algum jeito de conseguir a mesma coisa sem ter o Modo de Segurança ativado.

    Tente limpar todo o cache do firefox qualquer dúvida tente esse [[Como limpar o cache do Firefox|Tutorial]] . Se não resolver tente tirar um print e postar aqui o conteúdo do pop-up, dessa forma podemos ver o problema.

  • I have an iPhone 4 and my lock button is jammed and I also can not touch anything on the left side of my screen well as any pop ups from the phone itself, so i can not get past the set up stage in reset process...how can i fix it/can it be fixed?

    I have an iPhone 4 and my lock button is jammed and I also can not touch anything on the left side of my screen well as any pop ups from the phone itself, so i can not get past the set up stage in reset process...how can i fix it/can it be fixed?

    Make an appointment at the genius bar and get the phone replaced.

  • Caps lock/scrol​l lock/num lock/ LEDs not working - instead pop-ups in bottom RH corner of screen

    Specific details; p/n: GS066PA#ABG,  4 GBytes DDR2 RAM, OS Windows 7 (6.1) Ultimate Edition 64-bit Service Pack 1 (Build 7601) DirectX 11.0.  LED's were working but during one of the windows automatic updates they stopped working.  I don't know which update.  Now I get little pop-ups "CAPS LOCK: ON" etc (black text on white background).  If I rename bttray.exe to bttray1.exe and restart the laptop, that kills the pop-ups in the bottom RH corner of the screen but it does not restore the operation of my blue indicator LED's.  Can anyone help please?

    Hi @haggis1 ,
    I saw your post regarding the problems with the pop-ups and LED lights not working after a Windows Update. Most likely there was a problem with the update when it was installed. This Microsoft Support link will show you how to uninstall an update. Try uninstalling the most recent updates and the restart the notebook and see if the LEDs start working again.
    If that fixes the issue then there is another section in that link entitled: I remove an update but it gets automatically installed. That will show you how to hide an update.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • How Do I STOP pop ups FROM enabled when I Have disabled them to pop up it happens when I am workin on an important document a real pain

    I have i web based stock system and it requires pop ups I have enabled for the pop ups and things work fine the all of a sudden my pop ups are blocked and the only way to continue I have to reboot my computer

    Hello fisherman66,
    Firefox usually doesn't block pop-ups, especially if you allow them, but extensions and some security software can block pop-ups.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How do i get rid of price finder pop ups on my mac?

    I am getting price finder pop ups every time in shopping on line or even just browsing the web. Does any body know how to get rid of the price finder pop ups?

    Try this: http://www.thesafemac.com/arg/
    This is because you installed recently a third party software, please don't install third party software unless you are absolutely sure of its origins and how to get rid of them. Remember, Macs are not inmune to virus, specially adwares

Maybe you are looking for