Code Monkey home page Code Monkey logo

Comments (25)

ignaciogiri avatar ignaciogiri commented on August 18, 2024 1

Still works with CC 2017 on Mac OS Sierra by following @joeherold hack. This is easily the most useful extension ever, I don't know why they make it so complicated. The new Asset Export is nice, but you have to "drag" every single item... Long live Illustrator-Layer-Exporter.

from illustrator-layer-exporter.

philswan avatar philswan commented on August 18, 2024

An update would be greatly appreciated! Thanks

from illustrator-layer-exporter.

PeterVermont avatar PeterVermont commented on August 18, 2024

Yes please!

from illustrator-layer-exporter.

mos6581 avatar mos6581 commented on August 18, 2024

Hi, please, make an update for CC 2015..great extension, though with CC 2015 workflow is completely corrupted..

from illustrator-layer-exporter.

denysbutenko avatar denysbutenko commented on August 18, 2024

👍

from illustrator-layer-exporter.

Grawl avatar Grawl commented on August 18, 2024

👍

from illustrator-layer-exporter.

fsmythe avatar fsmythe commented on August 18, 2024

👍

from illustrator-layer-exporter.

fsmythe avatar fsmythe commented on August 18, 2024

I've rolled back to CC 2014 because this extension is so vital to my workflow!

Link on how to do so:

https://blogs.adobe.com/kevinmonahan/2014/01/29/revert-to-a-previous-version-of-premiere-pro-cc-or-any-creative-cloud-application/

from illustrator-layer-exporter.

mos6581 avatar mos6581 commented on August 18, 2024

Wow! thanks, never know it's possible to roll back. Done!

from illustrator-layer-exporter.

katiebb avatar katiebb commented on August 18, 2024

👍

from illustrator-layer-exporter.

joeherold avatar joeherold commented on August 18, 2024

A guide for those, who want to make it work in CC 2015:

Summery:

  1. Enable Debug Mode for CSCX 5
  2. Restart the cfprefsd process, because from osx 10.9 and up it caches the property list files
  3. Copy the Extension from CSCX 4 to CSCX 5
  4. Edit the project manifest to make the extension work with CSCX 5 and up to any illustrator version

For @davidderaedt

When you update your plugin, you only have to make topic 4 in your app and redeploy it to adobe.
So, change to CSCX5 and raise the illustrator version number... ;)
Pullrequest is here: #22

Enable Debug Mode for CSCX 5

Go to

~/YOUR_USER/Library/Preferences/com.adobe.CSXS.5.plist

and add the key-value pair PlayerDebugMode = 1

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>LogLevel</key>
    <string>1</string>
    <key>PlayerDebugMode</key>
    <string>1</string>
</dict>
</plist>

or more simple, just add it with xcode:
screenshot_1

Restart the cfprefsd process, because from osx 10.9 and up it caches the property list files

(or restart your computer)
find the cfprefsd PID in activity monitor:
screenshot_2

then go to your terminal and kill the process with: sudo kill -9 PID
screenshot_3

Copy the Extension from CSCX 4 to CSCX 5

Copy the Extension from:

~/YOUR_USER/Library/Application Support/Adobe/CEPServiceManager4/extensions/com.dehats.layerexporter

to:

~/YOUR_USER/Library/Application Support/Adobe/CEP/extensions/com.dehats.layerexporter

Edit the project manifest file according to this changes:

(the file is located here: ~/YOUR_USER/Library/Application Support/Adobe/CEP/extensions/com.dehats.layerexporter/CSCX/manifest.xml)

<?xml version="1.0" encoding="UTF-8"?>

<ExtensionManifest Version="5.0" ExtensionBundleId="com.dehats.layerexporter" ExtensionBundleVersion="2.1.1"
        ExtensionBundleName="Layer Exporter" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Author>David Deraedt</Author>
    <Abstract><![CDATA[Export all layers in just one click]]></Abstract>    
    <ExtensionList>
        <Extension Id="com.dehats.layerexporter" Version="2.1.1" />
    </ExtensionList>
    <ExecutionEnvironment>
        <HostList>
            <Host Name="ILST" Version="[17.0,2100.0]" />
        </HostList>
        <LocaleList>
            <Locale Code="All" />
        </LocaleList>
        <RequiredRuntimeList>
            <RequiredRuntime Name="CSXS" Version="5.0" />
        </RequiredRuntimeList>
    </ExecutionEnvironment>
    <DispatchInfoList>
        <Extension Id="com.dehats.layerexporter">
            <DispatchInfo >
                <Resources>
                <MainPath>./index.html</MainPath>
                <ScriptPath>./jsx/hostscript.jsx</ScriptPath>
                </Resources>
                <Lifecycle>
                    <AutoVisible>true</AutoVisible>
                </Lifecycle>
                <UI>
                    <Type>Panel</Type>
                    <Menu>Layer exporter</Menu>
                    <Geometry>
                        <Size>
                            <Height>300</Height>
                            <Width>300</Width>
                        </Size>
                    </Geometry>
                </UI>
            </DispatchInfo>
        </Extension>
    </DispatchInfoList>
