Removing a confirmation pop-up after a button click

What I am trying to do is the following:
I have a confirmation popup for a table row delete triggering action 'delete_confirm'.
yes action = 'delete'
no action = 'none'
If they choose yes (delete) the action handler calls the controller method which will call a back end service which takes care of the delete.
The problem I am encountering is that the dialog box will remain on the screen until the back end method call has finished processing.  I'd like to dismiss the dialog box immediately after th button push and display the standard WD hourglass + processing graphic while the back-end call processes.
I hope this is clear; if not, I will try to elaborate.

Thanks for the response.  You are right, I needed a second round trip to process both independently.  Unfortunately, I was unable to find a graceful solution.  Instead, I used the timer control and manipulated it in such a manner that it fires off an action 1 second after the window closes.  It's fairly transparent to the user and they get to see what they are used to in terms of loading so I'll just have to wait until enhancement pack 1 to do this a different way I think.

Similar Messages

  • Creating a pop up window on button click?

    Hi
    How would I create a pop up modal window when a user clicks on a print button within an interactive report. This window would then display a message with a confirm or cancel button. If they click on confirm the page prints out and if they click cancel it takes the user back to the report
    Is this possible? if so how is this achieved?
    Many Thanks

    The confirm dialog is a native dialog in the browser. It will display a message and it has an ok and cancel button. Running it in javascript will prompt the user with the dialog, and the return value will be true or false depending on the button clicked.
    You don't need any extra page whatsoever.
    var r=confirm("Press a button");
    if (r==true)
    x="You pressed OK!";
    else
    x="You pressed Cancel!";
    }This would prompt you with a small dialog, asking "Press a button.". Clicking Ok or Cancel will return true or false to variable r, which in this code is then tested.
    You could shorten it up to
    if(confirm("Do you want to print?")){
       //execute print code
    };Alternatively, if you are on version 4.0 or higher you can use a dynamic action for this. Set the action to fire on the click of a button, and as a true action you can choose the confirm action, which then lets you display a text.

  • Tweens/add/remove childs works fine, but after a few clicks it goes to the crapper

    I keep checking this and checking this, but its obvious I'm missing something. after a few clicks the entire design breaks down. Anyone have any insight? Here's the code...
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    whitePanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    greyPanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    greyPanel2_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    redPanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    bgPanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    banner_mc.buttonMode = true;
    websites_mc.buttonMode = true;
    content_mc.buttonMode = true;
    contact_mc.buttonMode = true;
    var startAd_mc:StartAd = new StartAd();
    var return_mc:Return = new Return();
    var infoText1_mc:Info = new Info();
    var infoText2_mc:Info2 = new Info2();
    function getReturnBtn(e:TweenEvent):void
    banner_mc.removeEventListener(MouseEvent.CLICK, startBanText);
    contact_mc.removeEventListener(MouseEvent.CLICK, startConText);
    content_mc.removeEventListener(MouseEvent.CLICK, startContText);
    websites_mc.removeEventListener(MouseEvent.CLICK, startWebText);
    return_mc.buttonMode = true;
    return_mc.x = 100;
    return_mc.y = 466;
    return_mc.addEventListener(MouseEvent.CLICK, restoreMainMenu);
    addChild(return_mc);
    function startWebText(e:MouseEvent):void
    var contMenuTween:Tween = new Tween(content_mc, "x", Strong.easeOut, content_mc.x, 0, 6, false);
    var conMenuTween:Tween = new Tween(contact_mc, "x", Strong.easeOut, contact_mc.x, 0, 6, false);
    var banMenuTween:Tween = new Tween(banner_mc, "x", Strong.easeOut, banner_mc.x, 0, 6, false);
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 899, 12, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 899, 12, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 899, 12, false);
    infoText1_mc.x = 25;
    infoText1_mc.y = 25;
    infoText1_mc.gotoAndStop("websites");
    addChild(infoText1_mc);
    infoText2_mc.x = 458;
    infoText2_mc.y = 120;
    infoText2_mc.gotoAndStop("websites");
    addChild(infoText2_mc);
    removeChild(startAd_mc);
    banMenuTween.addEventListener(TweenEvent.MOTION_FINISH, getReturnBtn);
    function startContText(e:MouseEvent):void
    var webMenuTween:Tween = new Tween(websites_mc, "x", Strong.easeOut, websites_mc.x, 0, 6, false);
    var conMenuTween:Tween = new Tween(contact_mc, "x", Strong.easeOut, contact_mc.x, 0, 6, false);
    var banMenuTween:Tween = new Tween(banner_mc, "x", Strong.easeOut, banner_mc.x, 0, 6, false);
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 899, 12, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 899, 12, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 899, 12, false);
    infoText1_mc.x = 25;
    infoText1_mc.y = 25;
    infoText1_mc.gotoAndStop("content");
    addChild(infoText1_mc);
    infoText2_mc.x = 458;
    infoText2_mc.y = 120;
    infoText2_mc.gotoAndStop("content");
    addChild(infoText2_mc);
    removeChild(startAd_mc);
    banMenuTween.addEventListener(TweenEvent.MOTION_FINISH, getReturnBtn);
    function startConText(e:MouseEvent):void
    var webMenuTween:Tween = new Tween(websites_mc, "x", Strong.easeOut, websites_mc.x, 0, 6, false);
    var contMenuTween:Tween = new Tween(content_mc, "x", Strong.easeOut, content_mc.x, 0, 6, false);
    var banMenuTween:Tween = new Tween(banner_mc, "x", Strong.easeOut, banner_mc.x, 0, 6, false);
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 899, 12, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 899, 12, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 899, 12, false);
    infoText1_mc.x = 25;
    infoText1_mc.y = 25;
    infoText1_mc.gotoAndStop("contact");
    addChild(infoText1_mc);
    removeChild(startAd_mc);
    banMenuTween.addEventListener(TweenEvent.MOTION_FINISH, getReturnBtn);
    function startBanText(e:MouseEvent):void
    var webMenuTween:Tween = new Tween(websites_mc, "x", Strong.easeOut, websites_mc.x, 0, 6, false);
    var contMenuTween:Tween = new Tween(content_mc, "x", Strong.easeOut, content_mc.x, 0, 6, false);
    var conMenuTween:Tween = new Tween(contact_mc, "x", Strong.easeOut, contact_mc.x, 0, 6, false);
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 899, 12, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 899, 12, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 899, 12, false);
    infoText1_mc.x = 25;
    infoText1_mc.y = 25;
    infoText1_mc.gotoAndStop("banners");
    addChild(infoText1_mc);
    infoText2_mc.x = 458;
    infoText2_mc.y = 120;
    infoText2_mc.gotoAndStop("banners");
    addChild(infoText2_mc);
    removeChild(startAd_mc);
    contMenuTween.addEventListener(TweenEvent.MOTION_FINISH, getReturnBtn);
    function restoreMainMenu(e:MouseEvent):void
    removeChild(return_mc);
    removeChild(infoText1_mc);
    if (infoText2_mc.visible == true)
      removeChild(infoText2_mc);
    return_mc.removeEventListener(MouseEvent.CLICK, restoreMainMenu);
    stage.addEventListener(Event.ENTER_FRAME, startMenuAni);
    whitePanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    function startUpAni(e:Event):void
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 330, 6, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 356, 10, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 393, 14, false);
    var rTween:Tween = new Tween(redPanel_mc, "x", Strong.easeOut, redPanel_mc.x, 428, 18, false);
    var bTween:Tween = new Tween(bgPanel_mc, "x", Strong.easeOut, bgPanel_mc.x, 454, 20, false);
    rTween.addEventListener(TweenEvent.MOTION_FINISH, removeAni);
    function removeAni(e:TweenEvent):void
    whitePanel_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    greyPanel_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    greyPanel2_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    redPanel_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    bgPanel_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    stage.addEventListener(Event.ENTER_FRAME, startMenuAni);
    function startMenuAni(e:Event):void
    var contTween:Tween = new Tween(contact_mc, "x", Strong.easeOut, contact_mc.x, 100, 3, false);
    var webTween:Tween = new Tween(websites_mc, "x", Strong.easeOut, websites_mc.x, 150, 3, false);
    var conTween:Tween = new Tween(content_mc, "x", Strong.easeOut, content_mc.x, 200, 3, false);
    var banTween:Tween = new Tween(banner_mc, "x", Strong.easeOut, banner_mc.x, 250, 3, false);
    banTween.addEventListener(TweenEvent.MOTION_FINISH, removeMenuAni);
    banner_mc.removeEventListener(MouseEvent.CLICK, startBanText);
    contact_mc.removeEventListener(MouseEvent.CLICK, startConText);
    content_mc.removeEventListener(MouseEvent.CLICK, startContText);
    websites_mc.removeEventListener(MouseEvent.CLICK, startWebText);
    startAd_mc.x = 25;
    startAd_mc.y = 25;
    addChild(startAd_mc);
    function removeMenuAni(e:Event):void
    stage.removeEventListener(Event.ENTER_FRAME, startMenuAni);
    banner_mc.addEventListener(MouseEvent.CLICK, startBanText);
    contact_mc.addEventListener(MouseEvent.CLICK, startConText);
    content_mc.addEventListener(MouseEvent.CLICK, startContText);
    websites_mc.addEventListener(MouseEvent.CLICK, startWebText);
    Is it the tweens? do I have too many? Should I create variables for the exact destinations of the objects? Should I create some null references? Should I index some of it with array(s)? I know i'm missing something...
    This can actually be viewed here as well... www.calladorn.com

    Ideas anyone?

  • Advanced editor pops up after only one click so how do I get this to stop?

    When I write an email I typically don't keep typing all the way to the right margin. Instead
    I choose to keep the line of words narrow by routinely hitting
    "enter." Hence, it's like creating a new paragraph after every line
    as I am doing now. Then when I go to edit, such as to take out
    a word, I will move the cursor and place it in a white field next
    to that word. I would then backspace to delete the word. However,
    as soon as I click the advanced editor pops up. I am very careful
    to only click once. After attempting to consistently repeat this annoyance,
    it seems that it is most likely when I have previously used the enter key and
    it be most likely to happen with that first edit. A single click later in the white
    field is not likely to trigger the advanced property editor. I'm with others that
    write about this being a very annoying event, and it has just started after a year
    of using thunderbird. I have a lot of folders. If I re-install I would not want to loose those
    folders. A follow up question may be, how do I back up these folders?

    Clicking once in a white space does not open the advanced editor.
    This is only initiated if you click twice in a white space.
    However, the point that some people keep clicking twice either because of their computing habits in a word processing package or otherwise has been taken on board by the developers. As you say, people like yourself found the pop up irritating and wanted it removed from so easily being selected.
    You will be pleased to hear that if you update to 31.1.0 then you will find that accessing the advanced property editor has been prevented from opening using the double click.
    The Thunderbird program is not stored in the same place as the Thunderbird Profile folders.
    So updating via 'Help' > 'About Thunderbird'
    click on 'Check for updates'
    will not have any effect on folders.
    You could also uninstall the current Thunderbird via Control Panel > Programs and Features and then download from here:
    * https://www.mozilla.org/en-US/thunderbird/all.html
    However, it is always a good idea to backup your Profile just in case :)
    You can use MozBackup tool to backup a Profile or use ImportExporttool to backup emails or you can manually copy the Profile folder.
    Suggest you save all backups to an external storage device for safe keeping.
    Here is info on Backup:
    * http://kb.mozillazine.org/Profile_backup
    * http://kb.mozillazine.org/MozBackup
    ImportExporttool:
    * https://addons.mozilla.org/en-US/thunderbird/addon/importexporttools/

  • Compressor does not start the job after submit button clicked.

    Hello All,
    FCP 6.0/ Compressor 3.0.5
    I am trying to export a section of a FCP timeline sequence (set with in and out) thorugh Compressor, into a couple of video formats (DVD and a custom H.264). After I set the destination and make surte that the source file is in place, I press "Submit" button and again "submit" from pop-up window and nothing happens. No usual window with the job processing appears, like it ussually does. I restarted programs and computer and no change. Compressor quitted unexpectedly few times within the same process of initiating export from FCP. I tried test export from a different FCP project and the compressing does not start either after pressing "submit".
    I did not have this problem before. I would greatly appreiciate any suggestions.
    Best to all,
    Izabela

    Dear ToddNashville,
    Thank you so much! This was it! It was processing but did not see the process as the "ghost" icons of the new exporte files in destinations would not appear immiediately as I thought they usually do. Once they are completed or 1/2 way through they appear.
    I did not try the batchlist before. It is so clear as far as whats running and how much time left! I hope all will process fine.
    Thank you!

  • Close current swf after a button clicked to call for another swf

    daftar_isi.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_2);
    import fl.display.ProLoader;
    var fl_ProLoader_2:ProLoader;
    var fl_ToLoad_2:Boolean = true;
    function fl_ClickToLoadUnloadSWF_2(event:MouseEvent):void
      if(fl_ToLoad_2)
      fl_ProLoader_2 = new ProLoader();
      fl_ProLoader_2.load(new URLRequest("daftarisi_c.swf"));
      addChild(fl_ProLoader_2);
      else
      fl_ProLoader_2.unload();
      removeChild(fl_ProLoader_2);
      fl_ProLoader_2 = null;
      fl_ToLoad_2 = !fl_ToLoad_2;
    What script should i add to kill this current swf after i clicked on "daftar_isi" button which will play daftarisi_c.swf?
    thanks.

    Thx ned. The new swf is added above the first swf. I need to kill the first swf when i click on the "daftar_isi" button inside first swf after it call out the new swf.
    So the button have 2 function at the same time when clicked:
    1. Call out the new swf
    2. Kill the current swf itself

  • Can I have an action occur only after a button / click box is clicked and held for three seconds?

    Within Captivate, I am trying to simulate touching and holding a button for three seconds on a touch pad to get a second window to come up.  I have an image of the touchpad and an image of the second window.  Now I have to set up the interaction.  Is it possible for me to have an image "show" -- in this case, the second window -  only after a click box or button is held for three (or more) seconds?
    Thanks for any help!
    Ryan

    Hi TLCMediaDesign,
    That sounds very interesting and I would like to learn how to do it. I just read Common JS interface and I know how to manipulate the output at runtime using the JS console, but that is all I really know how to do...
    To understand your answer, I had to make a few assumptions.  When you say JS "post publishing", you mean going into one of the JS files that get published with the project such as standard.js and manipulating that.  Is that correct?
    My second question has to do with the event listener.  I have some experience with JS in the past and manipulating HTML elements, for example.  How do I find a particular button, or any Captivate object in the JS?  HTML elements always have IDs and classes...
    Thanks for any help..

  • Appear after all buttons clicked

    OK, I have a relatively easy question for you guys. I have a slide with four persistent buttons on it and I want a link to the next slide to appear after the four buttons have been clicked. What confuses me, however, is that I'm not sure where to put the "Advance to Next Slide" button on the timeline.
    I'm assuing that the problem is that I have all the buttons set to pause at the same time, but I'm not sure what the alternative would be.
    I've attached pictures of my slide and timeline below. Any feedback you could give me would be much appreciated. Thanks.

    OK Walter, then you really need advanced actions for the buttons. Noellet gave some ideas but it will not work if the user can click multiple times on each button, sorry Noellet. I will try to explain why: in your scenario the Next button will also appear if the user clicked four times on the same button
    Walter, you need to create one user variable for each button, I will label them v_one, v_two, v_three, v_four.  You do not need to give those variables a start value at all. They will be set to 1, when the corresponding button is clicked the first time. You will need a conditional advanced action for each button, and as Noellet correctly pointed out, the 'Next' button has to be initially invisible.
    Each conditional advanced action will have to do several things, showing the text caption and hiding all other text captions, set the value of its variable to 1, check the value of all the user variables and if they are all=1 the next button will be made visible. Easiest way will be to create indeed a counter variable as well v_counter.
    Would use 2 decisions: first will be a mimick of a standard action, second will be a really conditional action. For the first button, where the Text Caption is TC1 this will be:
    First decision: IF 1 = 1     (will always be true, so THEN actions will always be executed
                        THEN      Show TC1
                                       Hide TC2
                                       Hide TC3
                                       Hide TC4
                                       Assign v_one with 1
                                       Expression v_counter = v_one + v_two
                                       Expression v_counter = v_counter + v_three
                                       Expression v_counter = v_counter + v_four                    need 3 expressions to calculate v_counter
                                       Assign rdcmndGotoFrame with rdinfoCurrentFrame      to rewind the playhead
    Second decision  IF v_counter = 4
                             THEN  Show BtNext      shows the Next button
                             ELSE  Continue
    Did not try it out, let me know if it works, logic is OK
    Lilybiri

  • Spinner list to pop up with a button click

    How can I open this spinner list with a click of a button, and then close it with another button?
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark" title="Sample SpinnerList" xmlns:r="renderers.*">
    <s:layout>
    <s:VerticalLayout paddingTop="40" paddingBottom="5" paddingLeft="5" paddingRight="5" gap="10"
    horizontalAlign="center" verticalAlign="top"/>
    </s:layout>
    <s:SpinnerListContainer width="200">
    <s:SpinnerList width="100%">
    <s:dataProvider>
    <s:ArrayCollection>
    <fx:String>Test1</fx:String>
    <fx:String>Test2</fx:String>
    <fx:String>Test3</fx:String>
    <fx:String>Test4</fx:String>
    <fx:String>Test5</fx:String>
    </s:ArrayCollection>
    </s:dataProvider>
    </s:SpinnerList>
    </s:SpinnerListContainer>
    </s:View>

    I cant get it to work it with this code:
    How do I implement the code to my code so I can use the button to open spinner?
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                  xmlns:s="library://ns.adobe.com/flex/spark" title="Sample SpinnerList" xmlns:r="renderers.*">
           <s:layout>
                  <s:VerticalLayout paddingTop="40" paddingBottom="5" paddingLeft="5" paddingRight="5" gap="10"
                                               horizontalAlign="center" verticalAlign="top"/>
           </s:layout>  
           <s:SpinnerListContainer width="200">
                  <s:SpinnerList width="100%">
                         <s:dataProvider>
                               <s:ArrayCollection>
                                      <fx:String>Test1</fx:String>     
                                      <fx:String>Test2</fx:String>     
                                      <fx:String>Test3</fx:String>     
                                      <fx:String>Test4</fx:String>
                                      <fx:String>Test5</fx:String>
                               </s:ArrayCollection>
                         </s:dataProvider>
                  </s:SpinnerList>
           </s:SpinnerListContainer>
    </s:View>

  • POWL WD: No action has been triggered after toolbar button click

    Hi,
    I am using standard SAP Web dynpro application POWL for creating Service entry sheet from PO.
    On the toolbar we have buttons 'Create Service Entry Sheet', 'Display Service Package', 'Document tracing'.
    When I click on the row with the corresponding PO and then click on above mentioned buttons nothing happens, I can see at the taskbar : javascript:Void(0), which probably means that no action has been attached to that button.
    I have debugged the WD, seems to be OK, perhaps I am missing some configurations, because I've already traced my authorizations and they are OK
    What could be the problem ?
    Please advise !
    Thanks,
    Stefan
    Edited by: Stefan Kolev on Mar 6, 2012 2:56 PM

    Haven't gotten any response on this post and I really need to resolve this issue. Anyone can help??
    Eric.

  • After installing Firefox 4, [JavaScript Application] window keeps popping up after whatever I click.

    This is what the window says:
    [Exception..."Component returned failure code : 0x80004005(NS_ERROR_FAILURE) [nsIStringBundle.GetStringFrom]" nsresult : "0x80004005 (NS_ERROR_FAILURE) location : "JS frame : : XStringBundle : : getString : : line17"]

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

  • The right click menu pops up after I push the right mouse button, instead of when I release it.

    I am using an extension All-In-One Gestures. It works on my other installation of Firefox 4 - particularly, the right-click menu pops up if I click right mouse button and then release it so I can perform gesture or turn the wheel instead of getting a right click menu.
    But on this installation (basically the same addons and OS), the right-click menu pops up on pushing down the right mouse button so the right-button+wheel gestures do not work, and the menu stays there while I am performing the gesture which is rather annoying.
    So I though maybe there is some obscure configuration option to toggle to make right-click menu pop up after the button release? Or is this entirely the extension's fault? Note that it does work as expected on other installation...

    You have to enable in Firefox
    -> Options -> Content -> Activate JavaScript (yes) -> More
    -> Allow scripts the following actions
    -> Inactivate or replace context menu (yes)
    in order to allow All-in-one-Gesture to block the immediate appearance of the context menu.
    If you forbid Firefox JavaScript and/or the manipulation of the context menu by use of JavaScript, All-in-one-Gesture cannot work properly.

  • Create three textfiles with one button click

    Hello,
    how is it possible to create three textfiles after a button click. I create a textfile with the following code in a page process:
    owa_util.mime_header( 'application/octet', FALSE );
    htp.p('Content-Disposition: attachment; filename="Client_' || to_char(sysdate,'YYYYYMMDD HH24MI') || '.LAS"');
    owa_util.http_header_close;
    htp.prn('test');
    htmldb_application.g_unrecoverable_error := true;
    For the first textfile a savedialog to save the file appears in the browser. But there is no dialog for the second and third file.
    How is it possible to get the savedialog for the second and third file?
    Does anyone can help?
    Best regards,
    Hamburger

    I solved it with javascript:
    window.open("f?p=1:2","_blank");
    window.open("f?p=1:3","_blank");
    window.open("f?p=1:4","_blank");
    and three onload processes on every site!
    Greets

  • My apple iphone airplay button doesnt pop up after update

    my apple iphone airplay button doesnt pop up after update. can anyone help?

    Okay... some how I got out of a previous posting that Wi-Fi was not working.
    Basic troubleshooting from the User's Guide is reset, restart, restore.  Has any of that been tried?  What about a reset or restart of the AppleTv?

  • Everytime I go to another page a confirm pop up appears and asks if I want to change locations. It get annoying after a while. How can I get rid of it?

    when I go to another page, a confirm pop up appears and asks if I want to change locations yes or cancel. Every time...it gets annoying and would like to delete it or disable it.

    I am having the same problem and when I am on Face book, it gets really annoying because you switch pages so many times, especially when playing games.

Maybe you are looking for

  • New system for CS5.5? Some advice please?

      Hi- I am getting a new system built specifically to work with Production Premium CS5.5. I'm afraid I know next to nothing about hardware! These are some specs that the guys in the shop said would work? Do you have any comments- will it work? Any be

  • How can I create an animated countdown timer?

    Is there a way to create an animated countdown timer in Adobe Fireworks (animated gif)? Thank you

  • Whats the best free video converter ?

    I am sending out a small mov (DV)  file to a a few dozen people (not clients as this is a free thing). These people want to be able to convert this avi file down to a MP4 or other formats that will work fine on: Mobile phones Video frames small porta

  • Just what is getting backed up?

    There was a time when I didn't need an external drive just for my iTunes library. It passed several weeks ago. I bought a 500GB external drive and moved my iTunes content there, via a firewire connection initially. Then there was a reconditioned Airp

  • About method 'write(int b)' in class 'OutputStream'

    Hello, everyone, In OutputStream class, there is a method called "write(int b)". In the API Specification, the explanation of this method is: Writes the specified byte to this output stream. I am just wondering, if the type of b is 'int', then how ca