You can ignore this question

You can ignore this message. I posted a question but then realized I was just confused and I figured out the answer. However, I don't see a way to delete this message. But please ignore it.
Hi. I just upgraded to ITunes 11.
I also have an IPod Touch. In ITunes 10, I could add documents to some IPod apps by dragging the files into the File Sharing area.
For instance, from the Finder, I could drag ebooks to the Kindle app, scripts to the Final Draft app, Quicktime movies to a video playing app and lots of different documents to an app called GoodReader.
I don't see any way to add documents in this way in ITunes 11. Is there a way to do it?  If not, it seems like a huge drawback compared to version 10.
Thanks.

Do you have a menu file?
"locate applications.menu"
if so then you can use that
"cp /etc/xdg/menus/gnome-applications.menu ~/.config/menus/applications.menu"
Edit the first part to fit what you have.
Else you can generate a xdg menu (https://wiki.archlinux.org/index.php/XdgMenu) and use that. You may have to play around with it a bit to get it right, not sure where I got my menu's But something like this might work:
"xdg_menu --fullmenu"
Last edited by FarmerF (2010-11-07 10:58:35)

Similar Messages

  • Hello  I don't know who to complain to as you do not appear to have a complaints department, despite searching the web, I trust you can pass this to relevant department for action, as I'm very angry over my recent repair.  Following my issue relating to a

    Hello
    I don't know who to complain to as you do not appear to have a complaints department, despite searching the web, I trust you can pass this to relevant department for action, as I'm very angry over my recent repair.
    Following my issue relating to a blank screen 2 weeks ago, your advisor arranged for my iMac to collected by Amsys, for repair and return, this was done and it was returned to me last Tuesday, onWednesday I set up my iMac again and instantly realised I had problems, much worse than before. I called Amsys to inform them of the issue of the computer being very very slow and unable to open iPhoto and pages, and document listing would not show up, plus I had no sound on the mac.They informed me that they had only replaced the video card and what they had done would have not affected the computers performance. He suggested I reinstall OSX again which I did, but this made no difference to the programs, so I called you.
    Your technician on the phone was very good as they have always been, and made an appointment for me to go into the Milton Keynes Apple store the next day at 1 pm, which I did.
    The gentleman on the Genius Bar was very good and was able to run tests on the iMac in my presence, and diagnosed immediately an issue with the sound problem, and advised me that this could not be fixed while I wait and I would need to leave it for repair. I made him aware of the previous repair, and he was able to see via your system, the list of logged issues I have had with this since purchasing in September 2012. I'm sure you can see from the way you record all calls and issues the problems I have had.
    Today I called to ask if my iMac would soon be ready for collection, I was told the repairs had been completed and it was being tested. However to my dismay, I learned of another serious issue relating to the repair carried out by Amsys. I was informed that 6 screws were missing from the the iMac internally, which caused me much distress and concern, they also told me I had to wait even longer as the screws had to be ordered and installed on arrival before I could collect it.
    My issues here are: I trusted the Amsys repairer as it was arranged and recommend by you, it is very evident they are not competent to repair, as they have caused more problems with my iMac on its return, despite enclosing a checklist, fully ticked showing everything working well, it clearly wasn't ! Plus the issue of missing parts (screws) during the repair, I have already expressed my disgust with Amsys, by email and had a response, within the hour, apologising and told me they were looking into this.
    This where I stand on this, I have not had my iMac for  almost two weeks and I do not know when I will get it back. I'm also very worried about what other damage has been caused by Amsys and the quality of my iMac now. I want to know what you, Apple is going to do about this ? I have already been very inconvenienced by this and until now I have been a very loyal apple customer with 2 iPads, and 4 iPhones in our household, not to mention the iMac.
    I feel I have been very let down by this experience, on my iMac, which cost a lot of money, I have also lost a lot of money with lost work and unable to carry out my business without it, and I will be seeking compensation.
    I trust you will take this complaint seriously and pass it to the relevant department for action.
    Yours sincerely
    Des Withey 
    Sent from my iPad
    On 26 Feb 2014, at 11:44, Apple Support <[email protected]> wrote:
    Thanks for contacting us.
    Thanks for contacting Apple Support. If you need more help later, you can open the case below or start a new support request online.
    Case ID:
    Open this case
    Sincerely,
    Apple Support
    Get help online
    Visit Apple Support to learn more about your product, download software updates, and much more.
    Join the conversation
    Find and share solutions with Apple users around the world.
    TM and copyright © 2014 Apple Inc. 1 Infinite Loop, MS 96-DM, Cupertino, CA 95014.
    All Rights Reserved / Privacy Policy / Apple Support / Give us feedback
    On behalf of Apple Distribution International

    Call Apple Customer Relations - 1-800-275-2273.  Ask politely & firmly that you want to be transferred to Customer Relations.  Tell them exactly what you stated in your post.
    GOOD LUCK!
    These are user-to-user forums where everyday folk (volunteers) post questions and offer answers (technical support) to each other.  

  • Could you please answer this questions ?

    could you please answer this questions ......
    2. What can you do with the DBMS_LOB package?
    A. Use the DBMS_LOB.WRITE procedure to write data to a BFILE.
    B. Use the DBMS_LOB.BFILENAME function to locate an external BFILE.
    C. Use the DBMS_LOB.FILEEXISTS function to find the location of a BFILE.
    D. Use the DBMS_LOB.FILECLOSE procedure to close the file being accessed.
    3. Which two statements about packages are true? (Choose two)
    A. Packages can be nested.
    B. You can pass parameters to packages.
    C. A package is loaded into memory each time it is invoked.
    D. The contents of packages can be shared by many applications.
    E. You can achieve information hiding by making package constructs private.
    4. Which three are true statements about dependent objects? (Choose three)
    A. Invalid objects cannot be described.
    B. An object with status of invalid cannot be a referenced object.
    C. The Oracle server automatically records dependencies among objects.
    D. All schema objects have a status that is recorded in the data dictionary.
    E. You can view whether an object is valid or invalid in the USER_STATUS data dictionary view.
    F. You can view whether an object is valid or invalid in the USER_OBJECTS data dictionary view.
    5. You need to create a stored procedure, which deletes rows from a table. The name of the table from which the rows are to be deleted is unknown until run time. Which method do you implement while creating such a procedure?
    A. Use SQL command delete in the procedure to delete the rows.
    B. Use DBMS_SQL packaged routines in the procedure to delete the rows.
    C. Use DBMS_DML packaged routines in the procedure to delete the rows.
    D. Use DBMSDELETE packaged routines in the procedure to delete the rows.
    E. You cannot have a delete statement without providing a table name before compile time.
    6. You need to drop a table from within a stored procedure. How do you implement this?
    A. You cannot drop a table from a stored procedure.
    B. Use the DROP command in the procedure to drop the table.
    C. Use the DBMS_DDL packaged routines in the procedure to drop the table.
    D. Use the DBMS_SQL packaged routines in the procedure to drop the table.
    E. Use the DBMS_DROP packaged routines in the procedure to drop the table.
    7. When using a packaged function in a query, what is true?
    A. The COMMIT and ROLLBACK commands are allowed in the packaged function.
    B. You cannot use packaged functions in a query statement.
    C. The packaged function cannot execute an INSERT, UPDATE, or DELETE statement against the table that is being queried.
    D. The packaged function can execute and INSERT, UPDATE, or DELETE statement against the table that is being queried if it is used in a subquery.
    E. The packaged function can execute an INSERT, UPDATEM or DELETE statement against the table that is being queried if the pragma RESTRICT REFERENCE is used.

    It should be good if you try yourself by training your brain to solve these questions and then share them with us to get more help or advice
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com

  • HT1491 I created my account im my iphone, and now I´m trying to buy with my ipad and the site make questions....so I want to know where do I can find this questions in the site...

    I created my account im my iphone, and now I´m trying to buy with my ipad and the site make questions....so I want to know where do I can find this questions in the site...

    I am very happy to report that my server connection tech, which I called via landline, informed me to : 1. Open Tools 2. Scan down to Clear Recent History 3. Delete All. That was it! Unbelievable! Six hours of searching through the Windows catagories. I checked the results on an internet site, and viola! It was gone! Mozilla Firefox seems to remember the usernames and passwords irregardless of the option window that asks if you if want it to remember the user and password. I finally got in touch with my friend and he said he did not answer yes to the window, even though he was aware of it. No damage. I surely do appreciate everyones' concern in this, now what seems to be, a very simple solution. Cudos to Firefox! Thank-you! P.S. I now have to enter my information at the beginning of any password protected sites...no harm done! My friend is now condemned to the 'user account' site! lol...

  • I am very disappointed with iTunes.  I have 1200 songs and I can't play them.  I try to play them and before one song finish a song starts playing. This then results in hearing two songs at the same time. I will like to know if you can fix this. I feel li

    I am very disappointed with iTunes.  I have 1200 songs and I can’t play them.  I try to play them and before one song finisha song starts playing. This then results in hearing two songs at the same time.I will like to know if you can fix this. I feel like listening with the iTunesplayer is useless.

    I don't know man I too hope apple will do something this new I-tunes blow my top lost my whole tune!!!

  • Some of your Quick time is out of date. You can fix this problem by updatin

    I am running Windows XP SP2 with V 7.1.3 of Quicktime. Every time I lauch QT, I get the error message:
    "Some of your Quick time is out of date. You can fix this problem by updating to the latest version."
    I have gone onto Apple's web site and got the very latest I can see of QT, and no matter what I keep getting this message. I have 400 PC's in a school district that every time they lauch QT it gets this error. There are 2 tabs "update now" or "cancel". If we select Update now, it doesn't update because we already have the latest. So we just have to do "cancel". Has anyone seen this? Please help.
    Regards,
    Mark Chiasson
    [email protected]

    I posted a similar problem. I removed everything and in addition I removed two Quick Time files in System32. I reinstalled everything and it worked. For details read my posted problem and the solution
    Pentium 4 Windows XP Pro

  • Some of your QuickTime software is out of date. You can fix this problem...

    I keep getting this error every time I start itunes or anything that uses QuickTime:
    Some of your QuickTime software is out of date. You can fix this problem by updating to the latest version.
    'Cancel' 'Do It Now'
    If I click 'Cancel', the program seems to run fine. If I click "Do It Now', I get the following:
    Information received from the QuickTime server is in valid. Please try again later.
    I have tried everything and have had this problem since December of '06. Anyone know what this is and how to fix it?
    Thanks
    Dell 8400   Windows XP  

    I found a solution that work for me here: http://forums.ipodlounge.com/showthread.php?t=194033 - see the 5th post in the thread.

  • I have an ipad 2 the game center it know is telling me that game center is currently disabled,you can change this in the settings menu. I do not know were in the settings to look, to fix the settings

    i am getting a message on my ipad2,  i was playing frogger pinball and and the front says  story, challenge, add and store next to store it has a leaf with 3 people icons i clicked on that, and i am getting a message that says i hit game center on the bottom the message reads game center is currently disabled. you can change this in the settings menu I have gone to the settings menu but I am not clear as to were to fix the program.

    i got your response and i went to the restrictions, and I have gone to game center on the bottom it says multiplayer game on adding friends on, i have tried to turn it off and it wont let me, first shoul i try to shut it off and 2nd do you know why it might not be letting me do so it i should be

  • This link is not working. Please if you can access this l...

    this link is not working. Please if you can access this link send me the text from it (as an attachement by email)

    Is the SQL being passed to Access valid for Access:
    SELECT Orders.*, Tickets_detail.OrderID2 AS T2, Tickets_detail.Price, Tickets_detail.ticketname FROM Orders JOIN Tickets_detail ON Orders.OrderID = Tickets_detail.OrderID2 WHERE EventID =24 AND AuthNetCode =1 AND OrderType IS NULL ORDER BY orderID2 DESC
    (that's from your error msg)
    Can you run that on Access?
    I suspect the JOIN syntax might be different.
    Any reason why you're running SQL Server on live, and Access on dev? You're making a bit of a rod for yourself there.
    Adam

  • I finally got my iphone fixed! Just wanted to say thanks to Austin! Not sure if you can see this but thanks a whole bunch! I wish you the best of luck in hopefully going to UT and in running your business!!!!-Tristian!

    I finally got my iphone fixed! Just wanted to say thanks to Austin! Not sure if you can see this but thanks a whole bunch! I wish you the best of luck in hopefully going to UT and in running your business!!!!-Tristian!

    Austin who?

  • Could you please answer this questions. experts

    what is the use of cell editor?
    what are the sequence of operations carried out when transpoting object?
    why we use navigational attributes ?please elaborate

    hi..
    navigational attrib:
    From a system performance point of view, you should model an object on a characteristic rather than on a navigation attribute. The reasons for this are as follows:
    ·        In the enhanced star schema of an InfoCube, navigation attributes lie one join further out than characteristics. This means that a query with a navigation attribute has to run an additional join (compared with a query with the same object as a characteristic) in order to arrive at the values. This is also true for ODS objects.
    ·        For the same reason, in some situations, restrictions for particular values in the navigation attribute (values that have been defined in the query) are not taken into account by the database optimizer when run schedules are created. This can result in inefficient run schedules, particularly if the restrictions are very selective. In most cases, you can solve this problem by indexing the navigation attribute in the corresponding master data tables (see below.)
    ·        If a navigation attribute is used in an aggregate, this aggregate has to be adjusted using a change run as soon as new values are loaded for the navigation attribute (when master data for the characteristic belonging to the navigation attribute is loaded.) This change run is usually one of the processes that are critical to the system performance of a production BW system. This is why, by avoiding using navigation attributes or not using navigation attributes in aggregates, you can improve the performance of this process. On the other hand, not using navigation attributes in aggregates can lead to poor query response times. The data modeler needs to find the right balance.
    BEx Cell Editor: In queries with two structures, you can now reference cells at the intersections of rows and columns.
    chk this link for transportation:
    http://help.sap.com/saphelp_nw04/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/content.htm
    hope it helps..
    all the best...

  • I've lost half of my icons such as calculator, fonts, chess, automator,ichat,ical it it saying that you can use this version with the OSX.  You have version 4.04. And, there is no way to update them.  What do you do?

    I've lost half of my icons such as calculator, fonts, chess, automator,ichat,ical it it saying that you can use this version with the OSX.  You have version 4.04. And, there is no way to update them.  What do you do?

    If I'm understanding you correctly, those apps have stopped working and you are getting a message saying that they won't work with this version of Mac OS X when you try to open them. Is that right? If so, have you moved those apps out of their original locations? That is a bad idea, as it prevents them from being properly updated. If this is what has happened, what version of the system were you running before they stopped working, and what version are you running now, after installing the update that has made them stop working?

  • I have Iphone 4 and its lock.(simlock) from t-mobile. I was call 3 days ago t-mobile and they said 2 day later you can use this iphone. But now I cant use. this phone say its lock. But t-mobile was unlock it.

    go t-mobile and they said 2 day later you can use this iphone. But now I cant use. this phone say its lock. But t-mobile was unlock it.

    fatih ozkan wrote:
    ...T-mobile say you must ask apple.
    Apple does not Unlock phones... T-mobile is giving you the runaround... Contact T-mobile as suggested.

  • You can download this item."  How do I do this?

    I am trying to downloads ringtones to my IPhone 4 from Itunes.  I keep getting a message that says "You must update the latest version of iOS before you can download this item. How do I know which Operating System I have?  How do I update?
    Thanks.

    iOS: How to update your iPhone, iPad, or iPod touch

  • How to changed old apple ID in AppStore? I've already creat new one's but when I go to the AppStore the old apple ID always appear. Hope you can answer my question. Thanks godbless

    How to changed old apple ID in AppStore? I've already creat new one's but when I go to the AppStore the old apple ID always appear. Hope you can answer my question. Thanks godbless

    No, your accounts will remain separate, any content that you download via either account will be tied to that account - so each account will only be able to authorise its own downloads on your computer's iTunes, redownload them, download updates to its apps, and make in-app purchases in its apps.
    Is there are particular reason why you've created a new account ? If it's due to, for example, no longer having access to your old email account then you can update the email address on an account by tapping on the id in Settings > iTunes & App Store and selecting 'view apple id' on the popup and logging into it, via the Store > View Account menu option on a computer's iTunes (click the Edit button to the right of your id at the top of your account's screen), or via http://appleid.apple.com . If you want to re-use the email address on the account that you've just created then you will need to change that first

Maybe you are looking for