I have no speakers fine which button is irrelevant?

I have no speakers whate fine touch is irrelevant

Hi JackSeech,

·         Did you do changes on the computer before the show?

Follow the steps in the article.

How to troubleshoot sound problems in Windows XP

http://support.Microsoft.com/kb/307918/en-GB

For reference:

No sound in Windows

http://Windows.Microsoft.com/en-us/Windows/help/no-sound-in-Windows

Tags: Windows

Similar Questions

  • What happened to the button on the address bar which allow you to see the pages you had been so that you don't have to click the back button several times? I use it all the time and it is not on FF4.

    What happened to the button on the left end of the address bar which allow you to see the pages you had been so that you don't have to click the back button several times? You can look at the drop down window of pages and just choose whatever you want. I use it all the time and it is not on FF4. I want to go back to the old FF.

    If you right click on your back button, or click and hold down the mouse button, it will display the list. (I prefer a click-right, because sometimes my fingers slide when I try to click and hold)

  • Check which button is clicked

    I have four buttons on the frame one. When one of the buttons is activated, it then goes to two glory. There is not much difference between what the buttons do: addition, subtraction, multiplication and division. Ideally, the program would be

    (1) check which button is clicked
    2) go to section 2
    (3) according to the which button has been clicked frame 1, make an addition, subtraction, multiplication, or division

    I have a few questions

    (1) is there a simple way to check which button has been clicked? I guess you could have different function calls in the function addEventListener for each button and then write a different function for each button. But I was wondering if there is a way to do it with if statements? This means that the same function is called in addEventListener for each button, press function controls which button triggered the function call. The code below shows what I would do (including pseudocode).

    (2) how do I pass a variable of framework one part two? Here I could have 4 frames separate (one for each arithmetic operation), but I prefer not to have that one frame and pass the exact operator (+, -, *, /) to frame two and have then framework both make an addition, subtraction, multiplication or division according to operator was passed.

    You add to that more than complexity it takes probably, but I don't see the whole picture, so I'll cover a little.

    You can use the events received by the function to determine which button was clicked:

    var btnClicked:String;

    function fnSolve(event:MouseEvent):void {}
    btnClicked = event.target.name;
    }

    btnAdd.addEventListener (MouseEvent.CLICK, fnSolve);
    btnSubtract.addEventListener (MouseEvent.CLICK, fnSolve);
    btnMultiply.addEventListener (MouseEvent.CLICK, fnSolve);
    btnDivide.addEventListener (MouseEvent.CLICK, fnSolve);

    I don't know why you want to go to frame 2, but that's fine. You don't need to pass a variable to two of the frame, just to extend your actionscript layer up to now and whatever variables live in frame 1 are available in the frame 2 automatically.

    The part of the function if() of this function could be moved to the 2 structure, if the function frame 1 would only need to be really...

    function fnSolve(event:MouseEvent):void {}
    btnClicked = event.target.name;
    gotoAndStop (2);
    }

    and in part 2, you would have...

    If (btnClicked == "btnAdd") {}
    Add stuff
    } Else if (btnClicked == "btnSubtract") {}
    subtract stuff
    } else if... etc.

  • I am facing a problem with the beep.vi. I have a DAQ program, which acquired the signal and compare it to a threshold value. When a signal is out of range, a Visual and sound alarm has occurred. I use the VI beep.vi to generate the sound.

    I am facing a problem with the beep.vi.  I have a DAQ program, which acquired the signal and compare it to a threshold value. When a signal is out of range, a Visual and sound alarm has occurred. I use the VI beep.vi to generate the sound. Everything works fine except the sound alarm. It gives the table 1 d of type mismatch. I tried to fix this by placing it in a box structure. But it still does not work. If someone could help? Please find attached my VI. Best wishes to all visitors to the Forums of Discussion OR.

    Ihab El-Sayed

    published here: http://forums.ni.com/t5/LabVIEW/Playing-sound-based-on-exceeding-a-threshold-value-1D-array-data/m-p...

  • Detect which button was selected from a message popup dialog box

    I'm sure I've done this before and don't remember how I did it.

    I even searched the forum for messages but did not find any.

    I have a popup message asking if a number was on.

    It has two buttons "YES" & "

    I want to know which button has been selected in order to assign a pass/fail for the LED Test result.

    How to achieve this?

    R

    Step.Result.ButtonHit

    There will be 1 or 2 or more if you have more than 2 buttons

    Omar

  • Have VFC Z216Gx/b, which suddenly will not turn on.

    Have VFC Z216Gx/b, which suddenly will not turn on. AC is on but nothing happens when you press the button 'on '.

    Hello Bob,

    Welcome to the community of Sony.

    Try to perform all the steps here: https://us.en.kb.sony.com/app/answers/detail/a_id/35540/c/65%2C66/kw/35540

    If the problem persists, contact Sony Service support here: http://esupport.sony.com/US/perl/service.pl

    Kind regards

    Miguel

    Note: If my post answered your question, please mark it as an "accepted Solution".

  • Determine which button is clicked/button

    Hi guys, I have a question of n00bish (and more to come sorry)

    I created an array of buttons (i.e. the name of the buttons are: buttonDelete [0, 1, 2,... etc])

    so they FieldChangeListener for each button.

    Currently, I made choice of 10 buttons (generated with loop for) and 10 FieldChangeListeners

    10 FieldChangeListeners seems to be very inefficient, so my question is:

    can I make a table of FieldChangeListeners so that if a button is pressed, correct FieldChangeListener used?

    Thanks in advance!

    You can have a single FieldChangeListener assigned to all 10 buttons. Then in the listener, you can test which button has been activated and send to the appropriate action:

    FieldChangeListener listener = new FieldChangeListener() {
        public void fieldChanged( Field field , int context ){
            if (field == buttonDelete[0]) {
                // respond to button 0
            } else if (field == buttonDelete[1]) {
                // respond to button 1
            } // etc.
        }
    };
    

    It's very ugly. Depending on your needs, you may be able to reduce this to a loop for.

    There is an approach much more if you can set up your logic button - in other words, if you can set the response so all buttons do the same treatment, only on different data. To do this, you can use setCookie/getCookie:

    FieldChangeListener listener = new FieldChangeListener() {
        public void fieldChanged( Field field , int context ){
            process( field.getCookie() );
        }
        private void process( Object data ) {
            // process the data stored as a cookie in the activated button
        }
    };
    
    Object[] cookies = {
        // array of data that parameterizes button processing logic
    };
    for (int i = 0; i < 10; ++i) {
        buttonDelete[i] = new ButtonField( ... );
        buttonDelete[i].setChangeListener( listener );
        buttonDelete[i].setCookie( cookies[i] );
    }
    
  • Advanced action scripts - y at - it a variable that tells me which button is clicked?

    Lilybiri gave me some great tips on the use of conditional tip action scripts. Now, I have another related question.

    I have three buttons A, B and C. Each button performs exactly the same series of actions to hide everything on the page, but shows another group of objects depending on which button was clicked - that is, to display the Group A and Group B group C.

    Currently, I have a separate advanced action script for each button (in fact a lot more than three) because of this difference, then want to combine in a single conditional script. However, I can't understand how I would like to know which button was clicked.  In other words, I think that my conditional script should look like this:

    The condition "always."

    If 1 is equal to 1

    [Script to hide all]...

    Continue

    Condition 'has '.

    If MyButton is equal to 'A '.

    See the group_A

    On the other

    Continue

    Condition 'B '.

    If MyButton is equal to 'B '.

    See the group_B

    On the other

    Continue

    Condition 'C '.

    If MyButton is equal to 'C '.

    See the group_C

    My problem is that I don't know how to set or get the value of MyButton to perform conditional tests. Is there a system variable that returns the value of a selected object? I looked at all the variables, and I don't see one. Or y at - it another way to do what I'm missing?

    You probably can find with Javascript, but not with advanced actions. All the available system variables that can be used - there are more - are in a table that you can download here: System variables in Captivate 8 - Captivate blog

    I have several articles on the shared use of stocks. You apply the same instance of a common action several times and don't have that to indicate parameters, in your case these parameters will be for most groups and objects. I hope that stocks shared will expand more in the future. They have several advantages: given that you use multiple instances of the same action that they do not increase the file size as duplicate advanced actions. In addition, you have them in the library that makes management much easier.

  • With the help of A6, must create menu screen which allows the user to click a button creates a branch to other screens and return to the main menu. When returning to the main screen on which button will be gray or inactive.  How can I do this?  I created

    I am trying to imitate a piece of equipment.  I need the user to be able to click on the specific buttons that have the user to another or screens.  After viewing these screens that will be the user to the main screen where the user which buttons were pressed and which still needed to be pressed.  I create buttons image with the 3 States - who has worked except when the user returns to that slide is reset to zero, and if the user does not see the 3rd State of the button.  How can I get this 3rd State of stay after the user returns to the main screen?

    You can not 'keep' a State, that's what I said in my first answer: "you can create an image with that look of '3' State, make it invisible and show it with the same action when a button is triggered. You will need to insert extra that third picture, first hide it out and make it visible to the advanced action, which I explained. I called this additional 'Done_one' image in the example. The three States you're talking about are in a totally different way to Captivate: for down, more and up-state. You can just tell Captivate to keep a low State, it will be down when the button is pressed. Where my explanation of an additional image.

    No need for all the variables. Looks like you have a lot to learn about variables and advanced actions. I don't see another easy way to achieve what you want. It is not so difficult, tons of examples on my blog.

  • possible to have a label on a button makes a symbol incorporated since a swf?

    Is it possible to have a label on a button made a symbol incorporated since a swf? I have the following code:
    < mx:Button id = "Button1" styleName = "myButton" label = "Some Text Here" labelPlacement = "left" width = "100" height = "100" horizontalCenter = "-51" red = "70.5" toolTip = "Where is the text?" visible = "true" >
    < mx:icon > @Embed (source = 'mySwf.swf', symbol = 'myGreenButton') < / mx:icon >
    < / mx:Button >
    The button appears fine. The ToolTip appears fine. But the label is not found. Why is it displayed?
    Thanks in advance for any help!

    Josephine

    I thought about it myself... Duh... The buttons in the swf file amounted to 100 x 100 and I did the button in the same size mxml file. When I increased the size of the button in the file mxml to 150 x 150, then the label showed.

  • I changed my apple ID and password user name and it changed on 3 of my devices. I have a 4th device, which still has the old user name and password and I am not able to change it. I can't restore the phone to factory settings unless I can connect.

    I changed my apple ID user name and password on 3 of my devices. I have a 4th device, which still has the old user name and password and I am not able to change it. I can't restore the phone to factory settings unless I can connect.

    OK, just to clarify: you always use the same Apple ID, but you changed its name, correct?

    If this is the case, you can go to iCloud.com or use find my iPhone app (free on the App Store) of one of your devices to remove the 4th icloud.

  • I have an Airport Express, which gives an unexpected error message when you try to connect to an existing network of WEP.  Any ideas.  Tried the factory returned. He was knocked offline when someone dug into the telco cables.

    I have an Airport Express, which gives an unexpected error message when you try to connect to a router WEP (Verizon) existing iOS9.3.2

    It flashes orange, but can not be reconnected to the router or to the title of the Setup Assistant or Airport utility.  Is there a way to reconnect to WIFI or should I bite the bullet and connect via Cat5e and be done with it.  My VPN works much better without AirPort Express connected.

    Sorry, but there is no WEP settings AirPort Utility on the iPhone or iPad, or any Mac version of AirPort Utility which was used for the last 4 years or so.

    If you have an older Mac still running AirPort 5.x utility or a PC with the AirPort for Windows utility installed on the device, the WEP settings that could be used to get the Express to connect to a WEP network there.

    As you know, WEP has not been secured for a number of years, and there are any number of free utilities available on the Internet, which is crack a WEP network in a few seconds. Thus, all those who want to be on your network will not have problems to do very quickly.

    But it's your call.

  • I have to click on the button to return several times to return to a page. How can I fix it?

    On most of the pages I have to click the back button several times to return to page 1.

    Some Firefox problems can be solved by performing a clean reinstall. This means that you remove Firefox and all the leftover program files and then reinstall Firefox. Please follow these steps one by one:

    1. Download the latest version of Firefox from http://www.mozilla.org office and save the installer to your computer.
    2. Once the download is complete, close all Firefox Windows (click Exit in the file menu or Firefox) and confirm all future messages.
    3. Now, uninstall Firefox by following the steps mentioned in the article to Uninstall Firefox .

    IMPORTANT: Under Windows, the uninstall program has the option to remove your personal data and settings. Make sure that you have not check this option. If not all of your bookmarks, passwords, extensions, customizations and other Firefox data user profile will be removed from your computer.

    After uninstalling Firefox on Windows, delete the folder of the program "Mozilla Firefox", located by default in one of the following locations:

    • (Windows 32-bit) C:\Program Files\Mozilla Firefox
    • (On 64-bit Windows) C:\Program Files (x 86) \Mozilla Firefox
    1. Go to the Windows Start menu and click on 'computer '.
    2. In the Explorer window that opens, double-click on disk Local (c) to open the C:\ drive.
    3. Find the folder "Program Files (x 86)" or "Program Files".
      • On 32-bit Windows, double-click the Program Files folder to open it.
      • On 64-bit Windows, you'll see a folder "Program Files (x 86)" AND a "Program Files" folder. Open the Program Files (x 86) folder.
    4. You are looking for a folder of Mozilla Firefox . If you find one, right click and select delete and confirm that you want to move the folder to the trash.

    Now, go ahead and reinstall Firefox:

    1. Double-click on the downloaded Setup file and go through the steps in the installation wizard.
    2. Once the wizard is completed, click to open Firefox directly after clicking the Finish button.

    Please report back to see if this helped you!

  • recently, my mac started hanging. the screen freezes and I have to use the power button to turn it off

    recently, my mac started hanging. the screen freezes and I have to use the power button to turn it off

    Run this test and post the results here.

    http://www.etresoft.com/etrecheck

  • I bought the iPhone 6 I have the cloud on which is active and I did not I have cloud id and password of any solution?

    I bought the iPhone 6 I have the cloud on which is active and I did not I have cloud id and password of any solution?

    Hey zeeshan137,

    I understand that you have purchased an iPhone who may have active locking activation. Here's an article on this topic and how to solve the problem:

    Turn off find my iPhone Activation Lock - Apple Support

    https://support.Apple.com/en-us/HT201441

    Thanks for being a part of the communities of Apple Support!

Maybe you are looking for