Search found 4 matches
- Fri Mar 16, 2018 6:00 am
- Forum: Programming
- Topic: Adding or injecting new tool in toolbar?
- Replies: 6
- Views: 3844
Re: Adding or injecting new tool in toolbar?
That is what I see too, I was hoping there was a way to fudge it until then. looks like there is a lot of work to do before it can be released.
- Fri Mar 16, 2018 5:48 am
- Forum: Programming
- Topic: extension: save as SVG
- Replies: 5
- Views: 3757
Re: extension: save as SVG
I want to do the save while the file is open. is that possible with xverb? I thought it was a command line utility. this is what I have so far but it does not create a working svg file. #! /usr/bin/env python # -*- coding: utf-8 -*- import inkex # Required class MyExtensionName(inkex.Effect): def __...
- Thu Mar 15, 2018 2:41 pm
- Forum: Programming
- Topic: Adding or injecting new tool in toolbar?
- Replies: 6
- Views: 3844
Adding or injecting new tool in toolbar?
Any way to add a new tool to the toolbar or command bar? It would be nice to have an extension with its own button.
- Thu Mar 15, 2018 2:39 pm
- Forum: Programming
- Topic: extension: save as SVG
- Replies: 5
- Views: 3757
extension: save as SVG
I am trying to write an extension that will save the selected as an SVG. I have been trying to find an example of scripting a "save as" call. I have had little luck. does anyone have an example of doing a save as svg with python?