Illustrator Scripting - RasterItems.Add

Ask a Question related to Adobe Illustrator Windows, Design and Development.

  1. #1

    Default Illustrator Scripting - RasterItems.Add

    I'm trying to run Illustrator from Visual Basic to build ads (text and graphics) from a database.

    I get an "Internal Error" when trying to import a EPS file (cmyk bitmap saved in PhotoShop) into Illustrator. Importing a JPG file works fine.

    Dim iDoc As Illustrator.Document
    ....
    Dim Itm As Illustrator.RasterItem
    ....
    Set Itm = iDoc.RasterItems.Add
    ....
    Itm.File = "C:\test.jpg"
    Works OK
    Itm.File = "C:\test.eps"
    Gives "Internal Error"

    I've tried importing (File/Place) the EPS in manually in Illustrator and it works fine. It's only when importing it via the script I get the error.

    I use Illustrator 11 on WinXP.

    Any ideas?

    3D Studio
    Göran Cassel
    Göran_Cassel@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. VB Scripting Illustrator 10 - Automating PDF conversion
      I'm writing a script that opens .ai and .eps files in Illustrator, and runs the SaveDocsAsPDF script, then closes. Unfortunatley, I've found the...
    2. Scripting Illustrator filters: Possible?
      I've just been introduced by the scripting features of adobe's Illustrator and Photoshop. Before I used other scripting environments to create image...
    3. Adobe Illustrator 10 VBA Scripting Questions...
      I recently purchased "Adobe Illustrator Scripting with Visual Basic and Applescript" and I am having problems running a sample program that links to...
    4. Illustrator - scripting with visual basic
      Hello, work with illustrator and do some scripting with visual basic. I work with illustrator 9 an a PC Win. I have programmed some routines to...
    5. Illustrator CS Scripting Instruction or Tutorials
      Can someone point me to a person, place on the internet (tutorials) or book to learn scripting in Adobe Illustrator CS. Please?!?!?
  3. #2

    Default Re: Illustrator Scripting - RasterItems.Add

    Göran,

    Suggest you post in the Illustrator Scripting Forum:

    [url]http://www.adobeforums.com/cgi-bin/webx?14@@.3bb50db0[/url]


    LenHewitt@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139