..."From Burçin
Gündoðdu "VectorEye is
really perfect software."
VectorEye
Tech. Notes
VectorEye2 // VectorEye3 // Windows XP
// Windows Vista
- VectorEye2 can't run
with Windows Vista (no migration envisaged)
- VectorEye3 runs with Windows XP or Windows Vista.
- VectorEye2 (official) and VectorEye3 (trial) can run both under Windows XP.
VectorEye 2 or 3 and Mac
VectorEye can't run with Mac OsX.
SVG : Firefox Header
VE generates a basic file header.
No problem for the majority of softwares (Illustrator, Corel...,
Internet Explorer with Adobe viewer, Opera) but Firefox needs a more
complet header so you could change the standard header generated by VE
by this one with any notepad.
VE Header for
svg files
<?xml version="1.0" standalone="yes"?>
<svg width="xxx" height="yyy">
Firefox header
<?xml version="1.0"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="xxx" height="yyy" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
So copy these lines and change width et height.
Note :
Opening a Svg file generated by VE with Inkscape (free) and save it
creates this header.
XAML : Microsoft Expression
(August 2007)
There is no "Open xaml file" in Expression Blend... but you have a xaml
editor and you have also a special "paste xaml datas"
VE header for
xaml files
<!--Generated by CR2V (www.celinea.com)-->
<Canvas Height="xxx" Width="yyy"
xmlns="http://schemas.microsoft.com/2003/xaml/">
Microsoft Expression header
<Canvas
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="xxx" Height="yyy"
Background="White"
x:Name="Page"
>
So copy the xaml file generated by VE in the xaml editor with
the paste xaml datas function and correct the code.