Questions tagged [vml]

VML, the Vector Markup Language, is a vector image format that is represented by XML. It has been deprecated since SVG was accepted by the W3C, and should be used only for compatibility.

VML, the Vector Markup Language, is a vector image format that is represented by XML. It is a competing standard to SVG, as VML was never formally accepted by the W3C. VML has not been updated significantly since 1998, when it was submitted, and is considered deprecated in favor of SVG.

VML is used for websites wishing to display vector graphics for old releases of Internet Explorer, since IE has generally poor SVG support. IE9 rectifies this partially, but still only adequate support. Very few other browsers have support for VML.

VML has also been used by Microsoft Office since 2000, and continues to be used as the suite's main vector image format. OpenOffice holds deprecated support for VML for this reason.

273 questions
0
votes
1 answer

SVG and VML path fill difference

I migrate from VML to SVG. There is a problem with the way path is filled. Here is an example: On the left side is star drawn with VML, and on the right with SVG. Source code for VML (works only in IE):
Luka
  • 2,779
  • 3
  • 17
  • 32
0
votes
2 answers

Raphaeljs get coordinates of scaled path

I have a path to create a shape - eg. an octagon pathdetail="M50,83.33 L83.33,50 L116.66,50 L150,83.33 L150,116.66 L116.66,150 L83.33,150 L50,116.66Z"; paper.path(pathdetail); paper.path(pathdetail).transform("S3.5"); I then use this to create the…
Jason
  • 143
  • 1
  • 17
0
votes
1 answer

How can I retrieve current X-value in gRaphael linechart hoverColumn function?

Below I've posted some code and comments for making a simple gRaphael linechart with tag hovereffects (the included script files can be found at http://raphaeljs.com and http://g.raphaeljs.com). The code works as it should (and can thus be a good…
Morten
  • 35
  • 1
  • 7
0
votes
2 answers

How can move the code above into the jQuery-plugin

I'm writing a plugin for jQuery. Turns out that in order to use it a page HTML must containt the following code
Евгений
  • 321
  • 4
  • 7
0
votes
1 answer

Why doesn't Internet Explorer render VML on my web page?

First of all, I know that Microsoft stopped developing VML in 1998. In spite of that, I've inherited a web page with a bunch of VML markup and I'd really like to get it working without rewriting the whole thing. The problem is, I'm moving the page…
Vivian River
  • 31,198
  • 62
  • 198
  • 313
0
votes
1 answer

Convertion from ESRI Shapefile into OS VectorMap Local GML

I have to create a program for converting ESRI Shapefiles into OS VectorMap Local GMLs. I'm looking for some information for my problem... I tried to use documentation from both sites: ESRI Shapefile documentation OS VectorMap Local…
Nickon
  • 9,652
  • 12
  • 64
  • 119
0
votes
1 answer

Raphael.js attributes and VML

With Raphael I would like to create a rectangle with an Id attribute like the example below. To create the rectangle I can use code like this var elem = _paper.rect(10, 10,…
DeMeNteD
  • 385
  • 4
  • 11
0
votes
1 answer

How to adjust contrast, darken/lighten vector graphics using dojox.gfx

I am using dojox.gfx to create and manipulate vector graphics. I need to adjust contrast and apply blur, darken/lighten effect on them? And the browser I need to support are IE 8+. So, I have to achieve these things on SVG(IE 9) and VML(IE 8) Is…
Selvaraj M A
  • 3,096
  • 3
  • 30
  • 46
0
votes
1 answer

explain javascript function for detecting vml

This is a function used to detect VML support in browsers. It's part of an html component file for giving border-radius and drop-shadow functionality to older versions of IE. I would like this explained to me, the step-by-step logic of it: function…
Jeff Fabiny
  • 325
  • 2
  • 15
0
votes
1 answer

What is the structure of VML mouse event object?

I would like to know the structure (properties and methods) of a VML mouse event object. I'm using Raphael, and I want to know the mouse coordinates when an element is hovered. On Firefox and Chrome, event.pageX and event.pageY are working, but not…
Fabien Quatravaux
  • 3,737
  • 2
  • 27
  • 33
0
votes
1 answer

printing VML in IE8

Here is a very simple VML sample which displays fine on all versions of IE. And it also prints on all versions of IE except IE8. I know that it is possible to make IE8 print VML, but can't find how I should do it. Thanks for any hint.
zeroin
  • 5,863
  • 6
  • 31
  • 42
0
votes
2 answers

jquery.clone() attrs of elements

I create vml element v:shape, add styles and attributes, and then append it. var shape = document.createElement("v:shape"); //some attrs shape.setAttribute("coordorigin", "0 0"); shape.setAttribute("coordsize", w + " " +…
SakerONE
  • 141
  • 1
  • 3
  • 10
-1
votes
0 answers

PNG, CSS or VML

I am currently formatting Microsoft Word on my newlaptop to accommodate my writing style, which includes lots of drawings. The window prompt that appears asks if I want to 1) allow PNG as a graphics format, 2):disable features not supported by these…
-1
votes
1 answer

HTML CSS Email grid not displaying properly

I have an email template that works perfectly on non-desktop versions of Outlook. However, when rendering on Outlook it looks terrible. This part of the email is a card (it will contain several cards in the future, but for simplicity purposes I only…
JB999
  • 441
  • 3
  • 16
-1
votes
1 answer

Still no way to add a simple email background image that works in Outlook and OWA?

Is it true that it is still not possible to add a simple background image to email that shows up in most mail clients, at least in Outlook.exe and OWA (aka Outlook.com)? I've tried most of the typical hacks already, including various ones with VML,…
David.P
  • 196
  • 1
  • 9
1 2 3
18
19