Strange Blank Services Page with a "Cancel" button

Hi All!
For some strange reason my Cisco IP Phone's "Services" button is associated, as default, to a blanck page with a single "Cancel" button as the 3rd softkey. For example, if I push the "Services" button, this default pag will be shown first and seconds later, the page I specified in Call Manager as associated to the "Services" button.
Usually this is not a problem, only that when I try to push a CiscoIPPhoneImageFile object to the phone, in the 2-3 second while the phone is downloading the image, this blank page will be shown and it stays there untill the image is fully downloaded. It is especially annoying as my ImageFile object has a 3rd softkey button called "Exit", so the user will witness a button first appeared as "Cancel", and then suddenly changes to "Exit"!
Any one know how do I remove this strange "default" blank page, or at least change its "Cancel" button to whatever I prefer? Thank you very much for your help!

Could it be that on the phone you're using, you have signed up for a service that turns the service list into something the phone cannot handle (e.g. the application name is too long)? The empty page with a cancel suspciously reminds me of what you get when the phone chokes on an xml element.

Similar Messages

  • Today i made a gamecenter account and when i play a game like clash of clans it takes me to gamecenter and i log in then it takes me to a blank page with a cancel button so my question is how do i sign in to gamecenter when this happens

    today i made a gamecenter account and when i play a game like clash of clans it takes me to gamecenter and i log in then it takes me to a blank page with a cancel button so my question is how do i sign in to gamecenter when this happens

    Try:
    FaceTime, Game Center, Messages: Troubleshooting sign in issues

  • Can not take a screenshot with Maverick and track pad.  can not use apple chat to talk with a tech.  there are other issues also like I used to be able to go back a page with the delete button.  No Maverick PDF to instruct on how to use Maverick

    Can not take a screenshot with Maverick and track pad.  can not use apple chat to talk with a tech.  there are other issues also like I used to be able to go back a page with the delete button.  No Maverick PDF to instruct on how to use Maverick
    THE use of the apple support is a mess also.
    I want to be able to use my MAC fully and easily like I used to with Snow Leopard. 
    What is wrong with this maverick OS?

    The only people who can possibly assist you with this is Apple Customer Relations, call your local Apple contact number and ask for Customer Relations then explain your situation clearly and politely (be firm but don't rant).
    You might want to investiage what the local laws are regarding defective goods and 'fit for use' definitions on warranties etc. Consumer Protection can be a useful tool to use or bargain with if needed ...

  • Stop a script process with a "Cancel" button

    Hi,
    I display a progress bar with a "Cancel" button while the  script is running. I can stop the script by pressing the "Esc" key but I  would like to stop the script process with the "Cancel" button. What  kind of command/event can I add to the button for doing this ?
    Thanks

    -> Update All your Firefox Plugins
    * https://www.mozilla.org/en-US/plugincheck/
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''
    * Restart Firefox
    Check and tell if its working.

  • Clicking UWL opening page with "Activation Cancelled" Error

    Hi ,
           Im trying to click the UWL links, and its opening a seperate page with
    Action canceled
    Internet Explorer was unable to link to the Web page you requested. The page might be temporarily unavailable.
       Can someone please reply what and where to do proper configurations to get the page displayed ??
      Thanks
      Sourav

    hi gurus,
    Can anyone pelase help me out !!
    This is very urgent........
    regards,
    pinki

  • "My Yahoo" page loads up as a blank white page, with no error messages or anything. Any ideas why?

    I started a thread on this topic many months ago, and have yet to see any reply for support for this topic. The issue I have had now for over 6 months is that Firefox will not load my "My Yahoo" page at all. I get no error messages or anything, just a blank, white screen when I try to load it. I can load this same page in IE as well as Chrome, but I much prefer to use Firefox if I can. I did follow all of the instructions and ideas that are out on the forum for handling similar problems such as this, but with no success. Clear Cache, History, etc, as well as disabling Add-Ons, restarting, etc, as well as setting proxy settings to No Proxy, etc, etc. Does anyone have ideas ideas as to why Firefox is no longer able to load "My Yahoo" page, but I am able to load things like my Yahoo Mail page successfully? Thank you in advance for any ideas anyone has on this.

    Firstly, a heartfelt "Thank You" for the prompt reply. I have gone through the steps you outlined above in the past, with no success, but I did them again just to be certain. One other thing that took place since posted this a few days ago, is that I "Updated Firefox, to 9.0.1 and after I did that, then Firefox would not even load at all. I kept getting a Firefox has crashed pop up, etc. So I figured before I could go through the steps you outlined above, I needed to "Uninstall and Reinstall" Firefox once again. I did this, and loaded the Yahoo Optimized version since apparently the generic version of Firefox, 9.0.1 must have some bugs that did not allow it to load up on my computer. After reloaded Firefox, I proceeded to go through the steps you have outlined above, and as typical, I still have the same problem, even in Safe Mode. My Yahoo comes up as a Blank White Page... no error messages or anything, just a blank white page. Since I have posted this I have been forced to use Google Chrome, and I really hate using that browser, but I don't know what else to do here. Any other ideas please? Thank you once again.
    Note: Even as I am typing this Firefox is coming up with a pop up window, suggesting I update to version 9.0.1 since it is a security and stability update. However I won't do this, because the last time I did, Firefox would not load at all.

  • How do I create an input box with a cancel button that will end a loop in my script?

    I have been working on a script for my client and I am having trouble getting it to work properly. I stole most of the code from the PowerShell Tip of the Week "Creating a Custom Input Box". I also took someone's code for the Show-MessageBox function.
    I have slightly modified the original code with two parameters and an additional text box. The first field is for an e-mail address and the second is for an employee number.
    I need to know how I can get a Do Until loop to recognize when the cancel button is pushed and break the loop and effectively end the script. The work happens at the end but perhaps I need something added/modified in the InputBox function.
    I want the script to check to see if anything has been entered in the second text box. If empty it displays a message and calls the InputBox function again. Then if there is something I use elseif to check to see if it matches my RegEx (digits only). If
    it doesn't match it will loop and call the InputBox function again.
    This all works fine. The problem I am having is that I cannot cancel out of the form. I'd like the loop to continue until the second box matches my RegEx or Cancel is clicked. Clicking cancel doesn't break the loop. I need to know how I can stop the loop
    when cancel is pressed. I've seen Stack "Overflow: PowerShell Cancel Button Stop Script" but I don't think this will work in a loop.
    Any help would be awesome. As a note, I DO NOT want to use the VB Interaction stuff.
    function InputBox {
    param ($Name,$EN)
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
    $objForm = New-Object System.Windows.Forms.Form
    $objForm.Text = "Data Entry Form"
    $objForm.Size = New-Object System.Drawing.Size(300,200)
    $objForm.StartPosition = "CenterScreen"
    $objForm.KeyPreview = $True
    $objForm.Add_KeyDown({if ($_.KeyCode -eq "Enter")
    {$x=$objTextBox.Text;$objForm.Close()}})
    $objForm.Add_KeyDown({if ($_.KeyCode -eq "Escape")
    {$objForm.Close()}})
    $OKButton = New-Object System.Windows.Forms.Button
    $OKButton.Location = New-Object System.Drawing.Size(75,120)
    $OKButton.Size = New-Object System.Drawing.Size(75,23)
    $OKButton.Text = "OK"
    $OKButton.Add_Click({$objForm.Close()})
    $objForm.Controls.Add($OKButton)
    $CancelButton = New-Object System.Windows.Forms.Button
    $CancelButton.Location = New-Object System.Drawing.Size(150,120)
    $CancelButton.Size = New-Object System.Drawing.Size(75,23)
    $CancelButton.Text = "Cancel"
    $CancelButton.Add_Click({$objForm.Close()})
    $objForm.Controls.Add($CancelButton)
    $objLabel = New-Object System.Windows.Forms.Label
    $objLabel.Location = New-Object System.Drawing.Size(10,20)
    $objLabel.Size = New-Object System.Drawing.Size(280,20)
    $objLabel.Text = "Employee Email Address:"
    $objForm.Controls.Add($objLabel)
    $objTextBox = New-Object System.Windows.Forms.TextBox
    $objTextBox.Location = New-Object System.Drawing.Size(10,40)
    $objTextBox.Size = New-Object System.Drawing.Size(260,20)
    if ($Name) {
    $objTextBox.Text = $Name
    else {
    $objTextBox.Text = "@domain.com"
    $objLabel2 = New-Object System.Windows.Forms.Label
    $objLabel2.Location = New-Object System.Drawing.Size(10,70)
    $objLabel2.Size = New-Object System.Drawing.Size(280,20)
    $objLabel2.Text = "Employee Number:"
    $objForm.Controls.Add($objLabel2)
    $objTextBox2 = New-Object System.Windows.Forms.TextBox
    $objTextBox2.Location = New-Object System.Drawing.Size(10,90)
    $objTextBox2.Size = New-Object System.Drawing.Size(260,20)
    $objForm.Controls.Add($objTextBox)
    $objForm.Controls.Add($objTextBox2)
    $objForm.Topmost = $True
    $objForm.Add_Shown({$objForm.Activate()})
    [void] $objForm.ShowDialog()
    $Script:ButtonName = $objTextBox.Text
    $script:ButtonEN =$objTextBox2.Text
    $ButtonName; $ButtonEN
    Function Show-MessageBox{
    Param(
    [Parameter(Mandatory=$True)][Alias('M')][String]$Msg,
    [Parameter(Mandatory=$False)][Alias('T')][String]$Title = "",
    [Parameter(Mandatory=$False)][Alias('OC')][Switch]$OkCancel,
    [Parameter(Mandatory=$False)][Alias('OCI')][Switch]$AbortRetryIgnore,
    [Parameter(Mandatory=$False)][Alias('YNC')][Switch]$YesNoCancel,
    [Parameter(Mandatory=$False)][Alias('YN')][Switch]$YesNo,
    [Parameter(Mandatory=$False)][Alias('RC')][Switch]$RetryCancel,
    [Parameter(Mandatory=$False)][Alias('C')][Switch]$Critical,
    [Parameter(Mandatory=$False)][Alias('Q')][Switch]$Question,
    [Parameter(Mandatory=$False)][Alias('W')][Switch]$Warning,
    [Parameter(Mandatory=$False)][Alias('I')][Switch]$Informational)
    #Set Message Box Style
    IF($OkCancel){$Type = 1}
    Elseif($AbortRetryIgnore){$Type = 2}
    Elseif($YesNoCancel){$Type = 3}
    Elseif($YesNo){$Type = 4}
    Elseif($RetryCancel){$Type = 5}
    Else{$Type = 0}
    #Set Message box Icon
    If($Critical){$Icon = 16}
    ElseIf($Question){$Icon = 32}
    Elseif($Warning){$Icon = 48}
    Elseif($Informational){$Icon = 64}
    Else{$Icon = 0}
    #Loads the WinForm Assembly, Out-Null hides the message while loading.
    [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null
    #Display the message with input
    $Answer = [System.Windows.Forms.MessageBox]::Show($MSG , $TITLE, $Type, $Icon)
    #Return Answer
    Return $Answer
    $num = "^\d+$"
    do {
    if (!($ButtonEN)) {
    Show-MessageBox -Msg "You must enter a numeric value for the employee number." -Title "Employee Number Missing" -Critical
    InputBox -Name $ButtonName
    elseif ($ButtonEN -notmatch $num) {
    Show-MessageBox -Msg "The employee number must contain numbers only!" -Title "Non-numerical characters found" -Critical
    InputBox -Name $ButtonName
    until ( ($ButtonEN -match $num) -or (<this is where I want to be able to use the cancel button>)

    Here is a simple validation method.
    function New-InputBox{
    param(
    $EmailAddress='',
    $EmployeeNumber=''
    Add-Type -AssemblyName System.Windows.Forms
    $Form=New-Object System.Windows.Forms.Form
    $Form.Text='Data Entry Form'
    $Form.Size='300,200'
    $Form.StartPosition='CenterScreen'
    $OKButton=New-Object System.Windows.Forms.Button
    $OKButton.Location='75,120'
    $OKButton.Size='75,23'
    $OKButton.Text='OK'
    $OKButton.DialogResult='Ok'
    $OKButton.CausesValidation=$true
    $Form.Controls.Add($OKButton)
    $CancelButton = New-Object System.Windows.Forms.Button
    $CancelButton.Location = New-Object System.Drawing.Size(150,120)
    $CancelButton.Size = New-Object System.Drawing.Size(75,23)
    $CancelButton.Text ='Cancel'
    $CancelButton.DialogResult='Cancel'
    $CancelButton.CausesValidation=$false
    $Form.Controls.Add($CancelButton)
    $Label1=New-Object System.Windows.Forms.Label
    $Label1.Location='10,20'
    $Label1.Size='280,20'
    $Label1.Text='Employee Email Address:'
    $Form.Controls.Add($Label1)
    $TextBox1=New-Object System.Windows.Forms.TextBox
    $TextBox1.Location='10,40'
    $TextBox1.Size='260,20'
    $textbox1.Name='EmailAddress'
    $textbox1.Text=$EmailAddress
    $Form.Controls.Add($textbox1)
    $Label2=New-Object System.Windows.Forms.Label
    $Label2.Location='10,70'
    $Label2.Size='280,20'
    $Label2.Text='Employee Number:'
    $Form.Controls.Add($Label2)
    $TextBox2=New-Object System.Windows.Forms.TextBox
    $TextBox2.Location='10,90'
    $TextBox2.Size='260,20'
    $TextBox2.Name='EmployeeNumber'
    $TextBox2.Text=$EmployeeNumber
    $Form.Controls.Add($TextBox2)
    $Form.AcceptButton=$OKButton
    $Form.CancelButton=$CancelButton
    $Form.Topmost = $True
    $form1_FormClosing=[System.Windows.Forms.FormClosingEventHandler]{
    if($Form.DialogResult -eq 'OK'){
    if($textbox1.Text -eq ''){
    [void][System.Windows.Forms.MessageBox]::Show('please enter an email address','Validation Error')
    $_.Cancel=$true
    }else{
    # Check empno is all digits
    if("$($TextBox2.Text)" -notmatch '^\d+$'){
    [void][System.Windows.Forms.MessageBox]::Show('please enter a number "999999"','Validation Error')
    $_.Cancel=$true
    $form.add_FormClosing($form1_FormClosing)
    $Form.Add_Shown({$Form.Activate()})
    if($Form.ShowDialog() -eq 'Ok'){
    # return the form contents
    $Form
    if($f=New-InputBox -EmailAddress [email protected]){
    'Email is:{0} for Employee:{1}' -f $f.Controls['EmailAddress'].Text,$f.Controls['EmployeeNumber'].Text
    }else{
    Write-Host 'From cancelled!' -ForegroundColor red
    ¯\_(ツ)_/¯

  • For "select-form" in the same page, add a cancel button in editing status

    Dear JHeadstart team
    For "select-form" in the same page, I still have a trouble.
    How can I customize the Tempalte File to make the editing page have cancel button to abandon the edit.
    If I want to learn the the JHS's Template costomizing (.vm file) and where can I find more reference documents about JHS's Template costomizing (excepting "Oracle JHeadstart 10g for ADF Developer's Guide").
    thanks!

    Can you be more precise on what you want:
    - should the cancel button be displayed when creating new row AND editing existing row?
    - when pressing the Cancel button, where do you want to go, to the select page?
    Steven Davelaar,
    JHeadstart Team.

  • Very Strange occurance when page with effect viewed in IE 7

    I applied the spry (Fade/Appear) effect to a container.
    The container contains text and images. When I test the page,
    I noticed the images has strange white marks or scratches on them.
    Has anyone noticed this? This only happens in IE 7. Not Firefox.
    I also noticed a gap between the tabs at the bottom of the
    page and the container when the effect (Fade/Appear) is applied.
    There also appeared to be a latency when I click on the tabs
    and when the effects happens.
    Like you click on the tabs and the effects occurs after about
    two seconds.
    Can you adjust the time it takes for the effects to fire up
    when you click on a tab?
    Just wondering if anyone has experience any of these
    problems.
    Patrick

    quote:
    Originally posted by:
    Newsgroup User
    Webethics wrote:
    > I applied the spry (Fade/Appear) effect to a container.
    > The container contains text and images. When I test the
    page, I noticed the
    > images has strange white marks or scratches on them. Has
    anyone noticed this?
    > This only happens in IE 7. Not Firefox.
    > I also noticed a gap between the tabs at the bottom of
    the page and the
    > container when the effect (Fade/Appear) is applied.
    >
    > There also appeared to be a latency when I click on the
    tabs and when the
    > effects happens.
    > Like you click on the tabs and the effects occurs after
    about two seconds.
    >
    > Can you adjust the time it takes for the effects to fire
    up when you click on
    > a tab?
    You should post a link to your page so that others can see
    what is going on, and potentially offer some suggestions.
    I've not seen any "delay" options for starting effects. It
    may be that something is interfering with start of the effect.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert
    This is the URL
    http://www.patrickjudson.com/weddingIndex.php,
    The effect is on the first tab, not the others. you can click any
    other tab and then click the first tab to see the effect. What I
    mentioned above only happens in IE 7.
    thanks again - Patrick

  • Landing Page with Buy now Buttons for products?

    Hi,
    I've been searching all morning and was hoping someone could point me in the right direction please.
    We have 1000 products on BC and I wanted to create a custom landing style page offering 3 set products that people can click to buy now. ie just a simple buy now button.
    I don't want it to look like our normal small or large catalogue but as a separate landing page.
    I would like when the customers to click Buy Now or Add to Cart that it adds them to the cart.
    e.g
    blah blah blah
    large image of the item
    underneath = Buy Now / Add to cart
    blah blah blah
    large image of the item
    underneath = Buy Now / Add to cart
    etc.
    I tried using {module_product} inseting the item but it only shows a tiny pic and has no buy now button.
    I also tried inserting an actual html code of the products button, but it didn't work either.
    <div><img src="/images/btn_addtocart.png" alt="add to cart" onclick="AddToCart(98416,1375845,'',3,'','',false);return false;" /></div>
    If I just create them as text is there a product specific buy now button I can insert so that item gets added?
    I've seen websites do this with a paypal buy button but then it wont go through our CRM etc.
    Any ideas?
    Thank you

    My routine, as always, has been to do the pages in iWeb and then using iWeb I select "Publish site changes" to a folder locally on my drive. Then, using Transmit (and I have used Cyberduck) I upload the folder of files and the file ending in .html for the changed pages to my server that hosts the site. What you are telling me is that either iWeb is not "publishing" all the changed files to my local folder, or there are files that are located somewhere else within the structure of the site that I have failed to upload.
    I looked for paste.css files and found it in the scripts > regions or whatever folder but these are not files that I typically have ever looked for or uploaded when changing a page in iWeb.

  • Google authentication page has accept/cancel button disabled, other browsers work fine

    On logging or registering through Google's authentication mechanism oAuth2, the authentication page https://accounts.google.com/o/oauth2/auth.... has Accept and Cancel dissabled.
    For example on https://www.mindomo.com/login.htm by selecting Google as authentication it takes to page which on which all buttons are disabled.
    This mechanism is working fine in other browsers Chrome and IE.

    HI ArvindRSingh,
    Are you signing up while you are logged into a google account? Or is this blocked from your enterprise account?
    Please also check if you clear your cache and cookies. I was able to login to the test site and was not able to reproduce the issue.

  • My numbers app on the ipad2 is a blank white page with no response?

    Trying to use numbers on iPad and I have a blank white screen that won't respond to any touch.
    WTH?

    I don't have the Numbers app so I don't know what it should look like, but have you tried closing the app completely and seeing if it works when you re-open it ? From the home screen (i.e. not with Numbers 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Numbers app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How do I get a new tab to open on my home page, instead of a blank white page, with (Untitled) in the tab?

    '''bold text'''

    You can middle-click or Ctrl left-click the Home button on the Navigation toolbar to open the Home page in a new tab.
    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/2221
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/777

  • After PXE boot to machine nothing shows up. Blank SCCM page with no option to install OS images.

    I am working on using PXE with SCCM 2012 and finally got my test VM to boot with the standard x86 boot image. This is the process:
    1. Start up VM with no OS
    2. Contacts SCCM and I press F12 to Network Boot
    3. Boots into a SCCM screen and says " Windows is starting up" then " Preparing Network Connections".
    4. Then all i see is a blank screen. After about a minute it will just reboot.
    I found this post that discusses adding the drivers need for the boot images:
    http://social.technet.microsoft.com/Forums/en-US/fd96466b-0521-48d8-b31e-4477468982fe/sccm-pxe-boot-initiated-but-nothing-happens-after-that?forum=configmgrosd
    I added the entire VMware tools Driver folder to both my boot images. (All it had in there was a SCSI adapter)
    Tried to redo the PXE and still get the same menages with the blank screen after that. 
    What am I missing here? 

    Sounds like your boot image is missing network drivers...
    Couple of checks though:
    If the VM in case has already been introduced somehow to ConfigMgr, check Devices -node from the console and search for "Unknown", if there are objects named "Unknown" (not the default x86 or x64 objects!), delete them
    Add command line support (F8) to your boot image
    Boot your VM, as soon as you get in to WinPE, hit F8 to open command prompt
    Run ipconfig to see if the VM get's IP address
    If the VM doesn't get IP address, you probably don't have the correct network driver in your boot image. You can obtain the correct driver by installing OS (the same architecture as you boot image, and based on the same FullOS of your boot image, ConfigMgr
    2012 RTM=WinPE3.1=Windows 7, SP1=WinPE4.0=Windows 8, R2=WinPE5.0=Windows 8.1)  on to your VMware VM and then use this tool:
    http://gallery.technet.microsoft.com/ConfigMgr-Driver-Injector-aae7d17d to capture the needed drivers. Then you can import those drivers to ConfigMgr, categorize them and add the LAN and SCSI drivers to your boot image.

  • Workflow: Approve and Cancel Button

    Hi All,
    The requirement is:
    we have to build a custom workflow. Some supplier details (custom OAF Page) are filled by the requestor and is submitted (here the Workflow will fire).
    The notification will go to approver say XYZ. When XYZ logs in to Apps, the notification should be there in the home page,that's fine but all the details should also come to a custom OAF page with Approve/Cancel Button and a comment section so that If he Approve/Cancels, the Approve/Cancel notif should go to the requestor with the comments.
    The second part is a custom one, so I would like to know what API or program to call from Approve/Cancel button so that it is in sync with how we approve/Cancel a request from Standard Oracle notifications.
    Thanks
    Shanku

    Try WF_NOTIFICATION API.
    http://etrm.oracle.com/pls/trm11510/etrm_pnav.show_object?c_name=WF_NOTIFICATION&c_owner=APPS&c_type=PACKAGE
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=WF_NOTIFICATION&c_owner=APPS&c_type=PACKAGE
    HOW TO PRINT ATTRIBUTE VALUES ON SUBJECT LINE [ID 351096.1]
    Is it Possible to Create on the Fly a Message Attribute for Showing it as a Document Attachement in a Notification? [ID 973710.1]
    API to reject APINV workflows when upgrading from 11.5.10.2 to R12
    Thanks,
    Hussein

Maybe you are looking for