Positioning Pop-Ups

I seem to only be able to specify the X and Y coordinates for
pop-ups. I need my pop-up to always take up the right 70% of the
application size and 100% of the height. The percentages need to
stay consistent if the user re-sizes the main window. With regular
items, this is quite simple, but I can't figure out how to do this
with a pop-up.

I'm not doing something quite right. My code below:
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute" creationComplete="initApp();"
resize="resizeApp();">
<mx:Script>
<![CDATA[
import mx.managers.PopUpManager;
import mx.core.IFlexDisplayObject;
import MyLoginForm;
private var helpWindow:IFlexDisplayObject;
private function initApp():void{
maximize();
private function showLogin():void {
helpWindow = PopUpManager.createPopUp(this, MyLoginForm,
false);
private function resizeApp():void{
//This doesn't work
//helpWindow.x = 0;
//helpWindow.y = parent.width * .7
]]>
</mx:Script>
<mx:VBox width="300" height="300">
</mx:VBox>
<mx:Button click="showLogin()" label="Login" x="10"
y="10"/>
</mx:WindowedApplication>
*******MyLoginForm.mxml***************************
<?xml version="1.0"?>
<!-- containers\layouts\myComponents\MyLoginForm.mxml
-->
<mx:TitleWindow xmlns:mx="
http://www.adobe.com/2006/mxml"
creationComplete="initWindow();" showCloseButton="true"
close="PopUpManager.removePopUp(this);">
<mx:Script>
<![CDATA[
import mx.managers.PopUpManager;
private function initWindow():void {
PopUpManager.bringToFront(this);
this.y = 0;
this.x = parent.width * .3;
this.height = parent.height;
this.width = parent.width * .7;
private function processLogin():void {
// Check credentials (not shown) then remove pop up.
PopUpManager.removePopUp(this);
]]>
</mx:Script>
<mx:Form>
<mx:FormItem label="User Name">
<mx:TextInput id="username" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Password">
<mx:TextInput id="password"
displayAsPassword="true"
width="100%"/>
</mx:FormItem>
</mx:Form>
<mx:HBox>
<mx:Button click="processLogin();" label="OK"/>
<mx:Button
label="Cancel"
click="PopUpManager.removePopUp(this);"/>
</mx:HBox>
<mx:Text id="myText" text="{parent.width}"
width="88"/>
</mx:TitleWindow>

Similar Messages

  • When I go to my safari settings I cannot turn off my "Block Pop-ups for a site.  It is stuck in the on position.

    I have certain websites that use popups that I need to be able to use.  When I go to Safari settings I cannot turn of the "block pop ups" setting.  It is grayed out and only in the on postion.

    You will need to have the hold switch replaced.

  • Flash player doesn't work -  How to get rid of Flashruntime pop-ups

    I have 2 problems:
    1.
    My Flashplayer stopped working months ago, when using Internet Explorer. It does Work when using Firefox.
    I prefer using Internet Explorer.
    Now I have uninstalled Flashplayer and installed Again - same situation.
    I have also tried to install Adobe Air with no positive result.
    2.
    For some time I have had the problem of Flashruntime pop-ups continously, no matter which website I opened. I could not click it away - or admit.
    By advice from Microsoft I have reinstalled Internet Explorer. Now the Flashruntime still comes up when I open certain websites but not quite as heavy as before.
    I have blocked pop-ups. The Flashruntime does not appear on the list of add-on programs where you have the possibility of deactivating.
    Please see Picture of the pop-up (in Danish text) above.
    I hope you can suggest solutions for me
    Best regards
    Bente Michelsen

    I have 2 problems:
    1.
    My Flashplayer stopped working months ago, when using Internet Explorer. It does Work when using Firefox.
    I prefer using Internet Explorer.
    Now I have uninstalled Flashplayer and installed Again - same situation.
    I have also tried to install Adobe Air with no positive result.
    2.
    For some time I have had the problem of Flashruntime pop-ups continously, no matter which website I opened. I could not click it away - or admit.
    By advice from Microsoft I have reinstalled Internet Explorer. Now the Flashruntime still comes up when I open certain websites but not quite as heavy as before.
    I have blocked pop-ups. The Flashruntime does not appear on the list of add-on programs where you have the possibility of deactivating.
    Please see Picture of the pop-up (in Danish text) above.
    I hope you can suggest solutions for me
    Best regards
    Bente Michelsen

  • Printing pop-ups and hidden layers

    I have a pdf document with multiple layers that only pop-up when you click on the corresponding button. Since I planned on distributing this pdf to different people, I wanted to see if there was a way that users could print a printer-friendly version with a couple of the pop-ups rearranged neatly in one page? It would be great if I could link the 'print' button to print a different one-pager entirely, but wasn't sure if that was possible.

    What do you mean by 'pop-ups'? Layers, JS windows or buttons?
    You can set the properties of a layer to "always prints" independent of the screen visibility, but you can't rearrange the position of things on the page just for printing.

  • 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

  • Getting pop ups tonight despite having pop ups blocked

    I've had 'credit score' pop ups from 2 unconnected sites starting with the URL http://cdn.optmd.com/ tonight, despite having the pop up blocker enabled, including Snopes and one about old TV shows.
    Does the URL sound legit? How is getting past my blocker?
    I'm running MSE and Spybot just in case they're dumping malware, but if anyone has any thoughts, esp on how to block them properly, I'd be obliged. Thank in advance.

    See this in the right-hand column on that page:
    CLICK TO
    OPT OUT » You must have cookies enabled on your browser for the opt out to take effect. If you clear your cookies, the opt out will be deleted and you will need to opt out again. Cookies are the only means by which we can control ad delivery.
    WARNING: By opting out you are taking an active position not to support the pubilshers whose websites you visit and whose content you consume free of charge. In doing so you threaten the long term viability of their operations.

  • Pesty Pop-ups II

    Hello,
    there had been a post on a similar issue ("Pesty Pop-ups")
    but unfortunately that didn't solve our problem.
    Situation
    We imported a HLP file into RoboHelp for Word. We then
    imported the project into a new RoboHelp for HTML project.
    Problem:
    Pop-ups always open on the top left corner of the help page.
    Workaround:
    Open each page in the internal editor. Add blank line and
    directly remove it again.
    Compile Output and check position of popups. It seems that
    editing a page forces RoboHelp to add the missing identifier in the
    HREF statement.
    Example:
    Before editing: <a
    href="javascript:BSSCPopup('tp_4003.htm');">Issue</a>
    After editing: <A
    href="javascript:BSSCPopup('tp_4003.htm');"
    id=A6>Issue</A>
    Question:
    Is there any solution other than editing each and every page
    which contains a BSSCPopup. Remark: Using the Serach & Replace
    function (Pods) doesn't help. The page has to be opened in the
    internal editor.
    Regards, Pinkepunk

    Check your settings: http://support.google.com/chrome/bin/answer.py?hl=en&answer=95472

  • Microsoft Dynamics CRM 2013 Google Chrome not populating popups working correctly with pop ups.

    If incorrect forum, just alert and move.  I am having an issue with hosted Microsoft Dynamics 2013 and Google Chrome latest release, 31.   This just started with the hosted version of Dynamics CRM 2013, Chrome had been working correctly with
    our earlier version of CRM.
    When users on latest version of Chrome, 31, login to Dynamics CRM 2013, everything looks fine.  Issue is specifically, for sales folks, when they open a client record, and where the client info is located, there is a standard date and time and tiny
    little calendar you can pull up if you click on it.  When the user clicks on the tiny little calendar, they DO get a pop up, but the pop up is blank.  And, there is no error message at all.  Nothing freezes, nothing bad happens at all, except
    for the salesperson, who live and die by their calendars and ability to schedule appointments and see exiting appointments.
    This is not some in house coding issue.  It is a generic CRM phone call record that has this issue. 
    Again, no errors, nothing crashes, but Dynamics CRM 2013 is useless to Google Chrome users in house because of this. Which, in a support position, is terrible.  Users who got an upgrade, have their favorite interface rendered useless.  And these
    are sales folks.  And, I did all settings according to what I was able to find for CRM 2010 and Chrome, for when pop ups do not work, and all settings were already correct for pop ups, website is in trusted sites, etc, which is what I expected, since
    everything worked on CRM 2010.
    Any clues or ideas? Thank You.
    Rick

    We don't know. Better to ask over here.
    https://community.dynamics.com/crm/f/117.aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Bugs? Pop-ups with raw footage appearing after Adobe Flash Player down-loaded.

    Hello! I am confused about what is appearing with my downloading Adobe Flash Player. I have used it before without problems but then I had to download it again to start holiday photos about 10 days ago. I immediately received pop-ups with raw footage (porn) on it. The ads said they were by 'bettersurf,' and 'done...' (something, I can't remember.) They would just pop-up in the middle of anything I was working on. I contacted Windows because it had a logo that looked like Adobe but it said that the windows media player needed to be updated. I'm good on all of that - no need to update. The only way to make it stop (I even blocked the sites from access, had the safety controls on 'strict' and parental safeguards on) was to turn off Adobe Flash Player. Well, I need to get the cards done and so I downloaded it again (with some difficulty I want to add even though I followed instructions to a 't'.) Sure enough I am getting pop-ups from the same ad company as before. I haven't yet seen porn but I'm suspicious. My system is 11.9.900.152 (64) Windows 7. Hopefully I have that right, I think that is the first no. When I check to see if Adobe Flash Player was downloaded correctly, etc. it verifies that it is. Can somebody help me? My daughter is young and I watch her when she is on the computer (I'm actually sitting right with her the whole time,) so I am positive she hasn't downloaded something wrong. And I want to add again that my settings are on strict, pop-ups turned OFF....and the pop-up regarding updating windows to have the flash player work correctly looks very much like a legit site - but I know it isn't.
    Thank you so much for any words of advice.

    You're infected.
    Those ads DON'T come from Flash Player (or Adobe), but they DO use it to display.
    Run a thorough virus scan, and download TDSSKiller to look for "adware".

  • 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

  • Downgrade 7921 under firmware 1.3.3

    hi, I have a UC500 solution with 7921 phone. (autonomous AP with EAP-FAST authentification) Since I upgraded my UC500 in 8.6, I have problems with wireless communications. In the 8.6 package it's firmware 1.4.1 for 7921 phone I tried 1.4.3.4 and 1.4.

  • Console error from itunes -- _NXSafeOrderMainBelowKey (1001)

    The full error message written to console log is: iTunes[pid#] _NXSafeOrderMainBelowKey: cannot perform window ordering operation (1001) I don't know what triggers it so I have not successfully replicated it on demand. There may be some little amount

  • Upgrading T60

    How can I upgrade my T60 to a larger hard drive please I have seen and can change the hard drive.Seems simple how do I get to find out what drive to buy concerning Max size speed and whether ide or sata? And what then? I am going to buy a XP pro sp3

  • Rendering 3D Text

    Hi, Just a quick question - what does Photoshop CS6 Extended use to render 3D objects?  When I create very simple 3D text and render, it's taking about 2 hours or more.  In the past (5 or so years ago) I did a lot of computer animation with Maya, Max

  • Leave of absence that includes stat holiday

    employee applies for leave of absence for Mon-Fri, but Wed is a stat holiday in the work schedule. What is the system reaction? will it delimit automatically the absence in IT2001 and create two records Mon-Tu and Thu-Fri? Tiberiu