How to print a LIST of all the layers

Does anyone know how to print a LIST of all the layers. I am not asking how to print the document or the individual layers in a document. I would like to know how to print a LAYER LIST........Anyone?

this script will add a text frame with a list of layer names
var idoc = app.activeDocument;
var itext = idoc.textFrames.add();
itext.contents = "";
var layerCount = idoc.layers.length;
for (i=0; i<layerCount; i++)
    itext.contents += "Layer " + i  + ": " + idoc.layers[i].name + "\r";

Similar Messages

  • How to get a list of all the clients logged in to the network

    hiii
    how can i fetch a list of all the users who are currently logged on the network...so that the list can then be sent to a database..plz tel me what techniqe can followed to do this....thanx

    hiii
    how can i fetch a list of all the users who are
    currently logged on the network...Easy, nobody logs onto the network so this is always nobody.
    You may be asking, how do I determine all the users who have logged in to all the PCs on the network.
    Write a program which is added to each user's Startup a program which updates the database with their details. If you have network scripts, this can be added to the user' network login batch script.

  • How to acquire a list of all the iview in a Portal

    Hi ,
    How can I acquire a list of all the iview in a Portal
    with their name, ID and namespace.
    EP6 SP2 Patch 3
    Regards
    Suneel Razdan

    Please close this duplicate thread.  You have posted identical question twice.  If you do not satisfied with the other answer, tell us.
    Thanks,
    Grodon

  • How to find your "List of all the Registered Apple Products" using your Apple id

    Guys......
    Previously was not able to find my list of registered apple products...  After a bit of dwelling into Apple websites found the right link.
    I saw another post dated back in 2010 which is now archived, but with out the right location to see all ur registered apple products.
    Here is the link...  "https://supportprofile.apple.com/MySupportProfile.do "
    Cheers.

    FINALLY! Thank you!

  • Printing a list of all the files in a folder

    I have a bunch of files in a folder on an external drive.  I frequently add and/or delete files from the folder and would like to print out a simple up-to-date list of the names of the files in the folders on a frequent basis.  In am using Mac OS 10.6.7.
    Anyone have any suggestions.
    Thanks
    Bhubha

    From the terminal  navigate to the directory where the files are and pipe `ls` with whatever options you want to `lp`,
    ls -l | lp
    ls | lp

  • To get list of all the running applications

    Hi all,
    Hey can anyone tell me how i wil get list of all the running applications on windows using java?

    Cant it be done even using Runtime.exec()?Well, sure. Assuming there is a command-line program
    that does what you want. But then your question is
    "What can I run at the Windows command line to get a
    list of all the running applications?" and (I am sure
    you will agree) this is nothing at all to do with
    Java programming.
    I completely agree... I just find it amazing that this guy knows exactly what he wants to do but is unable to point a web browser to a search engine, type in what he wants to do the read the resulting pages.

  • How do I print a list of all my book marks

    How do I print a list of all my book marks ?
    Thanks,
    Earoseme

    Your realize many links to websites have extremely long links.  Do you just want the text of the link without the actual http:// address?

  • How can i display a list of all the names stored in the Mail app?

    When sending an email, the program shows a list of names according to the first and subsequent letters that I type into the To: field. There are times I cannot recall someone's email user name. How can I display a complete list of all the names Mail has stored? I know that I can go to the To: field then type in the letter A, then write down all listings under A, and then repeat for each letter of the alphabet, but there should be an easier method.
    I have perhaps dozens of names in Mail, but only five names in Address Book, so the latter does me no good.

    On the menubar, Mail > Window > Previous Recipients
    Regards,
    Captfred

  • How do i get a list of all the apps i have purchased this year

    how do i get a list of all the apps  have purchased this year and how much each app was

    Check your iTunes purchase history (click your email address in the upper right corner in the iTunes App Store-> log in -> click Purchase History).  This gives you a comprehensive list of apps you've purchased.
     Cheers, Tom

  • How do I print a list of only the album names I have in Itunes.

    I am new to I Tunes.
    I am using Windows 7 on a Dell laptop.
    I would like to print a list of only the album titles I have loaded onto my Ipod Nano.
    Thanks for any and all help.

    trvlnmny wrote:
    Thank you for your reply.
    In ITunes I have gone to Music.
    I then did File >  Print and selected Album Listing.
    When I did this it did display the albums but also all the songs on each album.
    I would like to have the album names only
    After you click "Album Listing," you will see a "Theme" pulldown menu that gives you the choice of "Songs by Album" or "List of Albums."  Choose the latter.

  • How can I print a list of all folders/directories on my MacBook Pro?

    I need to print a list of all directories on my MacBook Pro.  Is there a way to do this already on my Mac, or can anyone recommend the best software to do this?

    And if you pipe the result of Charlie's suggestion to a file, you have it printed out:
    in the Terminal you enter following command first:
    cd <enter>
    now you are in the root folder ... and then:
    sudo ls -R */ | grep '/$' | cat > ~/Desktop/folders.txt <enter>
    to explain:
    certain folders are only readable by the administrator. That means, we precede this command by sudo; you have to enter your password
    ls means list, the switch -R means recursive
    | means pipe the command to an other command and grep is taking only the entries finishing with a / (that means folders only, not the files
    then we | pipe everything to the command cat, which puts the found folders into a file on the desktop ...
    hope this helps

  • My iMac holds my main iTunes account.  How do I find out a list of all the devices that are authorized from this computer?

    My iMac holds my main iTunes account and it shows 4 devices are authorized to play iTunes.  I can only name 3.  How do I find out a list of all the devices that are authorized from this computer?

    I don't believe this is possible, but you can deauthorize all your computers and start over if you are concerned.
    See here
    Best of luck

  • How do you get a list of all the trigger DDLs?

    I want to get a list of all the DB trigger DDLs of owner 'ABS'. I want to do it using 1 SQL statement.
    This is what I ran:
    SELECT
    TO_CHAR(DBMS_METADATA.GET_DDL('TRIGGER', TRIGGER_NAME, 'ABS'))
    FROM
    ALL_TRIGGERS
    WHERE
    OWNER = 'ABS';
    I get this error: [1]:
    (Error): ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: 4414, maximum: 4000)
    Then I looked up in the web and they ask to use DBMS_LOB.SUBSTR instead. So I do that:
    SELECT
    DBMS_LOB.SUBSTR(DBMS_METADATA.GET_DDL('TRIGGER', TRIGGER_NAME, 'ABS'), 32767, 1)
    FROM
    ALL_TRIGGERS
    WHERE
    OWNER = 'ABS';
    Now I get this error:
    [1]: (Error): ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at line 1
    Looks like you cannot show more than *4000* chars. There are 43 triggers whose DDL is more than 4000 chars long.
    Why is this?
    How can I solve my problem?
    Edited by: Channa on Feb 16, 2010 9:45 PM

    Herald, fantastic news. SET LONG did the trick.
    But I had to put a very big value. 32000 was not enough. Otherwise some of the triggers (big ones) got cut off.
    This is my complete code which did it.
    SPOOL F:\Channa\zz_zzTemp\Binuka\OutPut.txt
    set trimspool on
    set pages 0
    set long *1000000000*
    set linesize 32767
    SET TERMOUT OFF
    SELECT DBMS_METADATA.GET_DDL('TRIGGER', TRIGGER_NAME, 'ABS')
    FROM ALL_TRIGGERS
    WHERE OWNER = 'ABS' AND trigger_name NOT LIKE 'BIN$%'
    SPOOL OUT
    THANKS A LOT. REALLY APPRECIATE IT.
    P.S: I had to include the NOT LIKE 'BIN$%' in the where clause because otherwise I got this error:
    ERROR:
    ORA-31603: object *"BIN$cqXDSqghrFngQKjAJAovgw==$0"* of type TRIGGER not found in
    schema "ABS"
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA", line 2805
    ORA-06512: at "SYS.DBMS_METADATA", line 4333
    ORA-06512: at line 1
    no rows selected
    I THINK BIN$... triggers are dropped triggers in the DB recycle bin???
    Edited by: Channa on Feb 17, 2010 2:58 AM
    Edited by: Channa on Feb 17, 2010 3:01 AM

  • HT201272 My laptop pc got stolen, how can I get hold of all the itune music I purchased, or at least get a list for insurance?

    My laptop pc got stolen, how can I get hold of all the itune music I purchased, or at least get a list for insurance?

    Yu can try this program.  If unsuccessful, the contents of the iPod will be deleted if yu update/restore with the iPod in recovery mode.
    RecBoot: Easy Way to Put iPhone into Recovery Mode | Jaxov

  • How to get - List of all the ad hoc reports in BO 5.1?

    Hi All,
    I want list of all the ad hoc reports in BO 5.1.
    Name of ad hoc report and user would be ideal.
    How can i get? Does anybody know how to get the list?
    Please help me.
    Thanks in advance!
    Amol Mali

    Wrong forum. Please mnove or reporst to Legacy forum:
    SAP BusinessObjects BI Legacy Products
    Ludek

Maybe you are looking for

  • Other computers in network can't find me

    We use the following computers: Dual PowerPC G5 Intel iMac G4 Powerbook Airport Extreme Since upgrading my G5 PowerPC to 10.4.7 last week, the iMac can connect to me via FTP only and cannot access the external hard drives at all, while the Powerbook

  • Adobe Galleries in iWeb 2? html snippets?

    What I am seeking is a better grasp of how the html widgets work - but most specifically, I want to put some Adobe galleries on my iWeb site. iPhoto doesn't seem to do the trick I want - which is a horizontal row of thumbnails in one pane/frame & the

  • I do not have a search bar in my firefox browser

    I have an address bar which does not contain a search bar, how can i add search bar

  • Includes and Nav bar help. Please.

    Hello everyone, I am updating my website (www.adambenderdesigns.com/home.shtml) using dreamweaver. I am using an include <!--#include virtual="top.shtml"--> so that I only have to maintain my navigation bar in one place "top.shtml". Since each page i

  • Password Restriction

    Hi, I have a reqmt where in material Master after change in material the QA approal should be done. For that QA approval i have developed a report program where the report fetch the material number that has been changed. From this report the user wil