</ExtensionManifest>

Restart Illustrator and then you are ready to go ;)

screenshot_4

from illustrator-layer-exporter.

joeherold avatar joeherold commented on August 18, 2024

Sidenote

if you yet have not installed the plugin in CC (so before CC 2015) you may just download the githubpackage from here und copy the "com.dehats.layerexporter" folder to ~/YOUR_USER/Library/Application Support/Adobe/CEP/extensions/com.dehats.layerexporter

from illustrator-layer-exporter.

dlewand691 avatar dlewand691 commented on August 18, 2024

Thanks joeherold for this. I followed the instructions explicitly and under Window > Extensions, Layer Exporter does show up now, but the panel does not open. Could there be a conflict with another extension? Or any other tips to get it to work? Thank you!

from illustrator-layer-exporter.

joeherold avatar joeherold commented on August 18, 2024

did you properly restarted the cfprefsd process? just changing the property list does not mean it takes effect in OSX 10.9 and later, because it is cached.so you need to kill all the cfprefsd processes, so that on a restart of illustrator the new settings may take effect. otherwise it will load the cached (unchanged) version and the playerdebugmode is not activated

for more info you may read this: https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man8/cfprefsd.8.html

from illustrator-layer-exporter.

joeherold avatar joeherold commented on August 18, 2024

the bad thing in illustrator is, that it does not show an error message. while i figured out the solution, i enabled the plugin in photoshop as well, just to see the error messages.. :)

from illustrator-layer-exporter.

svermeulen avatar svermeulen commented on August 18, 2024

I'm encountering the same issue as @dlewand691 - @joeherold 's instructions helped in that I can now see the menu option however the window does not open after selecting it

from illustrator-layer-exporter.

svermeulen avatar svermeulen commented on August 18, 2024

I actually managed to resolve my issue - after checking the log file csxs6-ILST.log I found the signature verification was failing and it was because I didn't correctly enable debug mode

from illustrator-layer-exporter.

joeherold avatar joeherold commented on August 18, 2024

@svermeulen glad to read it worked out for you. yes, some people told me that they skipped step 2 (restarting cfprefsd) and so the cached property list was loaded in illustrator. and this just does not enable the playerdebug mode. :)

from illustrator-layer-exporter.

joeherold avatar joeherold commented on August 18, 2024

I hope you all enjoy this little "workaround" fix. i hope @davidderaedt, the plugin developer, will update/fix his plugin. He only has to modify his manifest.xml settings to cscx5 and the upcoming illustrator version number, not more not less. Even the debug mode would not be necessary when he deploys it to adobe, because his plugin will be signed correctly then...

we well see.

from illustrator-layer-exporter.

joeherold avatar joeherold commented on August 18, 2024

i informed @davidderaedt now via twitter. we will see...
https://twitter.com/JohPichler/status/638263108386095104

from illustrator-layer-exporter.

dlewand691 avatar dlewand691 commented on August 18, 2024

Ah ha! Thanks @svermeulen for the tip. I edited the com.adobe.CSXS.6.plist file to enable debug mode and it worked perfect. May want to update the tip to include the CSXS6 file reference. Thank you!

from illustrator-layer-exporter.

callil avatar callil commented on August 18, 2024

@joeherold @dlewand691 Good tip! I also had to enable debug in both com.adobe.CSXS.6.plist and com.adobe.CSXS.5.plist to get the window to appear.

from illustrator-layer-exporter.

joeherold avatar joeherold commented on August 18, 2024

👍

from illustrator-layer-exporter.

tomothumb avatar tomothumb commented on August 18, 2024

@joeherold @dlewand691

I edited the com.adobe.CSXS.6.plist file to enable debug mode and it worked perfect. May want to update the tip to include the CSXS6 file reference.

Thanks, It worked too.

from illustrator-layer-exporter.

jw-miaem avatar jw-miaem commented on August 18, 2024

this is so handy would be even handier if install was easier - unable to install on CC 2018 at the moment

from illustrator-layer-exporter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.