Controlling songs while it is in the dock?

Are there any keyboard shortcuts to pause, skip songs, etc. while iTunes is playing music while it is in the dock?
Thanks.

Media Mike,
I don't have any first had experience with them, but there are a few third party apps that put iTunes controls in the menu bar.
http://www.yousoftware.com/itunes/itunes.php
http://wincent.com/a/products/synergy-classic/
http://dsv.su.se/~joha-ost/icontroller/
Matt

Similar Messages

  • Restart current song while iTunes is not the current active app

    In prior iTunes 11 / Mtn. Lion when using an Apple keyboard the F7 key when pressed would re-start a song that was playing with one press, and go to the previous with 2. This functionality has changed so that now it will go to the previous track with one press.
    Is there a way to change the functionaly back or, add a separate key command that allows me to restart the current song when iTunes is not the currently active app?
    Thanks!

    I have a SteelSeries Shift keyboard, and experienced the same problem after updating to 10.4.
    Found this little piece of software to fix the problem for me:
    http://code.google.com/p/hktunes/
    It's not ideal, as it has to run in the system tray in order to work, but it's way better than being without the functionality of the hotkeys, untill the problem is fixed.
    Hope this works for you guys as well!

  • Trying to download a British song while I'm in the US, is there a way to do this ?

    Hi, I am from the US and I tried downloading a song on my iphone from the uk, it told me that I cannot make the purchase because I am not from that country...I tried changing the country/region option but it told me I had to get rid of my credit balance which I am certainly not doing. Someone please help me out and tell me why people can't make purchases from other countries. Thank you.

    " it told me that I cannot make the purchase because I am not from that country."
    And it is 100% correct.  Youc annot use other countries itunes stores.
    Sorry
    "Someone please help me out and tell me why people can't make purchases from other countries."
    Because Itunes store terms of service agreement does not allow it.
    From the U.K itunes store:
    "The Service is available to you only in the United Kingdom. You agree not to use or attempt to use the Service from outside this location. iTunes may use technologies to verify your compliance."
    http://www.apple.com/legal/internet-services/itunes/uk/terms.html#SERVICE

  • Position controls (casing) while in fullScreen at the bottom of the screen

    Hi,
    I need to be able to position the controls at the very bottom of the screen and have the controls stretch from left to right - anyone know the code to acheive this?
    Having looked up Capabilities in the Help - totally confused me
    Kind Regards,
    Boxing Boom

    Hi,
    No not publishing at 100% x 100% and not using a scaleMode - full screen takeover is set to false. Just need a way to align the controls to stretch along the bottom while in full screen mode. The controls are in a separate mc - would the scaleX help me out here?
    Kind Regards,
    Boxing Boom

  • I lost all my songs while having this error "the ipod cannot be synced. a duplicate filename was specified"

    I checked my ipod in the "My Computer", I think it still has the songs since it has still 5.6 GB that is used. But, when I operate my ipod nano 4th generation, there are 0 songs, and 0 videos. Please help.

    Find yourself a local Linux geek, there is software that can be used to recover your music off the Nano.

  • Unable to get CommandAgrument value for the Edit Button in Gridview Control, Mean while it works for the Delete Button

    I want to show Edit/Delete Button using Ajax's HoverMenuExtender Control , But I also want to show edited record using ModalPopup Extender Control of AjaxCotrolltoolkit , for this I have used below code
    <asp:GridView ID="GridMainCat" runat="server" Width="100%" AutoGenerateColumns="false" DataKeyNames="CATID" OnRowDataBound="GridMainCat_RowDataBound" OnRowCommand="GridMainCat_RowCommand" OnPageIndexChanging="GridMainCat_PageIndexChanging" OnSelectedIndexChanging="GridMainCat_SelectedIndexChanging" AllowPaging="true" PageSize="10">
    <Columns>
    <asp:TemplateField>
    <HeaderTemplate>
    <table width="100%" border="1" style="color: blue;">
    <tr>
    <td width="20%">Catg Id</td>
    <td width="20%">Catg Name</td>
    <td width="25%">Catg Desc</td>
    <td width="35%">Catg Image</td>
    <%-- <td width="20%">Created Date</td>--%>
    </tr>
    </table>
    </HeaderTemplate>
    <ItemTemplate>
    <asp:Panel ID="panel2" runat="server">
    <table width="100%">
    <tr>
    <td width="20%"><%#Eval("CATID") %></td>
    <td width="20%"><%#Eval("CATNAME") %></td>
    <td width="25%"><%#Eval("CATDESC") %></td>
    <td width="35%"><%#Eval("CATIMAGE") %></td>
    <%-- <td width="20%"><%#Eval("CREATEDADTE") %></td>--%>
    </tr>
    </table>
    </asp:Panel>
    <!-----Panel for displaying the edit and delete options in GridView------>
    <asp:Panel ID="panel1" CssClass="HoverMenu"
    runat="server" Height="50" Width="50"
    HorizontalAlign="Left">
    <div>
    <asp:LinkButton Style="padding: 4px;" ID="lnkDel"
    CommandName="Dlt" runat="server" CausesValidation="false" Text="Delete" CommandArgument='<%#Bind("CATID") %>' OnClientClick="javascript:return('Are you sure, do you want to delete Record??')">
    </asp:LinkButton><br />
    <asp:LinkButton ID="lnkEdit" runat="server" Text="Edit" CausesValidation="false" CommandName="Edt" CommandArgument='<%#Bind("CATID") %>' style="padding: 4px;" ></asp:LinkButton>
    </div>
    </asp:Panel>
    <asp:HoverMenuExtender ID="HoverMenuExtender1" runat="server" TargetControlID="panel2" PopupControlID="panel1" PopupPosition="Left" HoverCssClass="Hover"></asp:HoverMenuExtender>
    </ItemTemplate>
    </asp:TemplateField>
    </Columns>
    </asp:GridView>
    To Show ModalPopup I have used following aspx Code:-
    <asp:Button ID="btnShowPopup" runat="server" Style="display: none" CausesValidation="false" />
    <asp:ModalPopupExtender ID="ModalPopupExtender1" runat="server" TargetControlID="btnShowPopup" PopupControlID="PanelEditMainCategory" CancelControlID="btnUpdate" BackgroundCssClass="modalBackground"></asp:ModalPopupExtender>
    <asp:Panel ID="PanelEditMainCategory" runat="server" CssClass="modalPopup" Style="display: none;">
    <table style="border-width: 3px; border-color: lightseagreen;" border="1" align="center" height="300px">
    <tr>
    <th>
    <table>
    <tr>
    <th align="left">Category Id:</th>
    </tr>
    <tr>
    <th align="left">Category Name:</th>
    </tr>
    <tr>
    <th align="left">Category Description:</th>
    </tr>
    <tr>
    <th align="left">Category Image:</th>
    </tr>
    </table>
    </th>
    <td>
    <table>
    <tr>
    <td align="left">
    <asp:TextBox ID="txtCatID" Text='<%#Eval("CATID") %>' runat="server" Enabled="false"></asp:TextBox>
    </td>
    </tr>
    <tr>
    <td align="left">
    <asp:TextBox ID="txtCatName" Text='<%#Eval("CATNAME") %>' runat="server"></asp:TextBox>
    </td>
    </tr>
    <tr>
    <td align="left">
    <asp:TextBox ID="txtCatDesc" runat="server" Text='<%#Eval("CATDESC") %>' TextMode="MultiLine"></asp:TextBox>
    </td>
    </tr>
    <tr>
    <td align="left">
    <asp:TextBox ID="txtCatImage" runat="server" Text='<%#Eval("CATIMAGE") %>'></asp:TextBox>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <th align="left" colspan="2">
    <asp:Button ID="btnUpdate" Text="Update" CausesValidation="false" runat="server" OnClick="btnUpdate_Click" />&nbsp;
    <asp:Button ID="btnCancel" Text="Cancel" CausesValidation="false" runat="server" OnClick="btnCancel_Click" />
    </th>
    </tr>
    <tr>
    <th align="left"></th>
    <td align="left"></td>
    </tr>
    </table>
    </asp:Panel>
    Here is my .CS code :-
    protected void GridMainCat_RowCommand(object sender, GridViewCommandEventArgs e)
    catID = e.CommandArgument.ToString();
    if (e.CommandName == "Edt" && e.CommandArgument != null)
    ModalPopupExtender1.Show();
    Bind_Edit_MainCategory(catID);
    if (e.CommandName == "Dlt")
    Bind_Delete_MainCategory(catID);
    private void Bind_Grid_MainCategory()
    using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString))
    using (SqlCommand cmd = new SqlCommand("USP_FETCH_MAINCATEGORY", cn))
    try
    cmd.CommandType = CommandType.StoredProcedure;
    dt = new DataTable();
    da = new SqlDataAdapter(cmd);
    da.Fill(dt);
    GridMainCat.DataSource = dt;
    GridMainCat.DataBind();
    catch (Exception ex)
    throw ex;
    private void Bind_Delete_MainCategory(string catId)
    using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString))
    using (SqlCommand cmd = new SqlCommand("USP_DELETE_MAINCATEGORY", cn))
    try
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.Parameters.AddWithValue("@CATID", catId);
    cn.Open();
    cmd.ExecuteNonQuery();
    Bind_Grid_MainCategory();
    catch (Exception ex)
    throw ex;
    private void Bind_Edit_MainCategory(string catid)
    using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString))
    using (SqlCommand cmd = new SqlCommand("USP_EDIT_MAINCATEGORY", cn))
    try
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.Parameters.AddWithValue("@CATID", catid);
    cn.Open();
    SqlDataReader dr = cmd.ExecuteReader();
    if (dr.Read())
    txtCatID.Text = dr["CATID"].ToString();
    txtCatName.Text = dr["CATNAME"].ToString();
    txtCatDesc.Text = dr["CATDESC"].ToString();
    txtCatImage.Text = dr["CATIMAGE"].ToString();
    //modalPopupExtender1.Show();
    ModalPopupExtender1.Show();
    Bind_Grid_MainCategory();
    catch (Exception ex)
    throw ex;
    it works fine for HoverMenu Extender, and for the delete button as well. When I click on Delete Button It finds CommandArgument value But as I click on Edit Button It does not find CommandArguement value. Kindly help me to fix this problem

    Do you mean it's firing when you click Edit?. I've replicated your code as below and it worked, try to remove the OnRowCommand run a build and then add the it again:
    protected void Page_Load(object sender, EventArgs e)
    BindGridwithDummy();
    protected void GridMainCat_RowCommand(object sender, GridViewCommandEventArgs e)
    string catID = e.CommandArgument.ToString();
    if (e.CommandName == "Edt" && e.CommandArgument != null)
    if (e.CommandName == "Dlt")
    private void BindGridwithDummy()
    DataTable dt = new DataTable();
    DataRow dr;
    dt.Columns.Add(new System.Data.DataColumn("Test", typeof(String)));
    dr = dt.NewRow();
    dr[0] = "A dummy Data"; //Adds the Dummy Data in the Row
    dt.Rows.Add(dr);
    // Show the DataTable values in the GridView
    GridView1.DataSource = dt;
    GridView1.DataBind();
    <asp:GridView ID="GridView1" runat="server" OnRowCommand="GridMainCat_RowCommand">
    <Columns>
    <asp:BoundField DataField="Test" />
    <asp:TemplateField>
    <HeaderTemplate>
    Button</HeaderTemplate>
    <ItemTemplate>
    <asp:LinkButton Style="padding: 4px;" ID="lnkDel" CommandName="Dlt" runat="server"
    CausesValidation="false" Text="Delete" CommandArgument="1" OnClientClick="javascript:return('Are you sure, do you want to delete Record??')"></asp:LinkButton><br />
    <asp:LinkButton ID="lnkEdit" runat="server" Text="Edit" CausesValidation="false"
    CommandName="Edt" CommandArgument="2" Style="padding: 4px;"></asp:LinkButton>
    </ItemTemplate>
    </asp:TemplateField>
    </Columns>
    </asp:GridView>

  • I  can control quicktime player files only from the dock, my mouse does not not close it, and when selected the window fades below the finder or other opened apps.

    Does anybody have encountered this problem, and if so, do you have a solution I could benefit from?
    Thanks
    Amzerv

    What Windows version?

  • Volume control problem with 30GB iPod 3G, Universal Dock, and Apple Remote

    I just hooked up my 30GB iPod 3G to the Universal Doc and tried the my new Apple remote. The only buttons on the remote that work in controlling my iPod while on the dock are the play/pause and the skip forward and back buttons.
    For some reason the volume up and down buttons don't adjust the volume on my iPod while it's on the dock. Any ideas? Shouldn't the volume up and down work? Or do they only work on the newer iPods?
    Any info appreciated.
    17' Aluminum Powerbook Mac OS X (10.4.3) 30GB iPod 3G
    17' Aluminum Powerbook   Mac OS X (10.4.3)  

    btabz,
    Thanks for your response. No the iPod doesn't respond at all--the volume display doesn't come up or change.
    When I press the play/pause or either skip forward or back on the remote, the iPod, while on the dock, lights up and responds to the command as it should. But when I press volume up or down on the remote the iPod does not respond at all.
    According to Apple's store info on the remote, the volume up/down controls should work. I am wondering if maybe it doesn't work with the 3Gs for some reason. But if that is the case, Apple should indicate that. It is kind of frustrating to not be able to adjust the volume.
    Thanks,
    gerb38
    17' Aluminum Powerbook   Mac OS X (10.4.3)  
    17' Aluminum Powerbook   Mac OS X (10.4.3)   30GB 3G iPod

  • While i'm scrolling the screen is blinking after the OSX 10.9.3 update

    Hi,
    I just updated to 10.9.3 and the screen started to blinking while I'm scrolling up and down with safari (not with firefox, but is now slow). The same thing happens while I'm changeing screens, mission control, etc.
    I own a:
    MacBook Pro
    Retina, 15-inch, Late 2013
    2,3 GHz Intel Core i7
    16 GB 1600 MHz DDR3
    Intel Iris Pro
    OS X 10.9.3 - sadly
    Best regards
    Rodrigo
    PLEASE HELP!!!!!

    Hello,
    I have the same problem when I sroll in Safari or Mail, Mission Control actions, Finder visual animations  and the dock are blinking and very slow to appear.
    I use two external screens and when I click on an other screen, they all blink together, folders on the destop disapear and re-apear few seconds later.
    Other software or applications don't have the probem.
    When I change user to guest user, the problem is the same.
    I made a recovery from a old Tilme Machine backup, je problem was resolved  but a few days later, it comes again...
    Wait and see...
    Here is my EtreChek repport
    EtreCheck version : 1.9.11 (43) - rapport créé 6 juin 2014 10:38:46 UTC+2
    Informations matérielles :
              MacBook Pro (Retina, 15-inch, Late 2013)
              MacBook Pro - modèle : MacBookPro11,3
              1 2.3 GHz Intel Core i7 CPU : 4 cores
              16 GB RAM
    Informations vidéos :
              Intel Iris Pro - VRAM: (null)
              NVIDIA GeForce GT 750M - VRAM: 2048 MB
    Logiciel du système :
              OS X 10.9.3 (13D65) - Uptime: 0 days 1:49:31
    Informations des disques :
              APPLE SSD SM0512F disk0 : (500,28 GB)
                        EFI (disk0s1) <non monté> : 209,7 MB
                        Macintosh HD (disk0s2) / [Démarrage]: 499,42 GB (360,08 GB libre)
                        Recovery HD (disk0s3) <non monté> : 650 MB
    Informations USB :
              Apple Internal Memory Card Reader
              JMicron USB Mass Storage 3 TB
                        EFI (disk1s1) <non monté> : 209,7 MB
                        Backcup (disk1s2) /Volumes/Backcup : 3 TB (2,72 TB libre)
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple, Inc. Keyboard Hub
                        Samsung Electronics Co., Ltd. ML-2160 Series
                        Apple, Inc Apple Keyboard
    Informations Thunderbolt :
              Apple Inc. thunderbolt_bus
    Gatekeeper:
              Mac App Store et développeurs identifiés
    Extensions de noyau :
              [kext loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) Aide
              [kext loaded] com.avast.PacketForwarder (1.4 - SDK 10.9) Aide
              [désengagé] com.elgato.driver.DontMatchAfaTech (1.1) Aide
              [désengagé] com.elgato.driver.DontMatchCinergy450 (1.1) Aide
              [désengagé] com.elgato.driver.DontMatchCinergyXS (1.1) Aide
              [désengagé] com.elgato.driver.DontMatchEmpia (1.1) Aide
              [désengagé] com.elgato.driver.DontMatchVoyager (1.1) Aide
              [désengagé] com.elgato.eyetv.ClassicNotSeizeDriver (1.1.2) Aide
              [désengagé] com.iospirit.driver.rbiokithelper (1.5.2) Aide
    Daemons de lancements :
              [engagé] com.adobe.fpsaud.plist Aide
              [engagé] com.avast.init.plist Aide
              [engagé] com.avast.uninstall.plist Aide
              [engagé] com.bombich.ccc.plist Aide
              [en marche] com.parallels.mobile.dispatcher.launchdaemon.plist Aide
              [engagé] com.parallels.mobile.kextloader.launchdaemon.plist Aide
    Représentants de lancement :
              [engagé] com.avast.userinit.plist Aide
              [engagé] com.parallels.mobile.prl_deskctl_agent.launchagent.plist Aide
    Représentants de lancement pour l’utilisateur :
              [engagé] com.adobe.ARM.[...].plist Aide
              [engagé] com.avast.home.userinit.plist Aide
              [engagé] com.macpaw.CleanMyMac.helperTool.plist Aide
              [engagé] com.macpaw.CleanMyMac.trashSizeWatcher.plist Aide
              [engagé] com.macpaw.CleanMyMac.volumeWatcher.plist Aide
              [en marche] com.parallels.mobile.startgui.launchagent.plist Aide
              [désengagé] jp.co.canon.Inkjet_Extended_Survey_Agent.plist Aide
    Éléments Ouverture :
              iTunesHelper
              Dropbox
              GrowlHelperApp
              FaxServer
              Canon IJ Network Scanner Selector2
              ClipTwin
              Dropbox 2
              Dropbox
              Autodesk 360
    Plug-ins internet :
              Flip4Mac WMV Plugin : Version : 2.2.0.49 Aide
              FlashPlayer-10.6 : Version : 13.0.0.214 - SDK 10.6 Aide
              EPPEX Plugin : Version : 3.0.5.0 Aide
              AdobePDFViewerNPAPI : Version : 11.0.07 - SDK 10.6 Aide
              AdobePDFViewer : Version : 11.0.07 - SDK 10.6 Aide
              Flash Player : Version : 13.0.0.214 - SDK 10.6 Aide
              Default Browser : Version : 537 - SDK 10.9
              JavaAppletPlugin : Version : 14.8.0 - SDK 10.9 Vérifier la version
              QuickTime Plugin : Version : 7.7.3
              iPhotoPhotocast : Version : 7.0
    Extensions de Safari :
              avast! Online Security: Version: 8
              Open in Internet Explorer: Version: 1.0
    Plug-ins audios :
              BluetoothAudioPlugIn : Version : 1.0 - SDK 10.9
              AirPlay : Version : 2.0 - SDK 10.9
              AppleAVBAudio : Version : 203.2 - SDK 10.9
              iSightAudio : Version : 7.7.3 - SDK 10.9
    Plug-ins iTunes :
              Quartz Composer Visualizer : Version : 1.4 - SDK 10.9
    Panneaux de préférences de 3ème partie :
              Flash Player  Aide
              avast! Preferences  Aide
    Time Machine :
              Skip System Files: NO
              Sauvegardes mobiles : Désactivé
              Sauvegarde automatique : OUI
              Disques sauvegardés :
                        Macintosh HD : Taille de disque : 465.12 Go Disque utilisé : 129.77 Go
              Destinations:
                        Time machine 1 [Local]
                        Taille totale : 3 
                        Nombre de sauvegardes total : 13
                        Sauvegardes la plus agée : 2014-05-13 15:47:28 +0000
                        Dernière sauvegarde : 2014-06-06 06:58:51 +0000
                        Taille de la disque de sauvegarde : Excellent
                                  Taille de sauvegarde 3  > (Taille de disque 465.12 Go X 3)
                        Backcup [Local] (Utilisé en dernier)
                        Taille totale : 3 
                        Nombre de sauvegardes total : 13
                        Sauvegardes la plus agée : 2014-05-13 23:20:03 +0000
                        Dernière sauvegarde : 2014-06-06 08:00:47 +0000
                        Taille de la disque de sauvegarde : Excellent
                                  Taille de sauvegarde 3  > (Taille de disque 465.12 Go X 3)
              Détails de Time Machine peuvent ne pas être exacts
              Tous les disques sauvegardée peuvent ne pas être indiquiqués.
    L’utilisation du CPU par processus :
                   3%          WindowServer
                   1%          fontd
                   1%          hidd
                   0%          Safari
                   0%          warmd
    L’utilisation de la mémoire par processus :
              5.46 Go          Finder
              360 Mo          Numbers
              311 Mo          Safari
              229 Mo          WindowServer
              164 Mo          com.apple.IconServicesAgent
    Informations de la mémoire virtuelle :
              53 Mo          RAM Disponible
              6.58 Go          RAM Active
              6.55 Go          RAM Inactive
              1.26 Go          RAM Résidente
              2.16 Go          Pages entrants
              4 Mo          Sorties pages

  • Can't drag files out of the dock folders/stacks

    On Mavericks I'm able to drag files out of the folders/stacks I have on the Dock (Downloads, Documents, etc.) just as you would anywhere on OSX. But, for some reason my mom (Mavericks) and my fiancee (Mountain Lion) can't. I've tried checkin the permissions for those folders (in Get Info) and they have read/write permissions. This only happens in list view, not in fan, grid or automatic. Is there some hidden setting or something else that would allow them to be able to drag files?

    For downloads, go to your user folder downloads and remove them there. Same for Applications. To remove alias from the Dock hold down the command key while dragging them from the Dock.
    If that does't work, go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. Then try a Dock reset.
    Try doing a Dock restart using the following Terminal command:
    killall Dock
    Log out/in and test. If that doesn’t work, you need to look in your user Library/Applications Support/Dock for the .db. Use the Finder “Go To Folder” command. Enter ~/Library/Applications Support/Dock.  Move the .db to your desktop.
    Then try a dock reset.
    Applications/Utilities/Terminal enter the command
    killall Dock
    Log out/in test. If it works okay, delete the .db from the desktop.
    If the Dock is the same, return the .db to where you got them from, overwriting the newer ones.

  • Safari & mail Icons will not stay in the Dock?

    Two days ago I noticed that both Safari & Mail icons were not in the dock. I opened applications and returned them, they just vanish, when I open them from apps they both work OK.
    I have worked round the problem by using an alias and placing that in the dock. Any way I can get back to were I was?

    ed-n-burra wrote:
    Two days ago I noticed that both Safari & Mail icons were not in the dock. I opened applications and returned them, they just vanish, when I open them from apps they both work OK.
    I have worked round the problem by using an alias and placing that in the dock. Any way I can get back to were I was?
    When you launch the applications and Control-click on their icons in the Dock, do you see "Keep in Dock" or "Remove from Dock" in the contextual menu? If the menu says "Keep in Dock," click on that setting.
    Forgive me if you knew this, because I can't tell from your description if this is relevant or not: Normally, application icons will appear in the Dock when the application is running and disappear from the Dock when you quit the application, unless you have set the application icon to stay in the Dock via the above method or by dragging the application file to the Dock. (Dragging the icon out of the Dock will have the reverse effect, the same as choosing "Remove from Dock," and I'm thinking that might be what happened that caused your icons to disappear from the Dock after quitting.) Creating an alias of the application and placing that in the Dock is a workaround, but shouldn't be necessary.
    If the above doesn't work, something odd is going on with your Dock indeed. Post back and people will help troubleshoot further.
    Message was edited by: Rachel R

  • Terminal command to lock and unlock the dock?

    Hello,
    I manage hundreds of iMacs running Yosemite at a school site.  I use parental controls with the lock dock feature turned on.  I would like to periodically unlock the dock to customize it with new icons, but have not found a terminal command that works, or a streamlined process that is time efficient.
    So far I have been individually unlocking the dock in parent controls on each machine, restarting, editing the dock, then re-locking it parental controls, then restarting.  This takes 5-10 minutes per machine). 
    I also tried this command but it didn't work.
    defaults write com.apple.dock contents-immutable -bool true; killall Dock;
    I also tried cloning the parental controls with an exported plist file to all the machines using ARD, which works for all the parental control settings EXCEPT for the lock dock feature.
    Any ideas?
    Cheers,
    Crystal

    Sorry this is probably too late for you, but it may help others seeking this answer, I just had this problem [Mac OS x Yosemite 10.10.2] and found that the following worked for me:
    1. Use Terminal to LOCK the Dock by C&P or typing in:
    defaults write com.apple.dock contents-immutable -bool true
    Then use your preferred method to Log-Out [e.g. Key Combo ⇧⌘Q or  [Top Left Menu] then select Log Out “name”]
    and then Log-In again.
    2. Use Terminal to UNLOCK the Dock by C&P or typing in:
    defaults write com.apple.dock contents-immutable -bool false
    Then use your preferred method to Log-Out [e.g. Key Combo ⇧⌘Q or  [Top Left Menu] then select Log Out “name”]
    and then Log-In again.
    NB. You will be solely responsible for your actions making changes to the Operating System.

  • Can I always keep the ipod in the Dock?

    Can I always keep the ipod nano in it's dock when I'm not using it? Or does it take battery life? I turned it off while it was in the dock, and now it has a battery image on he screen. Does this use the nanos battery in any way, or should I unplug it from USB.

    You probably shouldn't keep it in there for a while. It can overcharge, like a cellphone, and the battery won't last very long.
    If it keeps showing the battery, restart it.
    To restart, hold the middle button and menu at the same time for 10 seconds.
    Try toggling the hold switch, too.

  • Install icon in the dock

    I would like to have an alias of my home folder in the dock, but I want it to be the little "house". If I open my HD, navigate to users and drag the house icon to the dock, it "sticks" in the dock, but it is an icon of a folder, not the house that I want.
    I did try to single click on the folder in the HD and "get info" on the file thinking I could change the icon there, but the icon there is a house.
    I know I was able to do this on a previous machine I had, but I don't remember how I did it.
    Thanks for any help.
    Dave

    David Schlachter1 wrote:
    I would like to have an alias of my home folder in the dock, but I want it to be the little "house". If I open my HD, navigate to users and drag the house icon to the dock, it "sticks" in the dock, but it is an icon of a folder, not the house that I want.
    do you mean it looks like a generic folder? first, control-click on this stack on the dock and select 'display as folder'. see if that fixes it. if that doesn't help try logging out/in.
    I did try to single click on the folder in the HD and "get info" on the file thinking I could change the icon there, but the icon there is a house.
    I know I was able to do this on a previous machine I had, but I don't remember how I did it.
    Thanks for any help.
    Dave

  • My iPod touch is switching songs while in it is playing and the voice control is also causing the music to stop at times.  Help!

    My iPod touch is switching songs while in it is playing and the voice control is also causing the music to stop at times.  Help!

    Do you have "Shake to Shuffle" on?
    http://manuals.info.apple.com/en_US/iPod_touch_iOS4_User_Guide.pdf

