Help with sudden changes

I just turned on my iPlayer to listen to some music whilst browsing the web, shuffle landed on a song from a CD imported onto my iTunes which usually plays perfect now the lyrics are a background mumble and the music remains untouched, any ideas?

Are you having a problem with iTunes or with iPlayer (whatever that is)?

Similar Messages

  • Help with value change events

    I need to be able to use the value change event to handle sorting and control the properties of a multicolumn listbox. I have a slow loop that runs every 10 seconds and acquires new data if it's available. New data is appended directly to the list box. The event structure handles two events. One to change colors of the text when new data is added and another to sort the contents when a user clicks on the column header. The first event seems to work just fine. It only runs when new data is added. The second event is the problem. It runs every time the loop runs and ties up the user interface so that it does not respond.
    What am I doing wrong??
    By the way, it seems that whatever I am doing wrong crashes LabVIEW while I am
    editing the vi. Probably during a partial compile. LabVIEW crashed twice while I was creating this test vi and I don't normally have trouble with LabVIEW crashing. It has crashed in both the transact.cpp and panel.cpp.
    Thanks for any help or guidance you can offer.
    Attachments:
    Event_Handling_Test.vi ‏242 KB

    I have made a few quick modifications, see attached.
    -- The lower loop should probably be a plain loop, since the timing is done by the event structure.
    -- You cannot use a shift register in the upper loop if you want the acquired list to remain sorted.
    Sorry, I am on vacation in the middle of nowhere and only spend a few minutes on this. There are many improvements possible.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Event_Handling_TestMOD.vi ‏200 KB

  • Need help with color change

    How do I change a color photo of a baby and make it black and white and keep the eyes blue?

    And there is a shortcut in Elements to achieve this: http://photoshopelementstips.blogspot.in/search/label/Smart%20Brush
    "Reverse Black and white" is a Smart brush preset that can be used to get what you are intending to do and helps you get this done quickly.
    Regards,
    vaishali

  • Help With IDOC Change Pointers

    Hi guys,
    I'm trying an IDOC to file scenario. The scenario is working fine. I have activated change pointers for my IDOC. My understanding was that if there will be any change in my master tables, then because of the activated change pointers, the IDOC will be generated automatically. But in my case, for eg if i'm inserting any new record say Vendor data, no new IDOC is generated. For sending IDOC i have to use bd14 to send my IDOC explicitly.
    Is my idea of change pointers wrong???Or am i missing some setting, so that the IDOC should be generated automatically???
    Please help me on this guys...
    Regards
    Varun

    <b>Automatic generation of IDOC when we change the MASTER DATA:</b>
    <b>Change Pointers:</b>
    Change documents are working based on change document technique which
    tracks changes made to the key documents (Material Master, Customer Master,
    Vendor Master.Etc) in SAP.
    Changes made to the keydocuments are recorded in the change document Header
    table i.e. CDHDR and Item table CDPOS, Additional change pointers are written
    in the BDCP and BDCPS tables.
    Change pointers technique is used to initiate the outbound process automatically
    when master data is created or changed.
    A standard program RBDMIDOC is sechuled to run on periodic basis to evaluate the change pointers for a message type and starts the ALE process for distributing the Masterdata to the appropriate destination. 
    'Object' is collection of fields of different database tables. T.code for creating an object
    is SCDO.
    <b><u>Configuration for Change Pointers:</u></b>
    1. BD61 Active change pointers generally
         - Check the checkbox "Change pointers activated -generally"
         - Save it
    2. BD50 Active change pointers for Message Type
    Message Type     Active
    MATMAS              Check the check box
    3. SCDO Change Document Objects
         - Check whether the "MATERIAL" is available in the object list.      
    4. BD52 Maintain Table Views
    -     Enter the Message type "MATMAS" and press enter.
    For example
    OBJECT     TABLE NAME     FIELD NAME
    MATERIAL     MARA     BISMT
    5. BD60 Additional data for message types:
    For example:
    Message Type                Function Module                         Table
    MATMAS                 MASTERIDOC_CREATE_SMD_MATMAS        MARA
    6. WE21 Port
    7. WE20 Partner Profile
    8.  BD64 Distribution Model
    as michal said we have to use RBDMIDOC program.for executing this program we need to give message type like
    MATMAS or
    DEBMAS or
    CREMAS
    depending on your requirement.
    go to SE38 tcode
    --- copy RBDMIDOC to zprogram(i'e., ZRBDMIDOC)
    ---create variant
    use this zprogram(ZRBDMIDOC) in BACKGROUND SCHEDULING SM36
    <u>STEPS IN BACKGROUND SCHEDULING:</u>
    Use tcode SM36
    Click Job wizard in the button set
    Click Continue
    Enter Job name and press continue
    Select ABAP program and press Continue
    enter Program name and press continue
    and again press Continue
    set Schedule type immediately and continue
    Select periodic job checkbox, press continue
    Select none of the above and click on other periods – give one-minute and then press create
    Press continue and then press complete.
    recently i did this requirement
    if u have any doubts plz let me know
    Best Regards,
    Srikanth     
    Reward the useful answers and you will get one point yourself

  • Help with folder change library call

    I'm attempting to create a labview function that waits on notification of a change in a folder, specifically a new file to be created. I'm trying to use the FindFirstChangeNotification, referenced here; http://msdn.microsoft.com/en-us/library/windows/desktop/aa364417(v=vs.85).aspx 
    I've attached the .vi I'm having trouble with where I get the notification handle. It returns error 1097 when run. Any ideas?
    -Ian
    Solved!
    Go to Solution.
    Attachments:
    folderChangeNotify_TEST.vi ‏62 KB

    iyeager2012 wrote:
    I'm attempting to create a labview function that waits on notification of a change in a folder, specifically a new file to be created. I'm trying to use the FindFirstChangeNotification, referenced here; http://msdn.microsoft.com/en-us/library/windows/desktop/aa364417(v=vs.85).aspx 
    I've attached the .vi I'm having trouble with where I get the notification handle. It returns error 1097 when run. Any ideas?
    -Ian
    The WinAPI solution you provided has just about all things configured wrongly in the Call Library Node. This version should be correct for both LabVIEW 32 Bit and 64 Bit and also provides the additional calls to be functional. It is not a perfect implementation if you want to wait repeatetly on the same event as there, one should not call FindFirstChangeNotification() each time but instead use FindNextChangeNotification() on subsequent calls. Also for a truely reusable library the creation of the handle, the subsequent reinitialization, and the waiting on the handle should probably be put in their own VI functions each. But it gives at least a correct Call Library Node configuration for the function calls involved.
     One caveat with this VI. It will block the LabVIEW thread in which it is called for the duration of the timeout (indefinitely with the default value that is in the VI) and LabVIEW can not be stopped in this situation, not even with the Abort button, since LabVIEW does not allow to reset a threads state when it is in external code. The only solution to get out of this state is killing the LabVIEW process (usually with the Task Manager) or forcing a change on the directory according to the configured change filter.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions
    Attachments:
    WIN Folder Change Notify.vi ‏21 KB

  • Help! Sudden change in keyboard shortcuts

    Can anyone offer suggestions as to why my keyboard shortcuts for cut and paste have suddenly switched in the edit list from command-c/command-v to option-c/option-v?
    And further, why the "new" shortcuts themselves don't actually appear to work (e.g., I click option-c, but what I'm trying to copy is replaced by a character ç)? I have no keyboard shortcuts for copy and paste at this point. I can use the contextual menu to select copy and paste, but this work-around is fairly tedius.
    I've tried to trash keyboard preferences, without luck. I've searched the forums, but can't find anything on this problem!
    Thanks for any suggestions-

    since moving my user account from my older mac to this mac book I am having similar problems. not with copy and past, but with things like the short cut for the spell checking function in mail, now it apple shift colin.
    dont have afix eather.

  • Help with version changes...

    Ok, I have a CR2 file in aperture. I edit it in photoshop and it saves the changes I've made. In aperture I have two thumbnails of the image. The original and my new 'edited' version.
    Now here's my problem. I'm a conceptual photographer and I like to save different versions a long the way. At the end of any given image I can have 5-15 different versions... Example.
    Original version called dave.tif
    I'll make some changes to the file and (in my normal workflow) save the image as daver1.tif
    I'll make more changes and call it daver2.tif. Etc...
    The problem is that Aperture only seems to created one updated image and any changes I make to it overrides the previous version.
    Is there anyway to save each individual file without having to re-import?
    Thanks
    Dave

    Hi Dave. Aperture stores new versions as a small list of changes, within the Aperture database, and creates new files only when a version is exported. Because other applications cannot work with the list of changes, when an external editor is used (Photoshop in your case), Aperture must create a new file that the external editor can read.
    The new file is effectively another Master. If you make more changes to the externally edited image within Aperture, it creates a new version, i.e., a new list of changes.
    The end result is that a new image file is created from the original Master only when it is exported, whether the export is explicit or because external editing was used.
    If you want to make more changes in the external editor after having done so once, you will create another large image file each time the external editor is called from Aperture. You can avoid the proliferation of large files (the opposite of what you seem to want) by right-clicking (control-clicking) on the browser thumbnail and selecting "Show in Finder", then open the file in Photoshop (or whatever external editor), make changes and save. The image of that externally edited file will update within Aperture, without creating a new file.

  • Help with sudden signal fall

    i have a scaled input from the daq device which varies from 0-200.
    i need to detect sudden signal falls.
    but the signal is fluxuating and is read every 100ms. but its fluxuating values limit me from using Peak detector vis. 
    i made a vi which detects sudden fall of values. it monitors last 5 points and if the difference negative, it's considered as a signal fall.
    please have a look at the vi attached.
    Kudos always welcome for helpful posts
    Attachments:
    Signal_fall_00.vi ‏25 KB

    the floating point digit is rally fluxuating. will it be better if i use integer instead?
    Kudos always welcome for helpful posts

  • Help with Font changes

    Recently, my Pages documents won't allow me to change fonts. Anything I create comes up as Arial. Picking another font in the font window does nothing. What do I need to do? I've already tried deleting preferences for Pages in my User library.

    I had to reset my fonts in the Font Book.

  • Help with iPad change of ownership

    Hi. My son got a iPad the original from his workplace when a coworker was fired.   he wants to be able to use it for apps,books etc.....but when the password comes up it has the old workers email and what ever his password was......can he try and change all this past ownership to make it his own at home or does he have to stop in a apple store? Thanks ......cherrie

    Settings>General>Reset>Erase all content and settings

  • Help with Suddenly Unresponsive Mac

    I have 3.06GHZ, 500GB, 2GB Memory Mac that is a little over a year old running Snow Leopard 10.6.4.
    It has begun recently to exhibit odd behavior, in that when I click ANYTHING (Apple Menu, Finder, an App in the Dock, etc) the beachball comes up for 15 seconds or so before the item is launched. In the past, the machine has been very quick...you click Finder->File, and the drop down menu immediately appears, now it doesn't for 15 seconds or so.
    System log shows a lot of instances of "Message repeated 5 times" or "Message repeated 2 times" etc, but not much of anything else.
    I recently turned on remote login, screen sharing and printer sharing, since I bought A Mac Book Pro and I wanted to print through my Mac and share files. But the Mac was doing this before that.
    I ran the Disk Util and everything checked out OK.
    Any ideas on what could be causing this? (Log files? or something else?)
    Thanks.

    kkathman wrote:
    Of the 500GB I have a little more than half left.
    that's good. your Mac needs @ least 10-15% free space to operate normally.
    It's weird that when I open up my Activity Monitor than over 1GB of my 2Gb is unused, but the Virtual Memory says 163GB. Isn't that a bit outrageous?
    yeah, i would say that's not normal.
    you could try if some of the usual troubleshooting steps bring about a change:
    _*resetting your Mac's PRAM and NVRAM*_
    _*resetting the System Management Controller SMC*_
    booting your Mac into _*safe mode*_, then rebooting normally.
    JGG

  • Help with Find/Change and wildcards

    I have indesign CS5 and I'm working on a document that has math examples throughout such as 9-1=8. The proofreader said we need to change it to have a space between each digit and math symbol to be 9 - 1 = 8. How can I do this? When I go to Find/Change I have the option of wildcards in the Find, but not in the Replace.
    Also the dash in these equations need to be changed to en dashes. How can I tell indesign that anytime is sees such an equation the dash needs to be changed? I don't want to just change all dashes as I have many dashes that need to stay.

    I do it in two steps, first changing the hyphens to en-dashes:
    Find (?<=\d)-(?=\d) which finds any hypen between two digits
    Replace ~= which is the en-dash
    Then use a class to hold the math symbols:
    Find (\d|\))([\+\*/~==])(\d|\()   (this adds open and close parentheses to the search before or after a symbol -- if your equations don't use parentheses you can eliminate the |\( and |\) from the first and last search groups)
    Replace $1 $2 $3  (there's a space between the terms there).
    This does not include radicals, or advanced math symbols in the search, so if your equations use those, you need to add them, and it doesn't put spaces between digits and parentheses.

  • Help with preventing changes form data when submitted by end user

    Hello
    Looking for some kind person to guide me on a need to add a level of security to forms to:
    Allow an end user to complete the form, submit as usual but when the form is received back (added to tracker/response file) the data that the end user submitted cannot be edited in anyway.
    Appreciate any guidance here....
    thanks
    Lawrence

    solved..

  • ALL SHAPES LAYERS SUDDENLY CHANGED COLOR WITH SOME ACCIDENTALLY USED KEYBOARD SHORT CUT PLEASE HELP

    I was working away in photoshop on an INCREDIBLY important file and suddenly all of my shape layers inverted... there is NOTHING in the history and I have literally tried everything I can think of. this is seriously a crucial issue and i really need this to be fixed. if ANYONE knows anything please help. I'm posting a screenshot of what it looked like and what it looks like now. naturally adobe wont let me call them or do ANYTHING to get immediate help with this absolutely infuriating problem so if someone out there could help that would be great. SERIOUSLY regretting using photoshop, it is so infuriating even after 7 years of using it.
    ^^ this is what the colors looked like
    and VV this is what they look like now. as far as i can tell, its only the shape layers that have changed color. I have tried everything and nothing works.
    roughly, all the yellow turned green and all the red and white turned black? I have no idea. please PLEASE someone help me.

    The colors are present even when  I exported Jpegs from the photoshop file. Gamut warning is off. the difficult thing with screenshots is that the image appears in different colors at different sizes... which is bizzare.. at the full shape, some of the shape layers appear fine as pictured below
    and then when i zoom in this happens

  • I'm suddenly in need of help with my Firefox browser (6.0.2)

    Hi there,
    I'm suddenly in need of help with my Firefox browser (6.0.2)
    (OS: I use Windows XP).
    When I open up the browser, all I see is a completely blank white screen, with all the toolbars at the top.
    I know that my physical connections are fine: I've tested the modem, turned the pc off and on etc. and I can also receive/send emails.
    This problem started today, 8th September, 2011 and has never happened before.
    Is it a coincidence that Firefox updated itself just before I logged off yesterday evening? Could it be something to do with this particular new update?
    I've also noted that just before I "open up" Firefox, I now get a small box saying:
    [JAVASCRIPT APPLICATION]
    Exc In Ev handl: TypeError: This oRoot.enable is not a function
    This has never appeared before - I hope it offers a clue a to what is wrong.
    The Browser is not stuck in Safe Mode, by the way.
    Obviously, I can't search for any solutions to the problem on the internet, as I can't physically see any websites!
    (A friend is sending this query on my behalf from their pc)
    Any light you could throw on this confusing problem would be much appreciated. I'd rather not have to uninstall and reinstall Firefox if possible.
    If the only option is to uninstall Firefox and reinstall it from your site, then I'm also in trouble (I can't see the internet or make any downloads).
    In that case, would you be able to send the .exe file as an attachment to my email address? If so, please let me know and I'll give you further details.
    Many thanks in advance.

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    * https://support.mozilla.com/kb/Server+not+found
    * https://support.mozilla.com/kb/Firewalls
    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

Maybe you are looking for

  • Invalid rowid error while running the snapshot agent in transactional replication

    Hi All, I am getting an Invalid rowid error while replicating an large tables i.e around 30 millions rows from oracle(publisher) to sql server(Subscriber) while running the snapshot agent in transactional replication. Its taking around 18 hours and i

  • Bluetooth drivers for thinkpad x200

    it appears my windows 7 32bit thinkpad x200 has question marks at bluetooth adapters in device manager. I have installed the drivers that are available on the website of lenovo producer, but no change is observable.  The device seems to work well, th

  • Need help creating "rubber stamp" logo

    I would like to create what should look like a rubber stamp, to place inside an Indesign document. Something like this (drawn very roughly in Photoshop): However, although I have Illustrator CS4 (Macintosh version) I've never used it and could need s

  • Regarding queryString in jsp

    Hi, In my application, im sending emails and in that im giving link to one of my webpage. Along with the link im passing one name as a query string. Using JavaMailAPI im setting the mail content like this MimeBodyPart mbp1 = new MimeBodyPart(); mbp1.

  • Masking the URL of a Report

    Hi, I've integrated an oracle report with my application (built using apex 2.2). The url however displays the database instance username and password. Is there any way to mask these details of the URL. Thanks in advance. Regards, Priyanka