Pop up box connected to AP Div

Hi all,
I have created 2 AP Div's:
1. One which have map as background
2. One which have a connected pop up box/tooltip
The pop up box is working just fine when i have separated the two AP Divs, and after changing the Z-value to 2 for map AP div and Z-value to 1 for AP div with the pop up box.
Correction: the AP div with pop up has Z-value 3
When I place the AP div with the connected pop up box/tooltip over the AP Div containing the map, the pop up box doesnt work anymore.
Anybody have a clue?
Best regards,
Ivan

I have studied this a bit closer and think i need to input a z-index in the script running (or whatever the correct terminiology is). The script is:
/* --- BoxOver ---
/* --- v 2.1 17th June 2006
By Oliver Bryant with help of Matthew Tagg
http://boxover.swazz.org */
if (typeof document.attachEvent!='undefined') {
   window.attachEvent('onload',init);
   document.attachEvent('onmousemove',moveMouse);
   document.attachEvent('onclick',checkMove); }
else {
   window.addEventListener('load',init,false);
   document.addEventListener('mousemove',moveMouse,false);
   document.addEventListener('click',checkMove,false);
var oDv=document.createElement("div");
var dvHdr=document.createElement("div");
var dvBdy=document.createElement("div");
var windowlock,boxMove,fixposx,fixposy,lockX,lockY,fixx,fixy,ox,oy,boxLeft,boxRight,boxTop,bo xBottom,evt,mouseX,mouseY,boxOpen,totalScrollTop,totalScrollLeft;
boxOpen=false;
ox=10;
oy=10;
lockX=0;
lockY=0;
function init() {
    oDv.appendChild(dvHdr);
    oDv.appendChild(dvBdy);
    oDv.style.position="absolute";
    oDv.style.visibility='hidden';
    document.body.appendChild(oDv);   
function defHdrStyle() {
    dvHdr.innerHTML='<img  style="vertical-align:middle"  src="colombiareiser/info.gif">  '+dvHdr.innerHTML;
    dvHdr.style.fontWeight='bold';
    dvHdr.style.width='150px';
    dvHdr.style.fontFamily='arial';
    dvHdr.style.border='1px solid #A5CFE9';
    dvHdr.style.padding='3';
    dvHdr.style.fontSize='11';
    dvHdr.style.color='#4B7A98';
    dvHdr.style.background='#D5EBF9';
    dvHdr.style.filter='alpha(opacity=85)'; // IE
    dvHdr.style.opacity='0.85'; // FF
function defBdyStyle() {
    dvBdy.style.borderBottom='1px solid #A5CFE9';
    dvBdy.style.borderLeft='1px solid #A5CFE9';
    dvBdy.style.borderRight='1px solid #A5CFE9';
    dvBdy.style.width='150px';
        dvBdy.style.fontFamily='arial';
    dvBdy.style.fontSize='11';
    dvBdy.style.padding='3';
    dvBdy.style.color='#1B4966';
    dvBdy.style.background='#FFFFFF';
    dvBdy.style.filter='alpha(opacity=85)'; // IE
    dvBdy.style.opacity='0.85'; // FF
function checkElemBO(txt) {
if (!txt || typeof(txt) != 'string') return false;
if ((txt.indexOf('header')>-1)&&(txt.indexOf('body')>-1)&&(txt.indexOf('[')>-1)&&(txt.indexO f('[')>-1))
   return true;
else
   return false;
function scanBO(curNode) {
      if (checkElemBO(curNode.title)) {
         curNode.boHDR=getParam('header',curNode.title);
         curNode.boBDY=getParam('body',curNode.title);
            curNode.boCSSBDY=getParam('cssbody',curNode.title);           
            curNode.boCSSHDR=getParam('cssheader',curNode.title);
            curNode.IEbugfix=(getParam('hideselects',curNode.title)=='on')?true:false;
            curNode.fixX=parseInt(getParam('fixedrelx',curNode.title));
            curNode.fixY=parseInt(getParam('fixedrely',curNode.title));
            curNode.absX=parseInt(getParam('fixedabsx',curNode.title));
            curNode.absY=parseInt(getParam('fixedabsy',curNode.title));
            curNode.offY=(getParam('offsety',curNode.title)!='')?parseInt(getParam('offsety',curNode. title)):10;
            curNode.offX=(getParam('offsetx',curNode.title)!='')?parseInt(getParam('offsetx',curNode. title)):10;
            curNode.fade=(getParam('fade',curNode.title)=='on')?true:false;
            curNode.fadespeed=(getParam('fadespeed',curNode.title)!='')?getParam('fadespeed',curNode. title):0.04;
            curNode.delay=(getParam('delay',curNode.title)!='')?parseInt(getParam('delay',curNode.tit le)):0;
            if (getParam('requireclick',curNode.title)=='on') {
                curNode.requireclick=true;
                document.all?curNode.attachEvent('onclick',showHideBox):curNode.addEventListener('click', showHideBox,false);
                document.all?curNode.attachEvent('onmouseover',hideBox):curNode.addEventListener('mouseov er',hideBox,false);
            else {// Note : if requireclick is on the stop clicks are ignored              
               if (getParam('doubleclickstop',curNode.title)!='off') {
                   document.all?curNode.attachEvent('ondblclick',pauseBox):curNode.addEventListener('dblclic k',pauseBox,false);
               if (getParam('singleclickstop',curNode.title)=='on') {
                   document.all?curNode.attachEvent('onclick',pauseBox):curNode.addEventListener('click',pau seBox,false);
            curNode.windowLock=getParam('windowlock',curNode.title).toLowerCase()=='off'?false:true;
            curNode.title='';
            curNode.hasbox=1;
       else
          curNode.hasbox=2;  
function getParam(param,list) {
    var reg = new RegExp('([^a-zA-Z]' + param + '|^' + param + ')\\s*=\\s*\\[\\s*(((\\[\\[)|(\\]\\])|([^\\]\\[]))*)\\s*\\]');
    var res = reg.exec(list);
    var returnvar;
    if(res)
        return res[2].replace('[[','[').replace(']]',']');
    else
        return '';
function Left(elem){   
    var x=0;
    if (elem.calcLeft)
        return elem.calcLeft;
    var oElem=elem;
    while(elem){
         if ((elem.currentStyle)&& (!isNaN(parseInt(elem.currentStyle.borderLeftWidth)))&&(x!=0))
             x+=parseInt(elem.currentStyle.borderLeftWidth);
         x+=elem.offsetLeft;
         elem=elem.offsetParent;
    oElem.calcLeft=x;
    return x;
function Top(elem){
     var x=0;
     if (elem.calcTop)
         return elem.calcTop;
     var oElem=elem;
     while(elem){       
          if ((elem.currentStyle)&& (!isNaN(parseInt(elem.currentStyle.borderTopWidth)))&&(x!=0))
             x+=parseInt(elem.currentStyle.borderTopWidth);
         x+=elem.offsetTop;
             elem=elem.offsetParent;
      oElem.calcTop=x;
      return x;
var ah,ab;
function applyStyles() {
    if(ab)
        oDv.removeChild(dvBdy);
    if (ah)
        oDv.removeChild(dvHdr);
    dvHdr=document.createElement("div");
    dvBdy=document.createElement("div");
    CBE.boCSSBDY?dvBdy.className=CBE.boCSSBDY:defBdyStyle();
    CBE.boCSSHDR?dvHdr.className=CBE.boCSSHDR:defHdrStyle();
    dvHdr.innerHTML=CBE.boHDR;
    dvBdy.innerHTML=CBE.boBDY;
    ah=false;
    ab=false;
    if (CBE.boHDR!='') {       
        oDv.appendChild(dvHdr);
        ah=true;
    if (CBE.boBDY!=''){
        oDv.appendChild(dvBdy);
        ab=true;
var CSE,iterElem,LSE,CBE,LBE, totalScrollLeft, totalScrollTop, width, height ;
var ini=false;
// Customised function for inner window dimension
function SHW() {
   if (document.body && (document.body.clientWidth !=0)) {
      width=document.body.clientWidth;
      height=document.body.clientHeight;
   if (document.documentElement && (document.documentElement.clientWidth!=0) && (document.body.clientWidth + 20 >= document.documentElement.clientWidth)) {
      width=document.documentElement.clientWidth;  
      height=document.documentElement.clientHeight;  
   return [width,height];
var ID=null;
function moveMouse(e) {
   //boxMove=true;
    e?evt=e:evt=event;
    CSE=evt.target?evt.target:evt.srcElement;
    if (!CSE.hasbox) {
       // Note we need to scan up DOM here, some elements like TR don't get triggered as srcElement
       iElem=CSE;
       while ((iElem.parentNode) && (!iElem.hasbox)) {
          scanBO(iElem);
          iElem=iElem.parentNode;
    if ((CSE!=LSE)&&(!isChild(CSE,dvHdr))&&(!isChild(CSE,dvBdy))){       
       if (!CSE.boxItem) {
            iterElem=CSE;
            while ((iterElem.hasbox==2)&&(iterElem.parentNode))
                    iterElem=iterElem.parentNode;
            CSE.boxItem=iterElem;
        iterElem=CSE.boxItem;
        if (CSE.boxItem&&(CSE.boxItem.hasbox==1))  {
            LBE=CBE;
            CBE=iterElem;
            if (CBE!=LBE) {
                applyStyles();
                if (!CBE.requireclick)
                    if (CBE.fade) {
                        if (ID!=null)
                            clearTimeout(ID);
                        ID=setTimeout("fadeIn("+CBE.fadespeed+")",CBE.delay);
                    else {
                        if (ID!=null)
                            clearTimeout(ID);
                        COL=1;
                        ID=setTimeout("oDv.style.visibility='visible';ID=null;",CBE.delay);                        
                if (CBE.IEbugfix) {hideSelects();}
                fixposx=!isNaN(CBE.fixX)?Left(CBE)+CBE.fixX:CBE.absX;
                fixposy=!isNaN(CBE.fixY)?Top(CBE)+CBE.fixY:CBE.absY;           
                lockX=0;
                lockY=0;
                boxMove=true;
                ox=CBE.offX?CBE.offX:10;
                oy=CBE.offY?CBE.offY:10;
        else if (!isChild(CSE,dvHdr) && !isChild(CSE,dvBdy) && (boxMove))    {
            // The conditional here fixes flickering between tables cells.
            if ((!isChild(CBE,CSE)) || (CSE.tagName!='TABLE')) {              
               CBE=null;
               if (ID!=null)
                      clearTimeout(ID);
               fadeOut();
               showSelects();
        LSE=CSE;
    else if (((isChild(CSE,dvHdr) || isChild(CSE,dvBdy))&&(boxMove))) {
        totalScrollLeft=0;
        totalScrollTop=0;
        iterElem=CSE;
        while(iterElem) {
            if(!isNaN(parseInt(iterElem.scrollTop)))
                totalScrollTop+=parseInt(iterElem.scrollTop);
            if(!isNaN(parseInt(iterElem.scrollLeft)))
                totalScrollLeft+=parseInt(iterElem.scrollLeft);
            iterElem=iterElem.parentNode;           
        if (CBE!=null) {
            boxLeft=Left(CBE)-totalScrollLeft;
            boxRight=parseInt(Left(CBE)+CBE.offsetWidth)-totalScrollLeft;
            boxTop=Top(CBE)-totalScrollTop;
            boxBottom=parseInt(Top(CBE)+CBE.offsetHeight)-totalScrollTop;
            doCheck();
    if (boxMove&&CBE) {
        // This added to alleviate bug in IE6 w.r.t DOCTYPE
        bodyScrollTop=document.documentElement&&document.documentElement.scrollTop?document.docum entElement.scrollTop:document.body.scrollTop;
        bodyScrollLet=document.documentElement&&document.documentElement.scrollLeft?document.docu mentElement.scrollLeft:document.body.scrollLeft;
        mouseX=evt.pageX?evt.pageX-bodyScrollLet:evt.clientX-document.body.clientLeft;
        mouseY=evt.pageY?evt.pageY-bodyScrollTop:evt.clientY-document.body.clientTop;
        if ((CBE)&&(CBE.windowLock)) {
            mouseY < -oy?lockY=-mouseY-oy:lockY=0;
            mouseX < -ox?lockX=-mouseX-ox:lockX=0;
            mouseY > (SHW()[1]-oDv.offsetHeight-oy)?lockY=-mouseY+SHW()[1]-oDv.offsetHeight-oy:lockY=lockY;
            mouseX > (SHW()[0]-dvBdy.offsetWidth-ox)?lockX=-mouseX-ox+SHW()[0]-dvBdy.offsetWidth:lockX=lockX;            
        oDv.style.left=((fixposx)||(fixposx==0))?fixposx:bodyScrollLet+mouseX+ox+lockX+"px";
        oDv.style.top=((fixposy)||(fixposy==0))?fixposy:bodyScrollTop+mouseY+oy+lockY+"px";        
function doCheck() {   
    if (   (mouseX < boxLeft)    ||     (mouseX >boxRight)     || (mouseY < boxTop) || (mouseY > boxBottom)) {
        if (!CBE.requireclick)
            fadeOut();
        if (CBE.IEbugfix) {showSelects();}
        CBE=null;
function pauseBox(e) {
   e?evt=e:evt=event;
    boxMove=false;
    evt.cancelBubble=true;
function showHideBox(e) {
    oDv.style.visibility=(oDv.style.visibility!='visible')?'visible':'hidden';
function hideBox(e) {
    oDv.style.visibility='hidden';
var COL=0;
var stopfade=false;
function fadeIn(fs) {
        ID=null;
        COL=0;
        oDv.style.visibility='visible';
        fadeIn2(fs);
function fadeIn2(fs) {
        COL=COL+fs;
        COL=(COL>1)?1:COL;
        oDv.style.filter='alpha(opacity='+parseInt(100*COL)+')';
        oDv.style.opacity=COL;
        if (COL<1)
         setTimeout("fadeIn2("+fs+")",20);       
function fadeOut() {
    oDv.style.visibility='hidden';
function isChild(s,d) {
    while(s) {
        if (s==d)
            return true;
        s=s.parentNode;
    return false;
var cSrc;
function checkMove(e) {
    e?evt=e:evt=event;
    cSrc=evt.target?evt.target:evt.srcElement;
    if ((!boxMove)&&(!isChild(cSrc,oDv))) {
        fadeOut();
        if (CBE&&CBE.IEbugfix) {showSelects();}
        boxMove=true;
        CBE=null;
function showSelects(){
   var elements = document.getElementsByTagName("select");
   for (i=0;i< elements.length;i++){
      elements[i].style.visibility='visible';
function hideSelects(){
   var elements = document.getElementsByTagName("select");
   for (i=0;i< elements.length;i++){
   elements[i].style.visibility='hidden';
Anybody know how to input a line setting the z-value for the box over?
Best regards,
Ingvar

Similar Messages

  • When I try to install "Addblock Plus", a pop-up box displays "Add-on downloading", and "unknown time remaining - 0 bytes (0 bytes / sec)". My local area connection status box shows that it is connected but that nothing is being received.

    I am using Firefos 9.0.1 under Windows XP. I use Avast anti-virus. My Add-ons bar is empty. I have not initiated the installation of any plug-ins. Downloads keeps no record of my attempts.

    Thank you for your interest mha007. This is an update on my evenings activities so far.
    I have done that trouble shooting with results, as follows:
    Started in safe mode
    In Tools/Options/Advanced/General, I unchecked "Use hardware acceleration when available"
    Clicked on Tools/Add-ons
    "Get add-ons" displayed "Loading" indefinitely
    All 5 Extensions are dis-abled: it suggested that I remove "Microsoft.net framework assistant 1.2.1" & "Test pilot 1.2".
    On "Microsoft.net framework assistant 1.2.1" I Clicked "Remove". It remained but with version 0.0.0.
    On "Test pilot 1.2" I clicked "Remove". It disappeared.
    The single Appearance "Default 9.0.1" is disabled
    None of the 16 plug-ins are disabled.
    I clicked on Add-ons and "Get add-ons" displayed "Loading"
    Several minutes later I found that, "Add-ons" had loaded.
    I clicked on "Most popular" and then on "Add to Firefox " within "Adblock plus"
    A pop-up box displayed "Add-on downloading", and "unknown time remaining - 0 bytes (0 bytes / sec)".
    Within a minute, a Firefox "Alert" pop-up window opened with the message: "An error occurred during a connection to www.mozilla.org:443 / The OCSP server experienced an internal error. / (Error code: sec_error_ocsp_server_error)"
    I bookmarked the "Most popular add-ons page"
    I closed Firefox and opened it again - not in safe mode.
    Clicked on Tools/Add-ons. "Get add-ons" displayed "Loading".
    In Extensions, on "Microsoft.net framework assistant 1.2.1" I Clicked Disable", and Restart Firefox
    I clicked on Tools/Add-ons. "Get add-ons" displayed "Loading". Message displayed "Connected to services.add-ons.mozilla.org. Waited.
    10 minutes later I opened a new tab and clicked on the "Most popular add-ons page" bookmark. Message displayed "Connected to add-ons.mozilla.org". Waited.
    15 minutes later, neither of the tabs had responded. I re-started firefox in safe mode
    I clicked on Tools/Add-ons. "Get add-ons" displayed "Loading". Message displayed "Connected to static-ssl-cdn.addons.mozill.net"
    Using the new tab from above which was not active on restart, I clicked on the "Most popular add-ons page" bookmark.
    The bookmarked page opened. I clicked on "Add to Firefox " within "Adblock plus"
    Again, a pop-up box displayed "Add-on downloading", and "unknown time remaining - 0 bytes (0 bytes / sec)". (No Alert this time).
    I don't know what to read into all of this. Any advice on what the next best thing to do would be appreciated.

  • Keep getting a pop up box asking me to download photo and video, many boxes appear . I have devices connected to download anything. I want this to not happen or

    keep getting a pop up box asking me to download photo and video, many boxes appear saying the same thing . I have no devices connected to download anything. I want this to not happen or appear.
    This will just keep appearing when I am online.Using Firefox latest version I just installed Window7 from Vista. never happened prior. Windows live Photo Gallery is usually my default to open, but that is from a phone device connected to my computer.

    Usually "Flame" does this (a virus that should have been auto destructed 2 weeks ago). It could be another virus or worm. My advice, FIRST scan your computer with antivirus (completely). Don't use free antiviruses. They are not providing enough protection. Then delete all temp. files and browsing history. Remove and reinstall Firefox. (don't install it automatically: ask for custom install at the beginning). It is much better to download it again from www.mozilla.org because your actual version might be corrupted by the virus (IF ANY VIRUS IS FOUND). Anyway you won't lose downloading it again.
    PS: Windows 7 includes a very useful tool to scan your PC. Windows Defender. Run it along with the antivirus.

  • Windows pop-up box when connecting ipod

    I recently started getting a windows pop up box when connecting my ipod. It doesn't effect function of the ipod or itunes, however if I close the box it will continue to periodically re-open. This just started recently. The box is a typical mass storage device box like one would get if you plugged in a USB thumbdrive. I played with options and couldn't figure out a way to stop the box from opening. Thanks for your help.
    Dell Inspiron 8600   Windows XP  

    what does the box say? spacificly??

  • I use IMAC upstairs connected to the house wifi downstairs where the networked printer is. I have 'found' the network printer on my IMAC settings but when i send to print I am getting a pop-up box which has 'apple' as user name and is asking for password.

    I use IMAC upstairs connected to the house wifi downstairs where the networked printer is. I have 'found' the network printer on my IMAC settings but when i send to print I am getting a pop-up box which has 'apple' as user name and is asking for password. I have tried my own IMAC password but to no avail. The printer also shows a pop-up box stating 'awaiting authentication.
    Any help appreciated

    You are asking several different questions. If you need to store your photos, music, and movies on an external volume, you certainly can. Any externally connected hard disk drive will work, connected either directly to your Mac or to your Time Capsule as a shared volume.
    You should not rely upon using that as a backup device though. Although you certainly may use it for both purposes, it is a better idea to have dedicated backup devices for a variety of reasons not limited to redundancy. You would not want to simultaneously lose all your pictures as well as your backup. If they are all on the same device, that could happen. Furthermore, a backup cannot back up the volume on which it is running.
    As for adding an Extreme or Express, using its LAN port for your iMac, and then enable Internet sharing so you can effectively use the iMac as a "hotspot", you can do that too, but I am unclear on what benefit you believe this arrangement would convey for you.
    An Extreme's Guest network is separate from its Main network; that is the reason for having it.

  • HT1725 I try download movie from purchased items on itunes but continues to stop. A box pops up saying connection has been reset. How do I fix problem?

    I try download movie from purchased items on itunes but continues to stop. A box pops up saying connection has been reset. How do I fix problem?

    kapots3v4,
    if your MacBook Pro doesn’t stay active long enough to perform an OS X Internet Recovery, then you should make an appointment at your nearest Apple store or Apple-authorized service provider to have them diagnose what’s ailing it.

  • Suppress the pop-up box in iCal when "The server responded with an error"

    So there are tons of questions already on this site about this pop-up error in iCal when trying to connect to Google calendars or MobileMe calendars. My issue is that the connection is fine 90% of the time, but every now and then the connection fails (it checks every 5 minutes) and I get this pop-up.
    Now in a perfect world, this error would not result in a pop-up that demands my immediate attention, but would fail silently and simply try again 5 minutes later. Normally Apple's software design is sensible and would do things this way, so I'm totally confused why they think a pop-up (and bouncing dock icon) is anything but annoying, especially when I know it's not a big deal and will probably connect successfully next time.
    Soooo... is there a top-secret way I can suppress this pop-up box? It is one of those things that can drive one insane. I even switched to BusyCal for a while but decided it wasn't quite worth $50 just to be rid of the pop-up.

    Is this the pop-up you get?
    The request for account “[email protected]” failed.
    The server responded with
    “HTTP/1.1 502 Bad Gateway”
    to operation CalDAVAccountRefreshQueueableOperation.
    I've never seen it before but am getting it this evening (UK time). Also if I try to log in to MMe Calendar it's not logging in but going to 'find my iPhone' like it did when Mail was mucking about a few weeks back.

  • Outlook 2010 authentication pop up box won't go away

    After we applied the latest round of Windows Updates to our guinea pig workstations, we discovered that one of them caused something to break in Outlook 2010.  We are set to use AD auto detect authentication on a local Exchange 2007 server. The pop
    up window has varied, and nothing we have done has fixed it, not even uninstalling all the patches.  (After the first workstation had the bug, I installed the patches one at a time and determined its KB2553248 that breaks it.)
    Mail flows normally and we can send and receive without any problems.  The pop up box can be sent to the back but cannot be minimized.
    Mine says:
    Windows Security
    Microsoft Outlook
    Connecting to (my AD email address)
    The OK button is grayed out.  Hitting the Cancel button breaks the connection to Exchange, and causes "Connected to Microsoft Exchange" to change over to "Need Password" on the bottom toolbar.  Clicking "Need Password" logs me in within a few seconds
    without any further prompting.... but within five minutes the pop up box is back.
    On the other user's computer, the pop up box says:
    Windows Security
    Please Insert a Smart Card
    and prompts for credentials if she hits OK.  Like my pop up, the window can be ignored and mail flows normally.  If she hits cancel, her connection to Exchange breaks until she hits "Need Password" at which point she's logged right back in again.
    Interestingly, her Outlook was never configured to authenticate with a smart card.  Like mine, it's set to Auto Detect connection type and to configure with the Windows AD login information.
    We're holding off deployment of KB2553248 until we have a fix for this.  Although it does not impede mail flow it's annoying as heck, and our clients that use Outlook (all 500ish of them...) are sure to click Cancel and break their connection to Exchange
    without knowing to click the Need Password again.
    How can we hide this pop up box?

    OK...update on my issue (which is now RESOLVED!!!) since other people may did what I did.
    I looked at the following link:
    http://demazter.wordpress.com/2010/02/09/outlook-continually-prompting-for-username-and-password-2/
    None of the above worked...even the kerberos method.
    OL 2010 pop up box didn't say anything about connecting to where.  So I looked closely at the popup box for OL 2007...keeps on saying connecting to mail.company.com.  I was wondering why OL was trying to go outside instead of exch2010.domain.local
    even though my account settings/profile is set to exch2010.domain.local.
    As I was reading an article on SCP and how to locate it using adsiedit (which I couldn't figure out how),
    http://blogs.msdn.com/b/douggowans/archive/2007/06/28/serviceconnectionpoints.aspx
    This line in the blog got me thinking:
    This url can be changed using the set-clientaccessserver cmdlet with the parameter -AutodiscoverServiceInternalURI.
    That InternalURI got me thinking.  When I looked at a txtfile that I jolted down and saved of what I did during the install of Exch 2010,
    Set-ClientAccessServer -Identity "exch2010" –AutodiscoverServiceInternalURI
    https://mail.company.com/autodiscover/autodiscover.xml
    Set-WebServicesVirtualDirectory -Identity "exch2010\EWS (Default Web Site)" –InternalUrl 
    https://mail.company.com/EWS/Exchange.asmx
    Set-OABVirtualDirectory -Identity “exch2010\OAB (Default Web Site)” -InternalURL
    https://mail.company.com/OAB
    I figured, let's try changing them to:
    Set-ClientAccessServer -Identity "exch2010" –AutodiscoverServiceInternalURI
    https://exch2010/autodiscover/autodiscover.xml
    Set-WebServicesVirtualDirectory -Identity "exch2010\EWS (Default Web Site)" –InternalUrl 
    https://exch2010/EWS/Exchange.asmx
    Set-OABVirtualDirectory -Identity “exch2010\OAB (Default Web Site)” -InternalURL
    https://exch2010/OAB
    I entered those commands in EMS and executed them...then I loaded up OL 2010 and OL 2007.  It's been 30 min and nothing has popped up!!!
    Silly me..I think why I did mail.company.com was that I was following a couple of guides that were posted out there on the internet on exchange 2010 and they just entered mail.company.com into there.  But I think their guides are for networks where
    the internal domain and external domain are the same.  ie company.com for both insdie and outside.
    I am going to install KB2553248 back onto my Win 7/OL 2010 workstation and see if that breaks it.

  • "save as" pop up box does not allow me to save the document.

    Hello ,
    "save as" pop up box does not allow me to save the document. Shows a blank screen. Any idea what would cause this? I just purchased acrobat pro dc.
    Thanks!

    Found this solution:
    The default "Save As" dialog in Acrobat DC is different than the dialog that you've had in earlier releases of Acrobat, it also allows you to save to the cloud and previous locations you've saved files to. It is possible that when Acrobat tries to connect to "the cloud", it runs into problems. You may want to try to turn this feature off to see if that brings your save as dialog back: Open up Acrobat's preferences, then go to the "General" category and deselect "Show online storage when saving files":

  • I need to update my apps in the App Store, but when i try to update, the Sign Up Apple ID pop up box came out with different Apple ID. How can I change it to mine? My iTunes Store already login with my own Apple ID.

    I need to update my apps in the App Store, but when i try to update, the Sign Up Apple ID pop up box came out with different Apple ID. How can I change it to mine? My iTunes Store already log in with my own Apple ID.

    Just now you said the other Apple ID stored inside it, is that mean all my data back up in that the other ID?

  • Pop up box in yahoo mail won't close, asks "do you use the yahoo! toolbar on multiple computers?" has option buttons but no response when clicking on anything, pop up box just sits there in the way

    whenever I open my yahoo mail when using Firefox, a pop up box appears on the upper left side of the screen, it asks the question "do you use the yahoo! toolbar on multiple computers?" and gives click boxes for "Save to my yahoo ID" and "No thanks, just save to this computer". I get no response to clicking on either box, nor will the pop up close if I click on the "X" in the upper right corner of this pop up. It won't close out and it sits right over the top of the email messages in my inbox. All else seems to work fine, but can't get rid of this pop up box....very annoying.

    go mail.yahoo.com as the login entrance for yahoo mail.

  • When I open iTunes it is slow to open for one, and two when it does see my iPhone and i go to sync it this is what I get in return... The iPhone "My Name here" could not be synced because the iPhone could not be found on the network. that is a pop up box

    When I open iTunes it is slow to open for one, and two when it does see my iPhone and i go to sync it this is what I get in return... The iPhone "My Name here" could not be synced because the iPhone could not be found on the network. that is a pop up box in middle of screen that says that it does it like every time I go to sync the phone after i do app updates. I am getting very frustrated by this can someone please help. I have made 2 other discussion topics about this and no replies on them. Please if anyone can help I ask for help. This has occurred ever since the iOS 5.1 update and the iTunes 10.6.0 and still continues with the iTunes 10.6.1 update just yesterday and perhaps even worse now. PLEASE HELP IF YOU CAN. I have looked through my network settings etc and everything looks good here on my side.

    When I open iTunes it is slow to open for one, and two when it does see my iPhone and i go to sync it this is what I get in return... The iPhone "My Name here" could not be synced because the iPhone could not be found on the network. that is a pop up box in middle of screen that says that it does it like every time I go to sync the phone after i do app updates. I am getting very frustrated by this can someone please help. I have made 2 other discussion topics about this and no replies on them. Please if anyone can help I ask for help. This has occurred ever since the iOS 5.1 update and the iTunes 10.6.0 and still continues with the iTunes 10.6.1 update just yesterday and perhaps even worse now. PLEASE HELP IF YOU CAN. I have looked through my network settings etc and everything looks good here on my side.

  • I'm unable to open up Lightroom 5, I get this message in a pop up box: "Lightroom encountered an error when reading from it's preview cache and needs to quit" Underneath  that is "Lightroom will attempt to fix this problem the next time when it launches."

    I'm unable to open up Lightroom 5, I get this message in a pop up box: "Lightroom encountered an error when reading from it's preview cache and needs to quit" Underneath  that is "Lightroom will attempt to fix this problem the next time when it launches."  It hasn't, what should I do? Thanks Shawn (Irish Se7en) .

    Can you try to rename (not delete!) the folder named "YOUR_CATALOG_NAME Previews.lrdata" and restart Lightroom?

  • HT2480 whenever i connect my iphone to pc while syncing mail in itunes a pop up" the connection is not available.outlook must be online or connected  to complete this action" please suggest me to solve this or bisable.

    whenever i connect my iphone to pc while syncing mail in itunes a pop up" the connection is not available.outlook must be online or connected  to complete this action" please suggest me to solve this or bisable.

    Cached exchange mode was already marked so that was not the issue.
    I have done all the usual of creating a new profile, reinstalling Outlook etc but nothing seemed to work. I also tried going back to Outlook 2007 and reinstalling Windows but same problem.
    However, I am not sure if it is connected but I was useing the option in MS Live Sync to synchronise Office settings which I turned off recently and now no longer have the issue. Unfortunately I cannot remember when in the process I did this so cannot be
    sure it was responsible - anyone else found this?

  • TS3697 There is no camera roll download pop up after connected to iTune, to solve that I used Photo Transfer App to download the Photos, but how can I delete the photos in the camera rolls, as there are 9000 photos in the camera roll

    There is no camera roll download pop up after connected to iTune, to solve that I used Photo Transfer App to download the Photos, but how can I delete the photos in the camera rolls, as there are 9000 photos in the camera roll

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

Maybe you are looking for

  • Need a driver that will work for HP Color Jet Laser Printer with OS 10.7

    How can I download a drive, and fom where, that will allow me to print from a Mac Book Air with OS 10.7 from an HP 1600 LASER COLOR JET. Thank you

  • Wifi packet loss after upgrading to 10.7.4

    After upgrading all three macs (mb pro, mb air, imac) in the house to 10.7.4 they all experience wifi packet loss.  I ping to the local router.  I have connected to a multitude of wireless routers with similar result. But here is strong evidence that

  • Portable collection fails

    I am trying to do a portable collection on a disconnected workstation. It is a fairly vanilla configuration with not much configuration done. I created the portable collector using the wizard in the ZAM manager, copied the folder contents to a remova

  • Sorting objects in Designer

    Hi, We have created so many objects in the designer. We want to sort these objects in alphabetical order.Is it possible in BO XI R2. Thanks, Indu.

  • Is there an alternative to the black unibody keyboard?

    I'm just about to try to swap my faulty unibody Macbook Pro and I'm wondering if there's any official or third-party alternative to the existing keys. The machine I currently have needs a new screen (bad light bleed, blue staggered tint across the bo