Maybe you are looking for

  • Contacts or Address Book Problem on iMac

    I have tried everything but I can get any Contacts (Address Book) to work on iMac using Yosemite and I am using iCloud.  My Contacts work fine on iTouch.  I can login to iCloud on the Web and it is fine.  But click on the Contacts App bottom of iMac

  • Downloading new firmware version still did not solve connection issue!

    I was told my support on live chat to try downloading the newest version of the firmware for my wireless router WRT54G. I had 3.something from 2004. I now have 4.21.1 and I STILL cannot see my router in my View Available Wireless Networks list. I see

  • What is wrong in this simple scritp? ORA-00936

    Hi, I created this simple script (for an Oracle 10g Express Application process) where I'm trying to copy one row from table EMPRESAS_ORGANISMOS to the table EMPRESAS_REVISADAS. Both tables have the same fields. ":P15_ID_EMP" is the text field that c

  • Eligibility criteria for SAP - ABAP associate certification

    Hi, I'm a S/W Engg.(6months exp in SAP-ABAP) in an Indian firm. I want to take this certification: SAP Certified Development Associate - ABAP - SAP NetWeaver 7.0 because I'm on bench and have got no project. From what I've gathered by googling, I've

  • Counting Version 1 and 0

    I have a table with the following... Date id version_num total 01/01/2009 09:00:00 101 0 99 01/01/2009 09:00:00 101 1 100 02/01/2009 09:00:00 101 1 201 03/01/2009 09:00:00 101 1 150 04/01/2009 09:00:00 101 1 99 05/01/2009 09:00:00 101 0 103 05/01/200