How do u change the name of a folder on the iPad?

How do u change the name of a folder on the iPad?

Hold an icon until they start to wiggle (like when you put them in the folder), open the folder by tapping it, and just tap on the name of the folder. Alternatively, you can do this from iTunes too.

Similar Messages

  • When I type into Spotlight the name of a folder on the desktop, it doesn't appear in Spotlight. Could you please tell me how to get it right? Thank you.

    When I type into Spotlight the name of a folder on the desktop, it doesn't appear in Spotlight. Could you please tell me how to get it right? Thank you.
    And, what do I do if one of the harddisks on my Mini (2010, SL Server) starts misbehaving?

    Which security software (firewall, anti-virus) do you have?
    Try to boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps and allows to delete the Firefox program folder.

  • How do I change the name of a folder in the System/Library folder?  I need to do it to debug a program that is crashing due to some plugins in the folder.

    The program crashing is Sibelius 6 -- music scoring program.  I am running OSX 10.7.5.
    I changed a playback setting in the program and then it crashed.  Sibelius playback device needs to get permissions to use audio plugins and there are some that are, apparently, Sibelius 6 doesn't like.  I don't need to use these vat, AU plugins in this program, but I cannot get out of it unless I change the name of the folder Sibelius looks to for those  plugins. 

    Choose Utilities from the Finder's Go menu, open the AppleScript Editor, and run:
    do shell script "mv '/System/Library/oldname' '/System/Library/newname'" with administrator privileges
    (126015)

  • How I can change this query, so I can display the name and scores in one r

    How I can change this query, so I can add the ID from the table SPRIDEN
    as of now is giving me what I want:
    1,543     A05     24     A01     24     BAC     24     BAE     24     A02     20     BAM     20in one line but I would like to add the id and name that are stored in the table SPRIDEN
    SELECT sortest_pidm,
           max(decode(rn,1,sortest_tesc_code)) tesc_code1,
           max(decode(rn,1,score)) score1,
           max(decode(rn,2,sortest_tesc_code)) tesc_code2,
           max(decode(rn,2,score)) score2,
           max(decode(rn,3,sortest_tesc_code)) tesc_code3,
           max(decode(rn,3,score))  score3,
           max(decode(rn,4,sortest_tesc_code)) tesc_code4,
           max(decode(rn,4,score))  score4,
           max(decode(rn,5,sortest_tesc_code)) tesc_code5,
           max(decode(rn,5,score))  score5,
           max(decode(rn,6,sortest_tesc_code)) tesc_code6,
           max(decode(rn,6,score))  score6        
      FROM (select sortest_pidm,
                   sortest_tesc_code,
                   score,
                  row_number() over (partition by sortest_pidm order by score desc) rn
              FROM (select sortest_pidm,
                           sortest_tesc_code,
                           max(sortest_test_score) score
                      from sortest,SPRIDEN
                      where
                      SPRIDEN_pidm =SORTEST_PIDM
                    AND   sortest_tesc_code in ('A01','BAE','A02','BAM','A05','BAC')
                     and  sortest_pidm is not null 
                    GROUP BY sortest_pidm, sortest_tesc_code))
                    GROUP BY sortest_pidm;
                   

    Hi,
    That depends on whether spriden_pidm is unique, and on what you want for results.
    Whenever you have a problem, post a little sample data (CREATE TABLE and INSERT statements, relevamnt columns only) for all tables, and the results you want from that data.
    If you can illustrate your problem using commonly available tables (such as those in the scott or hr schemas) then you don't have to post any sample data; just post the results you want.
    Either way, explain how you get those results from that data.
    Always say which version of Oracle you're using.
    It looks like you're doing something similiar to the following.
    Using the emp and dept tables in the scott schema, produce one row of output per department showing the highest salary in each job, for a given set of jobs:
    DEPTNO DNAME          LOC           JOB_1   SAL_1 JOB_2   SAL_2 JOB_3   SAL_3
        20 RESEARCH       DALLAS        ANALYST  3000 MANAGER  2975 CLERK    1100
        10 ACCOUNTING     NEW YORK      MANAGER  2450 CLERK    1300
        30 SALES          CHICAGO       MANAGER  2850 CLERK     950On each row, the jobs are listed in order by the highest salary.
    This seems to be analagous to what you're doing. The roles played by sortest_pidm, sortest_tesc_code and sortest_test_score in your sortest table are played by deptno, job and sal in the emp table. The roles played by spriden_pidm, id and name in your spriden table are played by deptno, dname and loc in the dept table.
    It sounds like you already have something like the query below, that produces the correct output, except that it does not include the dname and loc columns from the dept table.
    SELECT    deptno
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
               SELECT    deptno
               ,          job
               ,          max_sal
               ,          ROW_NUMBER () OVER ( PARTITION BY  deptno
                                              ORDER BY          max_sal     DESC
                                )         AS rn
               FROM     (
                             SELECT    e.deptno
                       ,           e.job
                       ,           MAX (e.sal)     AS max_sal
                       FROM      scott.emp        e
                       ,           scott.dept   d
                       WHERE     e.deptno        = d.deptno
                       AND           e.job        IN ('ANALYST', 'CLERK', 'MANAGER')
                       GROUP BY  e.deptno
                       ,           e.job
    GROUP BY  deptno
    ;Since dept.deptno is unique, there will only be one dname and one loc for each deptno, so we can change the query by replacing "deptno" with "deptno, dname, loc" throughout the query (except in the join condition, of course):
    SELECT    deptno, dname, loc                    -- Changed
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
               SELECT    deptno, dname, loc          -- Changed
               ,          job
               ,          max_sal
               ,          ROW_NUMBER () OVER ( PARTITION BY  deptno      -- , dname, loc     -- Changed
                                              ORDER BY          max_sal      DESC
                                )         AS rn
               FROM     (
                             SELECT    e.deptno, d.dname, d.loc                    -- Changed
                       ,           e.job
                       ,           MAX (e.sal)     AS max_sal
                       FROM      scott.emp        e
                       ,           scott.dept   d
                       WHERE     e.deptno        = d.deptno
                       AND           e.job        IN ('ANALYST', 'CLERK', 'MANAGER')
                       GROUP BY  e.deptno, d.dname, d.loc                    -- Changed
                       ,           e.job
    GROUP BY  deptno, dname, loc                    -- Changed
    ;Actually, you can keep using just deptno in the analytic PARTITION BY clause. It might be a little more efficient to just use deptno, like I did above, but it won't change the results if you use all 3, if there is only 1 danme and 1 loc per deptno.
    By the way, you don't need so many sub-queries. You're using the inner sub-query to compute the MAX, and the outer sub-query to compute rn. Analytic functions are computed after aggregate fucntions, so you can do both in the same sub-query like this:
    SELECT    deptno, dname, loc
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
                   SELECT    e.deptno, d.dname, d.loc
              ,       e.job
              ,       MAX (e.sal)     AS max_sal
              ,       ROW_NUMBER () OVER ( PARTITION BY  e.deptno
                                           ORDER BY       MAX (sal)     DESC
                                          )       AS rn
              FROM      scott.emp    e
              ,       scott.dept   d
              WHERE     e.deptno        = d.deptno
              AND       e.job                IN ('ANALYST', 'CLERK', 'MANAGER')
                  GROUP BY  e.deptno, d.dname, d.loc
              ,       e.job
    GROUP BY  deptno, dname, loc
    ;This will work in Oracle 8.1 and up. In Oracle 11, however, it's better to use the SELECT ... PIVOT feature.

  • HT2513 How do you change the name of a reminder in the reminder list.  I right click and then choose "get information"  I can change the colour of the reminder but when I type in the name that I want and then press enter the name stays as "untitled".

    How do you change the name of a reminder in the reminder list.  I right click and then choose "get information"  I can change the colour of the reminder but when I type in the name that I want and then press enter the name stays as "untitled"

    Jerry,
    Thanks for replying again. I've got a little bit further thanks to you. I tried the US keyboard layout as you seemed pretty definte that it should work. This time I applied the setting and also started the language toolbar and selected it from there.
    Hey presto, I've got the @ where it should be. Excellent.
    However the single quote ' works in a weird way. When I press it, it doesn't show up on the screen. But when I press another key, I get the single quote plus the next key I press. When I press the single quote twice, I get 2 of them. This is also the same with the SHIFT ' key. i.e. for the double quotes.
    Very strange. I'll look at other keyboards and see where that gets me.
    Thanks,  Maz

  • How can I change the name of a PDF in the bookcase

    How can I change the name of a PDF in the bookcase

    Hi,
    It is possible to edit the dictionary, but not recommended.
    It is recommended to use exp/imp to "rename" a schema
    HTH
    Laurent

  • How do I change the name of my iTouch?   The one visible when you sync in iTunes

    How do I change the name of my iTouch ?   The one visible when you sync the device in iTunes, same as for iPhones, etc

    I just discovered the answer  (first time trying to search the Q&A)    It works - thanks anyway    https://discussions.apple.com/message/10839258#10839258

  • How do you change the name of a PDF in the iPad app?

    How do you change the name of a PDF in the iPad app?

    In the file browser view, navigate to Help > Handbook > Copy, edit, delete, manage.
    Please take a look at a section titled "Renaming files".
    Hopefully, the Help > Handbook and What's New are informative for you to get started on Reader for iOS.  If not, let us know what's missing.

  • How Do You Change The Name Of A Folder?

    I have a very simple, almost ashamed to ask, question. How do you change the name of a folder? As always, thanks in advance.
    800 mz Flat Screen iMac   Mac OS X (10.4.4)  

    Howard,
    Click (select ) the folder, hit the return key and start typing...
    Before you start typing, you can go to the beginning, or the end of the title without deleting the title by using the back/forward arrow keys.
    ;~)

  • How do you change the name of a folder/file on an expansion drive

    How do you change the name of a folder/file on an expansion drive or external hard drive?

    The same way you change it on the internal drive; click on the name and wait a second or two for the field to drop into editing mode, then just type the new name. Or Get Info on the file/folder and change the name there.
    Regards.

  • Will someone please tell me how to change the name of a folder I created in Pages and saved to the cloud?

    Will someone please tell me how to change the name of a folder I created in "Pages" and saved to the "Cloud"? Thanks.

    Go to the open dialog in Pages and select iCloud.
    Click on the folder that you created on iCloud to open the folder.
    On the lower half of the window (the open folder) click on the name of the folder.
    Once you click and select the folder's name it should be editable.

  • How do I change No Name camera to the actual camera name?

    How do I change No Name camera to the actual camera name when importiing pictures from my camera?

    (1) Connect your camera.
    (2) If necessary, quit apps until you can see your camera's "No Name" iCon on your desktop.
    (3) Click to highlight "No Name".  Then key in the name you want to substitute.
    (4) Press return to finish.
    (5) Use the Finder > File > Eject menu command to eject your camera before unplugging.
    (6) If you did it right, next time you connect your camera, the name you like will show.
    Message was edited by: EZ Jim
    Mac OSX 10.8.2

  • How do you change the name of your nano in the new itunes

    How do you change the name of your nano in the new itunes

    In iTunes I don't know but when you open your finder you can see it on the left and rename it there.

  • How to change the name showing up underneath of the app name

    as the title described, how can I change the name shows up underneath of the app name when you search in the app store. Is it called "publisher name"?

    Set-Mailbox -Identity Mailbox1 -PublicFolder -Name NewName1 -Alias NewName1 -PrimarySMTPAddress [email protected]
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • My new iMac is seen as my old Mac Pro on the network because I used Migration Assistant. How do I change its name to iMac?

    I used Migration Assistant about 4 months ago to move everything across to my new iMac. Since then instead of being recognised as an iMac it's seen on the network and other places as my Mac Pro.
    How do I change its name to iMac?
    Cheers,
    David
    Mac OS X 10.6.8

    Hello David. Open System Preferences > Sharing. At the top you will see Computer Name and the old Mac Pro name. Highlight this and change to the preferred name.
    Sometimes you also need to use the Edit button under the name. But if you change the name in the first view and then press the Edit button, it should show the new name you just set.

Maybe you are looking for

  • How to clear text fields when the user navigates back to the screen

    Hi, Does anyone have any idea on how to clear the text input fields and dropdown boxes when the user navigates back to the screen, say for e.g. create screen? My issue is that i have plenty of fields in the create screen within a form. Is there a way

  • Read & Filter Multiple .wav files, Export Filtered SPL

    Hi I'm searching for tips on how to use LabVIEW to read multiple .wav files, then filter them, then export just the calculated SPL values to a "database friendly format". Basically I want a solution that allows me to point to several files, then pres

  • Trouble importing photos

    I recently rebuilt my Library and importted most of the photos from my backup hard disk. However some of my photos didn't import, and I get an error stating that they photos can't be imported because the files are not recognized by iPhoto. Does anyon

  • Re-installing Adobe Acrobat 9 Pro

    Our Company recently upgraded our computers to Windows7, I need to re-install my Acrobat 9 Pro.  I have my product ID.  I just can't find an easy link through the Adobe page.

  • Global binding text disappears once you move to the next field

    I have created this pdf form using Acrobat 7 Professional. now I have ver.8. I also have Adobe Desinger 8.0. I wanted two field to have the same data, so I used global binding. In the preview mode, it works fine. I have add reader extension rights an