Re: [WSG] pdf graphics

2006-02-02 Thread Dmitry Baranovskiy
Or you could open PDF files in Adobe Photoshop. The quality should be the same. Dmitry jackie reid wrote: Bruce If you own a copy of Adobe Acrobat and open the file in there you can extract/export images as jpgs. if not do screen shots. Its a pain... just like getting all the images

Re: [WSG] CSS or JavaScript flyout menu

2006-01-10 Thread Dmitry Baranovskiy
Hi Taco,If you will do everything in _javascript_, then your menu will lost its semantic. Take a look how it is done on http://www.optuszoo.com.auThere is _javascript_ for delay, CSS for drop-downs and ulli for semantic. best regards,Dmitry

Re: [WSG] Show Hide by Class

2005-09-19 Thread Dmitry Baranovskiy
Hi Stuart, I think it would be much easier if your JavaScript will change only id of the categories container. Example: CSS: .topiclist { some rules } #toggled .topiclist { display: none; } HTML: div id=forToggle div class=categorya class=activate href=# onclick=return

Re: [WSG] FOUC Safari 2.0

2005-06-15 Thread Dmitry Baranovskiy
Lea de Groot wrote: On Wed, 15 Jun 2005 19:23:12 -0700, Chris Kennon wrote: Has anyone any idea if the FOUC in Safari 2.0 is remedied with similar methods to IE? You see it too? I thought it was an oddity of my setup! No, I haven't found a way to get rid of it :( Lea Sorry, what

Re: [WSG] valid javascript code

2005-06-14 Thread Dmitry Baranovskiy
Bruce Gilbert wrote: Hello, I just tried to validate a page against an XHTML strict DTD with javascript code and received these errors: there is no attribute language required attribute type not specified I am calling the JS code externally and thought it was correct. the syntax in

Re: [WSG] Character encoding

2005-06-05 Thread Dmitry Baranovskiy
Vaska.WSG wrote: For some reason, I feel I have to escape every character that is not a letter or number. I was feeling the same, and working on it, when this thread arrived. At the time it appeared I was looking up numeric entity lists in Cyrillic and adapting them to a conversion_map

Re: [WSG] why doesn't this validate with w3c.org and what to do about it

2005-05-26 Thread Dmitry Baranovskiy
Bruce Gilbert wrote: I have some comments within my CSS to let me or anyone else know what is controlling what eg: /*aligns list in middle of page*/ p.middle{test-align:center} validation doesn't like this.is there a fix? or should I just ignore??? TIA May be it should be

Re: [WSG] apostrophes, and the like.

2005-05-17 Thread Dmitry Baranovskiy
I have written my little typograph in JavaScript. It is not tested enough, but it can do all this things plus add nbsp after short words (like a, an, the, on, of, etc). http://siter.com.au/dmitry/typo/ Hope it will help someone ** The discussion

Re: [WSG] Web calendar

2005-04-26 Thread Dmitry Baranovskiy
Hi, You could check my version also. It is JavaScript based calendar with heaps of options. Fully CSS supported. Could be inline or pop-up. http://siter.com.au/dmitry/cal.html -- Best regards, Dmitry Baranovskiy ** The discussion list for http

Re: [WSG] a required field marker in forms

2005-04-22 Thread Dmitry Baranovskiy
getting help ** -- Best regards, Dmitry Baranovskiy ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting

Re: [WSG] safari list question

2005-04-22 Thread Dmitry Baranovskiy
help ** -- Best regards, Dmitry Baranovskiy ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting

Re: [WSG] Accessible dropdown menus

2005-04-14 Thread Dmitry Baranovskiy
for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list getting help ** -- Best regards, Dmitry Baranovskiy

Re: [WSG] JavaScript and escaped quotes

2005-04-13 Thread Dmitry Baranovskiy
to the list getting help ** -- Best regards, Dmitry Baranovskiy ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints

Re: [WSG] JavaScript and escaped quotes

2005-04-13 Thread Dmitry Baranovskiy
the A tag like a href=foo.htm onclick=myfunction(this.getElementsByTagName('SPAN')[0].innerHTML)span class=hiddenDon't Look Now/spanlink text/a -- Best regards, Dmitry Baranovskiy ** The discussion list for http://webstandardsgroup.org/ See http

Re: [WSG] more on flashish stuff: SVG

2005-04-11 Thread Dmitry Baranovskiy
for some hints on posting to the list getting help ** -- Best regards, Dmitry Baranovskiy ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org

Re: [WSG] more on flashish stuff: SVG

2005-04-11 Thread Dmitry Baranovskiy
Well, yes, I used embed, but it was done 2 years ago, so may be it doesn't work in Opera now. But it definitely works in IE after Adobe plug-in installation. On Apr 12, 2005 9:33 AM, Kornel Lesinski [EMAIL PROTECTED] wrote: On Tue, 12 Apr 2005 00:02:52 +0100, Dmitry Baranovskiy [EMAIL PROTECTED

Re: [WSG] ID conflicts

2005-04-04 Thread Dmitry Baranovskiy
://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list getting help ** -- Best regards, Dmitry Baranovskiy ** The discussion list for http://webstandardsgroup.org/ See

Re: [WSG] Browser support for javascript CDATA regions

2005-03-17 Thread Dmitry Baranovskiy
/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list getting help ** -- Best regards, Dmitry Baranovskiy ** The discussion list for http

Re: [WSG] Cool css box idea

2005-02-22 Thread Dmitry Baranovskiy
Yeah, round corners is something. I did it this way (http://siter.com.au/dmitry) -- Best regards, Dmitry Baranovskiy ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some

Re: [WSG] quot; or in copy?

2005-02-16 Thread Dmitry Baranovskiy
Actually is an inch symbol. For quotes we should use #147; and #148; in normal text. -- Best regards, Dmitry Baranovskiy ** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some

Re: [WSG] IE fixed: PNG transparency working like Firefox???

2005-02-13 Thread Dmitry Baranovskiy
There is no need to use JavaScript for PNG in IE. I am using empty GIF and CSS like this: #CaptionImage img { background: url(i/title.png); background: expression('none'); filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='i/title.png', sizingMethod='crop');