Keyboard controls problem

I recently got a Mac for the basically incredible accessibility it gives me, as I am blind. I am pretty familiar with iTunes, but am getting frustrated by two points. Considering I can use iTunes as much as any sighted person, I find the little independence and freedom this gives me really helpful.
So w can anyone tell me if there is any way for me to create a new playlist and then add files to it as I please. I can make an album into a playlist and burn it. But this doesn't help much.
So anyone found a way to get round this?
I have near 5000 songs so cant really trawl through the lot to select the few I want on the playlist to create from the selection.
Thanks.

If you don't want to trawl through your library, how else can you select stuff to put into a playlist?
Perhaps you are looking for a Smart Playlist where stuff can be added automatically according to rules you set up in the playlist?
Patrick

Similar Messages

  • Keyboard sound control problem

    my problem is that i can't control the volume on my ibook using the F3/F4/F5 keys anymore after updating to 10.4.7. the same goes for the F1/F2 keys for the brightness control.
    someone please help
    thank you

    well...it's working now..all of a sudden..i didn't even do anything...this morning the keyboard controls came back

  • How to add keyboard control on our tree.

    hi,
    any body can kindly tell me that how can we add keyboard control on out tree widget.
    I am also anxious to know that when I compiled and loaded the PnlTreeView sample in Debug mode, keyboard control on this panel was also not working fine, it worked sometime and not on the other.
    Can anybody help me for the above 2 questions.

    There's no calendar control per-se, but you have an option - create an HTML image-map prompt - that should work....the only problem would be making it dynamic, but I'm sure you can create a big image map

  • Front Row - Did the 10.6.3 update break keyboard control?!

    So, I came across an odd problem today when helping a friend get her data moved from an old iBook G4 onto a new MacBook Pro 2.66GHz. I walked her through setting up the Migration Assistant while on the phone and drove over to help her install some new software. When I got there, she said she was exploring some of the new apps and Front Row looked like it had frozen on her. It wouldn't respond to the arrow keys, Return, or even Command-Escape. Force-quitting via Command-Opt-Esc worked though. I opened Front Row again, and the same thing happened. For kicks, I grabbed my Apple Remote from my backpack and tried it... it seemed to have control just fine, but the keyboard still didn't. Baffled, I told her I'd look into it more later.
    When I got home, I tried it on my MBP 2.53GHz and... low and behold... keyboard control wouldn't work on my machine either! I find this very strange because less than a month ago under 10.6.2 (I held out on 10.6.3 for quite a while... was just lazy, I admit) I KNOW I had full control without needing any Apple Remote to do it! I used it for photo slideshows, movies, and quicktime trailers with NO PROBLEM at all. Now, suddenly, under 10.6.3, I can't use Front Row without an Apple Remote?! What gives??
    Am I being stupid or blind to some simple setting somewhere, or did Front Row seriously take a change for the worse and disable keyboard control?? If anyone else can chime in here, it would be most appreciated, particularly if you know of a way to help me regain control like I had before without needing an Apple Remote. (For a computer that sits less than two feet away from me, this is a real annoyance!) Thanks for the help!

    I have tried that now, but still the same and now my wi-fi printer has stopped working - it is in the print and scan folder and showing as idle but when I send something to print it appears in the folder but does not print. This too was working fine before the update.
    I am afraid as a newbie Mac person all this is just far too much for me. After spending £1500 on a machine only 4 days ago, over £50 on books from Amazon to make sure I learn about the Snow Leopard OS X platform, I do not expect to have these issues from just a simple update. When I wanted to turn back the system to 10.6.2 Apple Care told me I have to re-load the iMac operating system to put it back into its original state - on a pc you would just have to do system restore and the whole thing would have been corrected in 5 minutes whilst I waited for all the apparent issues to be resolved relating to the current update.
    I have packed it and today it is going back to the shop - sorry I really tried but this experience is just too much for me - but thanks for all your help.

  • Active content vs popups vs keyboard control

    Hi Forum
    I am using Dreamweaver 8 to build a web site to display some
    interactive art work I made in Flash 8. I used Fireworks 8 to build
    a navBar with popups and got that working OK with Dreamweaver, but
    the popups would not show in front of my Flash art work (Active
    Content). I found the fix for that in this forum's archives -- add
    the wmode parameter with a value of opaque for the Flash artwork in
    the XHTML, and set the z-index of the Flash Artwork below the
    z-index of the navBar in the stylesheet. This worked and I thought
    I was home free.
    Then I tried to add a page of my Flash artwork that uses the
    keyboard arrow keys. If wmode/opaque is present, the scroll bar
    intercepts the arrow keys in IE 6 and IE 7. In Firefox, no keyboard
    commands work at all. If I take out the wmode/opaque thing, the
    keyboard controls work fine in IE 6, 7 and Firefox 2, but the popup
    menu cannot be seen.
    Is there a way to make everything work? If I went to a
    commercial product like Project 7, would that solve all 3 problems?
    Thanks.
    Mote

    > Is there a way to make everything work? If I went to a
    commercial product
    > like Project 7, would that solve all 3 problems? Thanks.
    No, it wouldn't. Redesign the page so the menu doesn't
    overlap the flash.
    -Darrel

  • Question about keyboard control in Flash presentation

    I created a presentation in Flash. And I embedded the following keyboard control scripts so that I can pause the slide by pressing "Spacebar" and play it again by pressing "Enter".
    keyListener = new Object();
    var isStopped : Boolean = false;
    keyListener.onKeyUp = function() {
        var keyCode = Key.getCode();
        if (keyCode == 13) {
           _root.play();
    if (keyCode == 32) {
           _root.stop();
    Key.addListener(keyListener);
    I also embedded getTimer script to delay the speed of the flow so that key-point can be loaded one by one.
    stop();
    t = getTimer();
    onEnterFrame = function(){
        if(getTimer()>= t+3000){
            play();
            onEnterFrame = undefined;
    Other than the above keyboard control, I also add four buttons at the right bottom so that I can play and pause, fast forward and rewind by clicking those four buttons.
    Problems:
    1. the 1st and 2nd slide cannot be paused by the above keyboard control command.
    2. the play and pause buttons at the right bottom is not functional in the 1st and 2nd slide
    (i attached the fla for easier understanding of the above descriptions. appreciated if you can help me to figure out what goes wrong.
    http://www.beyondmusic.net/AdBanner/rm_dummy.zip

    remove all your code except your key listener code:
    keyListener  = new Object();
    var isStopped : Boolean = false;
    keyListener.onKeyUp  = function() {
        var keyCode = Key.getCode();
        if  (keyCode == 13) {
           _root.play();
    if (keyCode  == 32) {
           _root.stop();
    Key.addListener(keyListener)
    then change your frame rate so your slides display at the rate you want.

  • Keyboard controls stop working after exiting full screen

    Hi everyone,
    I have QT Pro 7.4.1, with a problem that started after upgrading to the .1 version.
    When I exit full screen mode while watching a movie, the keyboard shortcuts for the player controls stop working. Instead, the computer beeps at me when I press the spacebar, etc. The keyboard controls still work during full screen mode, and after exiting full screen mode, I can still click on the play controls with the mouse to make them work. I've looked through the forum, but can't find anything about this. I also got this problem with one of my school's computers, with the same version of QT Pro. Is anyone else having this problem? Is it a known bug?
    Thanks,
    Irene

    Yep.
    A bug of sorts.
    A "click" on the small screen version will restore QuickTime Player "focus" and then the keyboard inputs will work as designed.

  • Changing DVD player keyboard controls

    Anyone know if it's possible to change the default keyboard controls for the DVD player? I wanted to change the scan/shuttle controls to J,K,L instead of Command-Arrow. Anyone know if this is possible? I'll also post it to the suggestion forum as well. It would be useful for those of us who are used to working in Final Cut Studio and other video programs.
    Jonathan

    It sounds to me like the problem is stemming from the energy savings settings on the mac. By default all iMacs are configured to go to sleep after 10 minutes of inactivity. "Inactivity" is usually defined by the Mac OS as a lack of user input, i.e. through the mouse or keyboard. When watching a DVD you are most likely not fulfilling these user input requirements and the computer is attempting to enter a energy savings mode (sleep mode) while your DVD is playing. The Mac OS should be aware that you are actually using your computer and should not become unresponsive so this sounds like a bug that Apple needs to fix.
    My solution is twofold
    1st: make sure you are using the most current version of OS X by running software update (just incase Apple did fix this bug)
    2nd: Adjust the iMac's "sleep" settings by opening System Preferences and selecting the Energy Saver button. Drag the sliders for system and display sleep to the right when you plan to watch a DVD and return them to normal when finished with your DVD (or your mac will always stay on)
    Hopefully this works for you.
    Thom
    - One extra point: if this problem persists try pressing but not holding the power button on the iMac. This should "wake up" the mac from its perpetual deep sleep. I'm not sure, but perhaps you have wireless keyboard, mouse etc. which may be ignored when the iMac is in a low power or sleep mode.

  • Topic : Alesis Master Control Problem (to previous post unanswered fixed)

    Topic : Alesis Master Control Problem to the original post user: Garrud
    Me:111984cz i have an answer to ur problem.i too had the same problem with cubase 5 ,Nuendo 4 and any of Steinberg softwares with the alesis master-control studio interface. i hope u run into this to learn my fix.
    the problem is check ur midi input on your actual track.make sure it says to (master-control midi port) and not (all midi inputs).as for your device manager settings set to (master-control port) don't set your midi to all or master control port as it will interfere .now it will work perfect.this is for all who have the same problem as well.hope this helps many as i spend a lot of hours of trouble shooting.i almost thought there was something wrong with my mixer.have a great day guys!!
    Original post:
    I've installed the MasterControl driver as instructed and followed the logic set up instructions provided with the MC and all that seems to happen is the Controller acts as a midi keyboard playing different notes rather than the intended function.
    e.g if i touch one of the faders it plays a high pitched note and if i move the fader it acts like the note is being pitched, like a pitch bend function on a keyboard.
    Very strange...cannot figure out whats going on
    PLEASE HELP I'M GOING INSANE
    MacBook Pro Mac OS X (10.6.4)

    I too had the same problem and resolved it.
    However, I have had nothing but issues with the Alesis Mastercontrol since it arrived last week. I purchased mine second-hand as a replacement to a Fire-Wire / Analogue mixer made by Mackie (Onyx 1220). A fantastic amp, but not a control surface.
    I decided I wanted an all rounder, plus something I could place in-front of my iMac so I could work on the fly.
    So...
    1) Alesis Mastercontrol
    2) 1 x Rode microphone in Ch1
    3) 1 x Rode microphone in Ch2
    4) Peavey guitar in Ch3
    I use Logic Studio Pro 8.
    I finally figured out how to get the Alesis to behave and interact with Logic. So far so good!
    I then ran into a series of issues that are frustrating me.
    I cannot get the microphones to mute properly (I would also complain about the poorly position gain dials at the back of the unit for the microphones. So poor indeed that I have purchased an Art mic preamp to slap into the back (not arrived yet) and by-pass the rear controls).
    I also cannot get my semi-acoustic Peavey to record at all. I can hear it through the control desk, but it is much lower than expected and I am getting nothing when I try to record). In record mode the pair of mics record and I can't get the 3rd channel to operate, although it looks like it's functioning on the screen. I try MUTE / SOLO and selecting the correct channel, but nothing!
    All I can do is record myself playing guitar through the mics I cannot switch off.
    Strange machine! Almost wishing I'd not sold my Mackie Onyx 1220 so swiftly.

  • Disabled keyboard controls

    It seems that when I copy the frame number from the Quicktime Player to paste into a text document, the keyboard controls for Quicktime Player are disabled. The Space Bar no longer makes the movie play and stop, the right and left arrows no longer make it step forward or backward. Clicking on the control buttons with the cursor still works, but I have to restart Quicktime Player to get the keyboard controls to work again. Has anyone else had this problem and is there a cure?

    Insert a headphone plug into the headphone port and wiggle it around. Repeat as needed until you succeed in unsticking the digital-analog switch inside the port and the red light in there goes off. This sticking is a common problem. If you can't unstick it yourself, take the machine to an Apple store or AASP for repair.
    When optical digital audio-out is selected, the volume controls on the keyboard are inactive. Volume is controlled by the device that the signal is being sent to.

  • How to add keyboard control key to menu bar as shown

    how to add keyboard control key to menu bar as shown bellow
    Please help

    why, nobody can give me any suggestion?!
    I want to know how to get the specific Control from the Line which does not has this kind of Control. Currently, I met this problem -- the line does not support EnumControl.Type.REVERB, however, I want to exert the reverb control to the line.
    please. thank you very much!

  • Keyboard Control FAIL: Using TAB key on websites directs cursor to nowhere!!! Why?

    (using 2.3 GHz Intel Core i5 MAC MINI, OS X Lion 10.7.5)
    I have always felt safer using the keyboard rather than mouse-clicking on search fields etc. (Open Firefox, hit command+L to the URL I want to go to, then hop to next field with TAB key).
    Most notably frustrating example is with using Google, this has not worked right for some time. Say that you to start to search for something on google "main page" and then it goes to the search results page... You go to edit your search or type your next search and the cursor is flashing inside (but off center) of the search field and inputting text is not an option. Also you may instictively hit ESC (while in search field) when you are being given suggestions you don't want, and then the cursor moves again to this no-man's land in between fields.
    The other KEYBOARD control issue that I have found is this:
    Sometimes you cannot Close Window or even Quit Firefox with the usual keyboard shortcut. Usually when a few windows or tabs are open, or when there is some pop-up survey etc. on page. You can usually ALT+TAB to another open program and then back, and then you can close window or application. But that seems really sketchy to me! This happens all the time on major websites. You can go File-> Close Window or File->Quit, but when you use the same keyboard command the file menu just flashes with an "error tone."

    The TAB key thing was the same in safe mode. Actually I should add/correct, regarding that google search example: when the cursor is in "inbetween fields" positions, actually it lets you type at the END of the text that you had typed in the field (even though the cursor is blinking before the text). and if you "Command A" to replace the text in the search field while cursor in this position, it instead selects all the rest of the text OUTSIDE the field. Just doesn't make any sense. I think this happens with fields on Facebook as well.
    That first issue is just very annoying because it comes up every day and I never get used to it. I would be actually be curious to hear from someone whom this DOES NOT happen to.
    The 2nd issue I mentioned occurs more randomly, and seems more definately a Firefox issue. (When you can only close a window or quit from the drop down menu with the mouse, Command W and Command Q just give an error beep)

  • How Stop Pop-Up Window: Allow Fullscreen With Keyboard Controls?

    How can I cause the cessation of the pop-up window that asks me, "Allow fullscreen with keyboard controls?" 
    In the last month or two (January- February of 2013), this black, semi-transparent pop-up has appeared every time I go to full screen in the game Battle Pirates on facebook.
    After numerous iterations, this confirmation request has become completely unneccessary and nothing more than an unwelcome annoyance.

    Tom,
    Moderators have the authority and privilege to mark answers as correct, in addition to the original posters. ANY moderator here could have marked it that way.
    The Bug report/Feature Request link is not a "vote" page per say, but a place to submit a request for a feature you'd like to see added or dropped from Flash Player. It's the best way to voice a concern or "wish" for a feature, since the development team reads the reports/requests. Management who'd make the decision to add or remove something won't read about it here. They WILL hear about it from development.

  • User Account Control Problems with Premier Elements 7 32 bit in 64 Bit Windows 7

    I found User Account Control Problems in other forums but didn't see much in Premiere Elements, so I hope this helps others who may be having problems with 32 bit programs in a 64 bit computor. When I first got my 64 bit I didn't have problems.
    Back in February I bought a Quad Core Desktop with Windows 7 64 bit. Haven't been on the forum for 7 months since I wrote in regarding importing video with the Pyro AV Link (Premiere Elements Tips and Tricks). I was having problems importing video which started after March 28 sometime, as that was the last time I didn't have a problem importing VHS. Took me a few months off and on to find out what worked.
    I started uninstalling Windows updates and any programs I had installed back to that point in time. Checked after uninstalling each item. The capture screen would come up on a delayed basis but clicking on capture did nothing. Although no driver is required for IE1394 (so they say) I read where some people using the Legacy driver had fixed some problems, so I switched to the Legacy. Seemed to work great (for a few minutes).
    I had even uninstalled and reinstalled PE7 but no difference. Finally I noticed a shield in the PE7 Desktop icon. Thats weird. Never had that before. Just decided to show up after I had done all of the stuff I mentioned. Turns out at some point in time since I've had the computor Windows 7 decided to flag my 32 bit program as misusing the 64 bit system. User Account Control. I never bothered too much with UAC and just clicked on the yes box wen it popped up asking if I wanted this or that to take control of my computor. I tried using the minimum setting for safety reasons, and then finally turned User Account Control off. Bingo! PE7 capture works again and still working.
    While I am not recommending that people arbitrarily turn UAC off, this appeared to be my problem. I would recommed that they try turning it off before uninstallin a bunch of stuff. Having a restore point may or may not have been a fix for me. I think one of the Windows Updates caused the problem but I am not going to uninstall any more stuff at this point, I have not been back on the internet or installed any more updates in my desktop. I am going to use my laptop for internet and used the desktop for video.
    I am guessing this could be a problem for any 64 bit systems trying to use 32 bit programs. IE: XP,Vista,Windows 7 64 bit. In Vista there is also Data Execution Prevention (DEP) which you can turn on or off, supposedly to prevent misuse of memory (as I understand it), but Win7 either doesn't have it or I haven't found where it's located.
    Maybe this has been covered in the forum somewhere and I missed reading it. Hope I am not too confusing. Anyway, whatever feedback you guys have would be great.  

    John,
        Thanks for your answer, and I did check out the link you suggested. However, I have Windows 7 Home Premium as most people have I think, and the XP program was not available. I started with Vista and now have Win 7. I never could navigate around in XP anyway so am content to just leave User Account Control off.
        Interesting side note to turning UAC off is that my desktop seemed to be using more of the CPUs, where half of them were "Parked" as I wrote in also about 7 months ago when I 1st got my desktop. I am pleased to say that video processing seems to go quicker with UAC off. Have to observe things some more to confirm.
        I just thought if others were having problems after installing Windows Updates and leaving UAC off worked then they could possibly pinpoint a problem.

  • A possible solution for "foreight language keyboard shortcut" problem...

    Hi(Bonjour)!
    Everyone know the problem of losy keyboard layout when Final Cut is used with foreight language keyboard. We loose the COMMAND-Q shorcut.
    As PieroF suggested in many posts in final cut express forum, there is a workaround:
    "+I just installed Leopard and I ran into this keyboard shortcut problem.+
    +I can confirm that:+
    +a. the problem exists also with the Italian keyboard (in addition to other languages, as pointed by other posters)+
    +b. the workaround I described in my previous answer works fine :+
    +- close FCE (if open)+
    +- open System Preferences/International/Language+
    +- drag English to the first place on top of the other languages+
    +- drag your own language (Italian in my case) again on top of English (at the end the window will show the same original settings, but something happened in the heart of Leopard...)+
    +- close System Preferences+
    +- open FCE: now all shortcuts work as expected, and are correctly listed with their corresponding menu commands+
    +It's a workaround, it's not convenient (I'd better have this bug fixed), but apparently you have to apply it only once for each system startup.+
    Piero "
    As stated by Piero, you have to follow this procedure after each computer startup.
    I found a way to restore the COMMAND-Q shortcut with the keyboard and mouse system pref panel.
    Simply add Final Cut application and add a +custom shotcut+. Be careful to type exactly the "Quit Final Cut Express" menu.
    This solution allows to restart the computer.
    It's work with Final Cut Express and Final Cut Pro under Leopard 10.5.4.
    Michel Boissonneault

    Hi Michel,
    I like your suggestion because the keyboard shortcuts defined in the system preferences do not require redefinition at each startup. So in theory we could define all missing/wrong shortcuts this way, and not only the cmd-Q as you suggested. Boring, but we could do it once for all.
    The only problem is that I don't know how to define shortcuts for submenus, for example "Render Selection/Both": it seems system preferences allows only to define shortcuts for the menu ("Render Selection" - in this case absolutely useless) but not for the submenu.
    Do you know a way ? (I looked in the help, which didn't... help).
    Piero

Maybe you are looking for