Sound in a plugin (any and all versions)

Hello all:
The plugins I generate produce long waiting periods as they digest the contents of the documents upon which they ruminate. Consequently I would love to provide audio feedback to my users to alert them of finished processes. Have any of you experimented with adding sound to your plugins. I am hoping for more than just a beep. For example at one point, if an error condition develops I would love the program to play a small WAV file (or something similar) that says "Serious error occured. Please check with network administrator because the database was not found," or something similar.
I would need something that works on both platforms since my plugins are used on both platforms. If the SDK has an audio interface, that would be great!
TIA!
John

Thanks for the feedback!
Would you prefer a single toggle option - turning off all dynamic effects? Or something more precise, allowing you to specify layers or maybe even specific effets? (For example: Toggle Drop Shadows, Toggle Glows, etc)
In theory, the tool will be used similar to how Outline mode works.

Similar Messages

  • IPhone 6 clicking noise coming from home button and also a little loose..anyone else have this issue or suggestions on how to handle it? Any and all suggestions are appreciated

    It seems as if when I push my home button there is a loud click or a clicking noise that shouldn't be there.  If I push the home button in certain areas or kind of on the side it's not so bad.  Also it seems as if the button is kind of loose or wiggles a little bit and can also feel the little silver ring and seems as if it's either not on properly or the home button is sunken in pretty good.  I was at the Apple Store and checked out some display models and didn't notice it on those and they all felt solid.  Has anyone else had this issue or experienced this?  Any and all suggestions will help greatly...I just want to know if it's normal or how I should go about taking care of it...thanks!

    ok...the doctor is in!....well, yes I agree with other posts concerning "clicky" crunchy touch id/home buttons...ah... we do swaps, cleanings, alcohol wipes....NO NO NO! yes dirt can and will trap inside the extreme minor spaces around the home button and the screen cutout..yes twirling a q-tip round the button only stuffs grime deeper in, but can clean the edge...in this case, that crunch you hear (new out-of-box), its a very popular notice that most do hear a crunchy glass-like snapping sound...being that the touch id does have a sensor ring on the outer side, the actual noise your hearing is ........wait for it......MISS-ALLIGNMENT!!!! yes... pop that sucker open, remove bracket....what do you see??. touch id pressed thru and adheared around the ends of the button...and also most cases, not perfectly aligned..that noise is the actual ring brushing against the screen hole cutout causing metal and glass to bind against eachother... re-seating the button will correct the issue..being that theyre so close together, the slightest miss-alignment can cause that annoying crunchy click sound. find a swap that doesn't...ok that one works but now the silent switch is loose!!!!! ive seen it all

  • Hey, I would like to fix firefox on my computer. I can't type on it on any website or the search bar/web bar above! Any and all help would be appreciated. I

    Hey,
    I would like to fix firefox on my computer. I can't type on it on any website or the search bar/web bar above! Any and all help would be appreciated. I had to copy and past this message from explorer.
    Thank you!

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Difference between ANY and ALL operators

    I am learning the basics of ANY and ALL operators.
    Retrieving all employees in Dept 30 whose sal is greater than ANY employees in Dept 20
    SQL> SELECT * FROM EMP;
         EMPNO ENAME           JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH           CLERK           7902 17-DEC-80        800                    20
          7499 ALLEN           SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD            SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES           MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN          SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE           MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK           MANAGER         7839 09-JUN-81       2450                    10
          7788 SCOTT           ANALYST         7566 19-APR-87       3000                    20
          7839 KING            PRESIDENT            17-NOV-81       5000                    10
          7844 TURNER          SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS           CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME           JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES           CLERK           7698 03-DEC-81        950                    30
          7902 FORD            ANALYST         7566 03-DEC-81       3000                    20
          7934 MILLER          CLERK           7782 23-JAN-82       1300                    10
    14 rows selected.
    SQL> SELECT * FROM EMP WHERE DEPTNO=20;
         EMPNO ENAME           JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7369 SMITH           CLERK           7902 17-DEC-80        800                    20
          7566 JONES           MANAGER         7839 02-APR-81       2975                    20
          7788 SCOTT           ANALYST         7566 19-APR-87       3000                    20
          7876 ADAMS           CLERK           7788 23-MAY-87       1100                    20
          7902 FORD            ANALYST         7566 03-DEC-81       3000                    20
    SQL> SELECT * FROM EMP WHERE DEPTNO=30;
         EMPNO ENAME           JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7499 ALLEN           SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD            SALESMAN        7698 22-FEB-81       1250        500         30
          7654 MARTIN          SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE           MANAGER         7839 01-MAY-81       2850                    30
          7844 TURNER          SALESMAN        7698 08-SEP-81       1500          0         30
          7900 JAMES           CLERK           7698 03-DEC-81        950                    30
    6 rows selected.
    SQL> SELECT * FROM EMP
      2  WHERE SAL>ALL
      3  (SELECT SAL FROM
      4  EMP WHERE DEPTNO=20)
      5  AND DEPTNO=30;
    no rows selected
    SQL> SELECT * FROM EMP
      2   WHERE SAL>ANY
      3   (SELECT SAL FROM
      4   EMP WHERE DEPTNO=20)
      5   AND DEPTNO=30;
         EMPNO ENAME           JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7698 BLAKE           MANAGER         7839 01-MAY-81       2850                    30
          7499 ALLEN           SALESMAN        7698 20-FEB-81       1600        300         30
          7844 TURNER          SALESMAN        7698 08-SEP-81       1500          0         30
          7521 WARD            SALESMAN        7698 22-FEB-81       1250        500         30
          7654 MARTIN          SALESMAN        7698 28-SEP-81       1250       1400         30
          7900 JAMES           CLERK           7698 03-DEC-81        950                    30
    6 rows selected.From a book by Damir Bersinic:
    An easy shorthand enables you to remember the distinction between ANY and
    ALL. If a query condition is >ANY, each row in the result set is greater than the lowest value returned. When a query is >ALL, each row in the result set is greater than the highest value returned.
    He meant ; If a query condition is >ANY, each row in the result set is greater than the lowest value returned by the subquery. Didn't he?
    I couldn't find ANY and ALL operators in 10g SQL Reference? Are these operators being replaced by anything?
    Message was edited by:
    for_good_reason

    Look this
    >ANY------- means more than minimum
    Ex: sql> select empno,ename,job from emp
    where sal>ANY(select sal from emp job='CLERK');
    w/o using >ANY the query will be
    sql>select empno,ename,job from emp
    where sal>(select min(sal) from emp job='CLERK');
    >ALL-------- means more than the maximum
    Ex: sql> select empno,ename, job sal from emp
    where sal> ALL(select Avg(sal) from emp Group by deptno);
    w/o using >ALL the query will be
    sql> select empno,ename, job sal from emp
    where sal> (select max(Avg(sal)) from emp Group by deptno);
    sandeep

  • Delete Versions/Delete Master and All Versions w/ Multiple Images Selected

    When I select multiple images from a project (one image has a thicker white line around it and the other selected images have a thinner white line) and then select Delete Master and All Version the ONLY image that gets deleted is the one with the thicker white line. Whereas if I were to choose Delete Version all of the images are deleted?
    Am I not able to perform Delete Master and All Versions on multiple files? It is not working for me.

    Try turning off:
    Edit >> Primary Only
    DLS

  • Any and all color used is gray

    I'm a digital scrapbooker.  AT my wits end,  any and all color I use in Photoshop Elements 12 is grey!  Any photo I drag from the photo bin turns grey scale.  I have uninstalled the program, and reset the preferences.   Please HELP!

    Thank you!  Didn't even realize that was an option!  Boy that would have saved me a weeks worth of frustration!!!  Thank you soooo much!

  • Fan noise/overheating issue? I have a late 2008, 15'' MBP and I'm having a lot of fan noise while just running safari. I don't think this is normal but perhaps it is? Thanks for any and all help!

    Fan noise/overheating issue? I have a late 2008, 15'' MBP and I'm having a lot of fan noise while just running safari. I don't think this is normal but perhaps it is? Thanks for any and all help!

    Runaway applications can increase fan activity

  • Since I downloaded Firefox 6.0, I've experienced significant delays in connecting to any and all websites, generally the 'connecting' arrow spins for no less than 10 seconds..

    The time to connect to any website is infinitely faster using Safari.
    iMac 5.1 2.16 GHz Core 2 Duo, using Bank1 only; 1GB memory.
    My internet provider is xfinity/Comcast.

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • Creating smart playlists: how to combine "any" and "all"?

    I want to create a smart playlist, say with all songs by Miles Davis OR John Coltrane; and I also want to limit the playlist to songs rated above 3 stars. This seems like a really easy task, but I can't do it with the "create smart playlist" box on iTunes. Am I missing something? When I add the "above 3 stars" criteria, I get ALL the songs rated 4 stars or above, whether I add a criteria using "any" or "all."
    I want ONLY songs that are by Miles OR Coltrane AND above 3 stars. Is there any way to do so?
    Thanks!
    ~Peter

    I have to START with the "above 3 stars" criteria, not add it at the end.
    That is not correct. It makes no difference if it's at the beginning, middle or end.
    The smart playlist simply needs to be set up your correctly.

  • I have pc with itunes loaded on seperate hard drive and can't find all music some from ripping in wav files won;t show but any and all i've downloaded from itunes store are there what,s up/ /?

    Having trouble getting my music from seperate hard drive. Recently tried to have my new laptop see and play itunes on my wireless server, but not all music showed up, and now my music on my pc doesn't show all music either. Some wav files from ripping off cd, and some I've imported from windows media show up and all mp3 bought from store is there. But more than half is listed at bottom of library as unknown artist, unknown album etc.. WHATS UP!!!!

    try backing up the adresses on a different computer.
    1) connect iphone to computer
    2) in itunes click "enable disk use"
    3) locate the files in the iphone hard drive
    4) copy and paste them on that computer
    if it does wipe out your adress library, just revert to the backup. Although i don't know where the files will be on your iphone hard drive.

  • Win 8.1 update - sound popping / glitch in MetroTube and all APPS when scrubbing video

    My phone Nokia 1020 was working fine. I then downloaded the over the air update for Win 8.1 and Cyan on Thursday 7th August from O2.
    Since then I have experienced a loud popping / static noise when playing video in all apps (except StoryTeller)
    Using built-in speaker:
    When I play video in any App with a video scrubber and I scrub the time-line and realise the scrubber it makes a loud click or static pop.
    It happens in everything including:
    Mytube
    Metrotube
    Tubepro
    Photos App (i.e Microsoft one - playing a recorded video in they all now have a loud click / static pop)
    Xbox Video App (i.e Microsoft's own App)
    Using Headphones:
    There is no load click (It plays how it used to)
    The odd bit is using the speaker and playing music tracks (mp3s etc) and scrubbing there is no static popping click it plays fine.
    Video In Web Browser Fine:
    Playing YouTube Videos in the web brower there is no popping / static click noise.
    I have just downloaded 'xVideo' App and played a HD Music video in it and used scrubber and there is NO loud click.
    Sound Glitches in Audio Clips at end of recordings in all these Apps:
    Babbel - Learn Spanish
    Coolang - Learn Spanish
    Zeemish - Learn Spanish for Beginners
    its really annoying and makes trying to listen and remember pronunciation of words difficult and frustrating. Phone was ok before Microsoft Windows 8.1 update now have this issue and issue with static build-up causing popping when fast forwarding through
    videos. :( I am feed up
    Conclusion:
    This is software bug? please can anyone help/advise me on how to fix this and if anyone else is having same glitch with 8.1 update :(
    All I can think of to fix is to somehow downgrade to Windows 8 if that's possible? :( *update its not possible using Nokia Recovery as it puts back Win 8.1.
    It is a Software bug introduced in Windows Phone 8.1 update. It effects everything! including
    Microsofts own Video Xbox App and
    Photo App. See other people frustrations on this issue, its been going on since April!!!! please can you fix this is ruining my Windows Phone experience:
    MICROSOFT / NOKIA SEE LINKS TO VIDEO OF SOUND POPPING ISSUE BELOW !!!!!
    http://forums.wpcentral.com/ask-question/296892-popping-sound-when-navigating-through-media-lumia-1520-a.html
    http://forums.wpcentral.com/windows-phone-8-1-preview-developers/278439-must-read-lumia-920-owners-running-8-1-whatsapp.html
    Microsoft need to fix this Video Popping urgently, I have tired to want to like Windowsphone but they keep going backwards and I am loosing faith.
    If is not fixed soon i.e next few months I will never buy a Windows phone again and will recommend the same to friends and family.  I had so much hope and expectation for 8.1 update :( love the Notification bar and battery icon but I can't live with
    all this. :(

    Hello,
    You should ask in the
    Windows Phone forums on the Microsoft Community forums.
    As the Microsoft Community is on a different platform, we cannot move the question for you.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Print & Fax prefs & any and all print commands unresponsive

    Hi all,
    Newb here. I have a 17" mbp running Leopard 10.5.2. I'm networked to a Konica Printer at work and I sent a very large job across. The job was incorrect so I canceled it. That's when the trouble started. Now I can't even open the print dialog in ANY program, nor can I open "print & fax" preferences in sys prefs.
    I've opened the activity monitor and cupsd is just devouring my cpu. I've tried to kill it and restart it in terminal, but honestly, I'm don't really know what I'm doing, nor what the core problem is. Any help is appreciated...is there any more info that you need from me to help troubleshoot?
    Thank you!

    Hi John,
    Thanks for your suggestions. Just so you know, I'm not a "console & terminal" guy. I'm willing to try any of your suggestions, but you're going to have to walk me thru...
    Opened console and there seems to be a constant stream of "cupsd" errors. Every 10sec actually.
    Here's the system log entry:
    "Dec 28 09:10:46 MacPro com.apple.launchd[1] (org.cups.cupsd[86732]): Job appears to have crashed: Segmentation fault
    Dec 28 09:10:46 MacPro com.apple.launchd[1] (org.cups.cupsd): Throttling respawn: Will start in 10 seconds
    Dec 28 09:10:46 MacPro com.apple.ReportCrash.Root[86731]: 2010-12-28 09:10:46.278 ReportCrash[86731:2f03] Saved crash report for cupsd[86732] version ??? (???) to /Library/Logs/DiagnosticReports/cupsd2010-12-28-091046localhost.crash"
    If you'd like to see the entire Diagnostic report, let me know.
    What would you suggest now?

  • VERY disappointed new user - any and all help would be appeciated

    OK, I know there are million post on this topic
    "ITunes Could not connect to the iTunes Store. The network connection was refused.
    Make sure your settings are correct and your network connection is active. then try again."
    I've read for the past 4 days tips to try to get this working, but still can't get it to work and I am beyond frustrated and this is my first Apple anything experience and not loving it like most seem.
    I have removed my new Internet Explorer version, went into Config and unchecked the boxes, looked at my Symantics to do things, but not sure where or how to do it (so probably the problem), etc. I am comfortable around the computer, but not as strong with Firewalls, etc, I just put them on, update them and expect them to work.
    Here are my Diagnostics if that would help someone help me out...
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    IBM 2373311
    iTunes 7.0.2.16
    Current user is an administrator.
    Network Adapter Information
    Adapter Name: {03E1C6E7-E998-4DB9-9693-78F4D8EF883F}
    Description: 11a/b/g Wireless LAN Mini PCI Adapter - Net Firewall Miniport Interface
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 255.255.255.255
    Lease Obtained: Thu Jan 11 17:28:21 2007
    Lease Expires: Thu Jan 11 18:28:21 2007
    DNS Servers:
    Adapter Name: {BA98838E-415E-4A18-A5EC-6411E0D52120}
    Description: AGN Virtual Network Adapter - Net Firewall Miniport Interface
    IP Address: 9.76.143.45
    Subnet Mask: 255.255.255.255
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 9.76.143.45
    Lease Obtained: Mon Jan 15 15:37:36 2007
    Lease Expires: Mon Jan 18 22:14:07 2038
    DNS Servers: 9.0.6.1
    9.0.7.1
    Adapter Name: {67F58AD5-6EEC-402C-8561-EC8D9F32B62F}
    Description: Intel(R) PRO/1000 MT Mobile Connection - Net Firewall Miniport Interface
    IP Address: 192.168.2.13
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.2.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.2.1
    Lease Obtained: Mon Jan 15 15:32:26 2007
    Lease Expires: Mon Jan 18 22:14:07 2038
    DNS Servers: 192.168.2.1
    Network Connection Information
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was unsuccessful.
    The network connection was refused.
    Connection attempt to iTunes Store was unsuccessful.
    The network connection was refused.
    Secure connection attempt to iTunes Store was unsuccessful.
    The network connection was refused.
    Thank you in advanced to anyone that can help me...A virtual beer will be on your way if you do.

    In a command prompt window, type IPCONFIG /ALL
    Do that on both machines and compare the settings for DHCP server. If they are different, change the network configuration in the
    Control Panel
    Network Connections
    (open your network connection)
    Highlight "Internet Protocol (TCP/IP)"
    click on Properties
    assuming both boxes there are set to automatic, click on Advanced - see if there are any entries in that window.
    I'm no network guru - it's possible that your DHCP server is correct - I've just never had a router that wanted that address.

  • Any and all updaters keep crashing,

    Recently my can't update anything. Even running "help" from any of my programs, crashes.
    The message I get is, blah, blah has shut down. Do you want to retry, or send a report.
    This isn't just one program, its all of them. Plus I can't install any new software. I ran the Apple hardware test disc that came with my machine and it declared I had no hardware problems. I checked my memory to make sure I had enough. My machine tells me I hae 21.2 GB of free space.
    Any suggestions would be most appreciated.

    You may find some of this helpful:
    There are no guarantees, but following this procedure when installing updates and upgrades on your Mac will go a long way towards avoiding unpleasant after effects and ‘post-update stress disorder’.
    It is also worth noting that it is an extreme rarity for updates to cause upsets to your system, but they may well reveal pre-existing ones, particularly those of which you may have been unaware. If you are actually aware of any glitches, make sure they are fixed before proceeding further.
    So before you do anything else:
    If you can, make a full backup first.
    Turn off sleep mode for both screen and hard disk.
    1. Repair Permissions (in Disk Utility)
    2. Verify the state of your hard disk using Disk Utility. If any faults are reported, restart from your install disk (holding down the C key), go to Disk Utility, and repair your startup disk. Restart again to get back to your startup disk.
    At least you can now be reasonably certain that your system does not contain any obvious faults that might cause an update/upgrade to fail.
    3. Download the correct version of the COMBO update from the Apple download site. If your car runs on gasoline you would not want to fill the tank with diesel, so don’t try to install the PPC updater on an Intel Mac!
    If you prefer to download updates via Software Update in the Apple menu (which would ensure that the correct version for your Mac was being downloaded), it is not recommended to allow SU to install major (or even minor) updates automatically. Set Software Update to just download the updater without immediately installing it. There is always the possibility that the combined download and install (which can be a lengthy process) might be interrupted by a power outage or your cat walking across the keyboard, and an interrupted install will almost certainly cause havoc. Once it is downloaded, you can install at a time that suits you. You should make a backup copy of the updater on a CD in case you ever need a reinstall.
    Using the Combo updater ensures that all system files changed since the original 10.4.0 are included, and any that may have been missed out or subsequently damaged will be repaired. The Delta updater, although a temptingly smaller download, only takes you from the previous version to the new one, i.e. for example from 10.4.9 to 10.4.10. Software Update will generally download the Delta updater only. The preferable Combo updater needs to be downloaded from Apple's download site.
    Now proceed as follows:
    4. Close all applications.
    5. Unplug all peripherals except your keyboard and mouse.
    6. Install the update/upgrade. Do not under any circumstances interrupt this procedure. Do not do anything else on your computer while it is installing. Be patient.
    7. When it ask for a restart to complete the installation, click restart. This can take longer than normal, there are probably thousands of files to overwrite and place in the correct location. Do nothing while this is going on.
    8. Once your Mac is awake, repair permissions again, and you should be good to go!
    If your Mac seems slightly sluggish or ‘different’, perform a second restart. It can’t hurt and is sometimes efficacious!
    9. Open a few of your most used applications and check that all is OK. In this connection please remember that not all manufacturers of third party applications and plug-ins, add-ons, haxies etc, will have had time to do any necessary rewrites to their software to make them 10.4.10. compliant. Give them a weeks or two while you regularly check their websites for updates. This applies particularly to plug-ins for Safari 3.
    N.B. Do not attempt to install two different updates at the same time as each may have different routines and requirements. Follow the above recommendations for each update in turn.

  • My MacBook Pro can no longer read/play/do anything with DVDs. I tried re-installing OS and Leopard but discs are rejected almost as soon as I put them in. For some reason my computer is rejecting any and all DVDs.

    A few weeks ago I noticed my MacBook Pro was unable to open or read, etc... DVDs. This included DVDs with jpeg photos on them and DVD videos. I thought I might have deleted something necessary to DVD use. So I tried to re-install OS software. This included Snow Leopard and the original two Mac OS X discs. None would open or play or install. All were spit out of computer soon after I stuck them in.
    So now what can I do? Thank you.

    Do you recommend the canned air
    It works just as well as the regular cleaning discs works.  The only disadvantage is that you will need to keep purchasing canned air once it runs out.  Cleaning discs last forever or until the tiny bristles on the disc wears out.  Whichever comes first.
    Any store that sells cds & dvds will also sell disc cleaners.  Prices vary but they all do the same thing - clean your slot drive.

Maybe you are looking for

  • BRAND NEW IPOD SHUFFLE WON"T SYNC WITH ITUNES

    getting an error message of 'the ipod cannot be synced, The disk could not be read from or written to' Tried restoring factory settings, won't restore. Itunes are sitting in library but won't sync to IPOD. HELP!

  • Dell L501x Screen Brightness

    I've gotten most things working on my new laptop but I can't seem to figure out how to adjust my screen brightness. The first thing I noticed was that there was no /proc/acpi/video directory.  So I searched for where it might be: ~ $ find / -iname *b

  • How do I change the my info name in Siri

    I have recently got an iPad wi-fi cellular 16gb. In the Siri settings it has my wife's name so it uses all her contacts. How do I delete her off the iPad and enter my details?

  • How to reinitialize class

    I have made a small game in java, and it works fine. But in the end when the user wins or loses he has the option to exit or to play again. So when he clicks on the button play again then I need somehow to reinitialize the class and to repaint all co

  • Problème paramètrage de filtre sur une mesure Labview

    Bonjour, Je souhaite filtrer une mesure provenant d'une entrée analogique AI1 d'une carte NI-USB 6008. La tâche utilisée (AI-Tâche) est paramétrée sous MAX, pour lire 1k en échantillons continus à une fréquence de 50HZ. La lecture de la tâche DAQmx s