Closed GoogleCodeExporter closed 9 years ago
Note: A temporary workaround is to manually add the collections inside the
\app\content\pencil\definition\collectionManager.js file after the system
stencils (around line 100).
(You need to extract the zip files first to a location, preferrably inside the
pencil directory structure.)
Original comment by psychol...@gmail.com
on 22 Nov 2011 at 4:01
In case anybody is not familiar with basic JavaScript do the following:
Create a new directory for the stencil inside the Pencil program directory, for
me Windows 7 x64 this is:
C:\Program Files (x86)\Evolus\Pencil\app\content\pencil\stencil\
e.g. Glyphish: C:\Program Files
(x86)\Evolus\Pencil\app\content\pencil\stencil\Glyphish
Now extract the stencil zip file inside the directory.
Next open \app\content\pencil\definition\collectionManager.js with an editor
(e.g. notepad) and go to line 100.
There you should see a line like like the following:
CollectionManager.addShapeDefCollection(parser.parseURL("chrome://pencil/content
/stencil/SketchyGUI/Definition.xml"));
Now copy that line and paste it below. Change the path to the right so it
points to your newly unzipped directory, like so:
CollectionManager.addShapeDefCollection(parser.parseURL("chrome://pencil/content
/stencil/Glyphish/Definition.xml"));
Next time Pencil starts the colleciton is loaded.
Original comment by psychol...@gmail.com
on 22 Nov 2011 at 4:07
After some more digging and experiencing a similar issue with the export
templates, I found the best way is to change "resource:app" to "CurProcD".
So inside of exportTemplateManager.js, collectionManager.js and
privateCollectionManager.js (inside /app/content/pencil/definition) replace
"resource:app" with "CurProcD".
After that it seems to work normally
Original comment by psychol...@gmail.com
on 23 Nov 2011 at 11:54
Changing "resource:app" to "CurProcD" did the trick for me, thanks!
Original comment by esbe...@gmail.com
on 2 Dec 2011 at 9:40
it works perfectly ... thanks
Original comment by redhacho...@gmail.com
on 7 Dec 2011 at 4:36
great!!
It works. http://case35.tistory.com/257
Original comment by g20020...@gmail.com
on 12 Dec 2011 at 4:42
CurProcD change resolved issue completely (without having to manually add
anything). Thanks!
Original comment by dwgabb...@gabbard.me
on 13 Dec 2011 at 10:04
In case you need to do this on a mac...
Go to Applications
Right click on Pencil App and select Show Package Contents
Then navigate to /Contents/Resources/content/pencil/stencils
Then follow same instructions as above
Original comment by john...@gmail.com
on 19 Dec 2011 at 11:37
Changing "resource:app" to "CurProcD" did the trick for me as well. Thanks!
Original comment by richard....@fairwarningaudit.com
on 20 Dec 2011 at 6:56
Changing "resource:app" to "CurProcD" did the job. Thanks you so much for the
work.
Original comment by ranjith....@gmail.com
on 4 Jan 2012 at 1:03
[deleted comment]
Original comment by ngtdungnt@gmail.com
on 17 Jan 2012 at 5:03
Original issue reported on code.google.com by
psychol...@gmail.com
on 22 Nov 2011 at 3:38