[wdvltalk] 3D rotation of an transparent image

2005-12-08 Thread Jure Spik

Hello list!

A customer asked me to design him a rotating logo. Since I like to obey 
the customer :grin: I did a simple flash animation that shrinks the 
image to 1% of its width and then expands it, which looks like rotation 
http://carpediem.si/kosec/i/logokosec.swf and works pretty well, but 
he said he also wants the image to have some depth.


I tried xara3d to create the desired effect, but it's only good for 
rotating 3-d text, and also... the image should be transparent - not 
just with simple borders around it.


So, does anyone on the list know of software that can do, what my 
costumer desires?


--
Jure Špik,
Carpe diem, d.o.o., Kranj


 � The WDVL Discussion List from WDVL.COM � 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] or
use the web interface http://e-newsletters.internet.com/discussionlists.html/
  Send Your Posts To: wdvltalk@lists.wdvl.com
To change subscription settings, add a password or view the web interface:
http://intm-dl.sparklist.com/read/?forum=wdvltalk

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: archive@jab.org
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.


Re: [wdvltalk] no-repeat css woes

2005-11-11 Thread Jure Spik

Hi, maybe the location of the file should be in ''s:
style=background:url('../images/begalong.gif') no-repeat;

Jennifer Severn wrote:


style=background:url(../images/begalong.gif) no-repeat;




--
Jure Špik,
Carpe diem, d.o.o., Kranj


 � The WDVL Discussion List from WDVL.COM � 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] or
use the web interface http://e-newsletters.internet.com/discussionlists.html/
  Send Your Posts To: wdvltalk@lists.wdvl.com
To change subscription settings, add a password or view the web interface:
http://intm-dl.sparklist.com/read/?forum=wdvltalk

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: archive@jab.org
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.


Re: [wdvltalk] Managing different projects

2005-04-02 Thread Jure Spik
jdmajor wrote:
Hi Amrit,
I feel like I have the name on the tip of my tongue, but I just can't 
remember the name of the software, but using the program, you are 
supposed to be able to enter multiple domain names, and other info for 
each domain. I think it was a free program.

Jan
Would that be E-GroupWare @ http://www.egroupware.org/
some alternatives are
http://www.phpgroupware.org/ and
http://www.opengroupware.org/
Jure
--
Ecosystem failing. Need ride off this rock. Pick up at Long 14e18, Lat 45n37 , 
Earth.
 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] or
use the web interface http://e-newsletters.internet.com/discussionlists.html/
  Send Your Posts To: wdvltalk@lists.wdvl.com
To change subscription settings, add a password or view the web interface:
http://intm-dl.sparklist.com/read/?forum=wdvltalk
  http://www.wdvl.com  ___
You are currently subscribed to wdvltalk as: archive@jab.org
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016
Please include the email address which you have been contacted with.


Re: [wdvltalk] Include a JS file from another JS file?

2005-03-19 Thread Jure Spik
Hi, Matt
It may be possible:
1. include an invisible iframe in the page 
2. iframe's src page has the javascript code in textarea or something else easy to read with script. 
3. iframe's src page has onload=parse(); in the body tag
4. parse() is something like this:

var sJS = document.getElementById(myTextArea); //get the js code
var arJS = sJS.split(\n); //split the code at newline
for (var line in arJS) {
eval(line); // or is it eval (arJS[line]) not sure...
}
Peace, Jure
--
Ecosystem failing. Need ride off this rock. Pick up at Long 14e18, Lat 45n37 , 
Earth.
 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] or
use the web interface http://e-newsletters.internet.com/discussionlists.html/
  Send Your Posts To: wdvltalk@lists.wdvl.com
To change subscription settings, add a password or view the web interface:
http://intm-dl.sparklist.com/read/?forum=wdvltalk
  http://www.wdvl.com  ___
You are currently subscribed to wdvltalk as: archive@jab.org
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016
Please include the email address which you have been contacted with.


[wdvltalk] Re: ASP Arrays OO

2004-08-11 Thread Jure Spik
Hi there are two options I see why it's not working. One is, as you assumed,
declaration of a 2d array: In my knowledge it has to be done this way:
dim arS
reDim arS(2)

The second thing is indexing: Arrays don't start at 0, but instead at 1, so
arS(2)=name is a valid statement.

Have fun, Jure

- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, August 11, 2004 1:57 AM
Subject: [wdvltalk] ASP Arrays OO


 Hi, I'm having a problem with accessing the elements of an array which is
 a property of a user defined class.  Here's the class:
 =
 Class clsCart

 '_Instance Variables

 Private cvIntID
 Private cvArrItems
 Private cvObjData


 'Property Lets and Gets


 '1___ID__
 Public Property Let ID(Param)
 cvIntID = Param
 End Property

 Public Property Get ID
 ID = cvIntID
 End Property

 '2___Items__
 Public Property Let Items(Param)
 cvArrItems = Param
 End Property

 Public Property Get Items
 Items = cvArrItems
 End Property

 '3___Data__
 Public Property Get data
 if not isObject(cvObjData) Then
 set cvObjData = new clsDataAccess
 end if
 set Data = cvObjData
 End Property

 ' Class Methods Will Go Here...
 End Class
 =

 I then instantiate the class (gvobjCart), get a recordset of product data
 and assign the recordset to the Items property of the object using
 GetRows().
 gvobjCart.Items = dbRS.GetRows()

 I am then assuming (dangerous, I know) that Items is a 2 dimensional array
 (isArray() returns true).  So far so good.  I can loop through the Items
 array using a For Each loop and it contains the correct data.

 BUT, if i try to response.write gvobjCart.Items(0,0) (which should contain
 the ID of the first Product) I get the error Wrong number of arguments or
 invalid property assignment: 'Items'.

 If I skip the OO part and just assign the recordset to a variable eg.
 arrCart = dbRS.GetRows() then response.write arrCart(0,0) seems to work
 fine.

 So... do I need to explicitly define the Items variable in the class as an
 array - or something like that?  I've played around with this and can't
 get it to work.  I wouldn't have thought that was the answer anyway as the
 recordset gets assigned to gvobjCart.Items as an array with no problem.

 Any help much appreciated.

 Cheers,

 Clancy

  ? The WDVL Discussion List from WDVL.COM ? 
 To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
 To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email.
 To change subscription settings to the wdvltalk digest version:
 http://wdvl.internet.com/WDVL/Forum/#sub

   http://www.wdvl.com  ___

 You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to %%email.unsub%%

 To unsubscribe via postal mail, please contact us at:
 Jupitermedia Corp.
 Attn: Discussion List Management
 475 Park Avenue South
 New York, NY 10016

 Please include the email address which you have been contacted with.







 ? The WDVL Discussion List from WDVL.COM ? 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: fif file frustration

2004-07-09 Thread Jure Spik
XnView sneers in contempt
What does that mean?

I had a few .fif (fractal image format) files on my drive once but they
could only be opened by the fif inventor's util. for 30 days with bad
resolution. If xnview can't help you  the only option might be to purchase a
fif license.

My 2 SIT, Jure
- Original Message - 
From: Joseph Harris [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, July 09, 2004 11:33 AM
Subject: [wdvltalk] Re: fif file frustration



 Bj and Tom,

 Thanks for the response.I've been round ever widening circles on this
 and cannot open fif files.   Formula Graphics closes every time I try (all
 three DLLs in the folder), XnView sneers in contempt, Genuine fractals
 offers a free download but the button leads nowhere (can't see a trial
 either).   Photoshop (5.5) appears to have no filter for this one.

 Irfan view doesn't do it.   I think I am at the end of Googling on this.
 Just possible that - at last I have put Mandrake Linux on the machine -
that
 I can find a working converter there;   linux-lovers have you a
solution? -
 plain english preferred!

 My impression is that .fif is an old condensing system, and I am just
 wondering if it doesn't work with Xp.   I'll have a go on the old machine
 and see (W98se)!

 Joseph


  A valuable site for anyone to note, www.filext.com simply lists details
of
 all known file extensions (including .fif) and the programs that use them.
 
  .fif seems to be used by several programs including Spinrite
(FIngerprint
 File for hard disk) or Fractal Image File or Font Information File or...
 
  One useful link there  to xnview (www.xnview.com) a multimedia
 viewer/browser...
  
   From: Cyberspace Publishing [EMAIL PROTECTED]
   Date: 2004/07/07 Wed AM 01:01:41 GMT
   To: [EMAIL PROTECTED]
   Subject: [wdvltalk] Re: fif file frustration
  
   At 12:58 AM 7/7/2004 +0100, you wrote:
   I have been trying to open some .fif graphics files.   Among (many)
 other
   things I have downloaded graphics suite from
   http://www.thecodeproject.com/bitmap/graphicsuite.asp
   
   
   However, it still does not want to open these files;  any advice
 welcome.
   
   Joseph
  
   Hi Joseph,
  
   While 'fif' stands for Free Image Format, I'm unsure whether
   the extension '.fif' actually stands for a particular format.
  
   You might try IrfanView from http://www.irfanview.com/ or the
   latest version of Paint Shop Pro (v.8.x) as both will open an
   enormous number of image formats - sometimes even when the
   extension is incorrect.
  
   Good luck, and let me know if you find that '.fif' is a legitimate
   graphic file extension.  Just glancing at the site you referred to
   though, indicates to me that it isn't.
  
   Cheers,
   Tom Fosson
  
   ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
 Here's a few programs that I use myself!
   http://aznewyou.com/cyberpub/whatsnew.shtml
  
  
  
    . The WDVL Discussion List from WDVL.COM . 
   To Join wdvltalk, Send An Email To:
mailto:[EMAIL PROTECTED]
  Send Your Posts To: [EMAIL PROTECTED]
   To set a personal password send an email to [EMAIL PROTECTED] with
 the words: set WDVLTALK pw=yourpassword in the body of the email.
   To change subscription settings to the wdvltalk digest version:
   http://wdvl.internet.com/WDVL/Forum/#sub
  
     http://www.wdvl.com  ___
  
   You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
   To unsubscribe send a blank email to %%email.unsub%%
  
   To unsubscribe via postal mail, please contact us at:
   Jupitermedia Corp.
   Attn: Discussion List Management
   475 Park Avenue South
   New York, NY 10016
  
   Please include the email address which you have been contacted with.
  
  
 
  -
  Email provided by http://www.ntlhome.com/
 
 
 
   . The WDVL Discussion List from WDVL.COM . 
  To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
 Send Your Posts To: [EMAIL PROTECTED]
  To set a personal password send an email to [EMAIL PROTECTED] with
the
 words: set WDVLTALK pw=yourpassword in the body of the email.
  To change subscription settings to the wdvltalk digest version:
  http://wdvl.internet.com/WDVL/Forum/#sub
 
    http://www.wdvl.com  ___
 
  You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
  To unsubscribe send a blank email to
 %%email.unsub%%
 
  To unsubscribe via postal mail, please contact us at:
  Jupitermedia Corp.
  Attn: Discussion List Management
  475 Park Avenue South
  New York, NY 10016
 
  Please include the email address which you have been contacted with.
 
 


  . The WDVL Discussion List from WDVL.COM . 
 To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
 To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email.
 To 

[wdvltalk] Re: can't make auto transitions

2004-01-09 Thread Jure Spik
Well I don't want to start a JavaScript tutorial here, but a short
description of to-do's is :
Each time you want to change an image :
-Apply the filter to the holder of image e.g.
document.getElementById('holder').filters[0].apply();
-Change the image in holder e.g. document.getElementById('holder').src =
someNewPic;
-Play the transition e.g.
setTimeout('document.getElementById(holder).filters[0].play(3.0);', 1000);
//i do this with 1second timeout so image has some time to load

holder being img src='y.jpg' id='holder' /
you should set constant width and heigth to #holder class so pictures fade
ok. Also #holder must have the progid:DXImageTransform style set

Jure pik
- Original Message - 
From: Gerrie Warner [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 08, 2004 8:22 PM
Subject: [wdvltalk] can't make auto transitions


 Here's the code from MS - now I wonder how to add a few more images to it:
 alo it doesn't fade from one to the other automatically - you have to hit
 the Play Transitions button

 TIA! Gerrie


 HEAD
 SCRIPT
 var startImage =fruit.gif;
 var endImage=mouse.gif;
 function doTrans() {

 imgObj.filters[0].apply();
 if (oImg.src.indexOf(startImage)!=-1) {
 oImg.src = endImage;
 imgObj.style.backgroundColor = gold;
 imgObjText.innerHTML = BRBSecond
 Page/BBRBRUsing the Bplay/B method reveals the changes in the
SPAN
 element content.}
 else {
 oImg.src = startImage;
 imgObj.style.backgroundColor = skyblue;
 imgObjText.innerHTML = BRbFirst
 Page/bBRBRUsing the Bapply/B method prepares this SPAN element
for
 content changes.}
 imgObj.filters[0].play();
 }
 /SCRIPT
 /HEAD
 BODY
 SPAN id=imgObj style=PADDING-RIGHT: 10px; PADDING-LEFT: 13px; FILTER:
 progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=50); FONT: 9pt/1.3
 verdana; WIDTH: 305px; COLOR: black; HEIGHT: 150px; BACKGROUND-COLOR:
 skyblueIMG id=oImg style=MARGIN: 8px src=fruit.gif align=left
 DIV id=imgObjTextBRBFirst Page/BBRBRUsing the Bapply/B
 method prepares this SPAN element for content
changes./DIV/SPANBRBR
 BUTTON onclick=doTrans()Play Transition/BUTTON
 /BODY


   The WDVL Discussion List from WDVL.COM  
 To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
 To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email.
 To change subscription settings to the wdvltalk digest version:
 http://wdvl.internet.com/WDVL/Forum/#sub

   http://www.wdvl.com  ___

 You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to %%email.unsub%%

 To unsubscribe via postal mail, please contact us at:
 Jupitermedia Corp.
 Attn: Discussion List Management
 475 Park Avenue South
 New York, NY 10016

 Please include the email address which you have been contacted with.




  The WDVL Discussion List from WDVL.COM  
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Site check please [http://suhamontaza-albreht.si/]

2004-01-08 Thread Jure Spik
Hello list.

I am designing a site for a client that is constructing second-phase
building works in houses. It is only in slovenian language but since it's
designed on a high-resolution monitor I'd need some second oppinions on
looks (horizontal scrolling issues, overlaps, CSS design bugs,
accessibility, load time...).

Site is not complete yet. It's URL is http://suhamontaza-albreht.si/

Thanks,
Jure ¦pik,

Carpe Diem d.o.o., Kranj

http://carpediem.si/
[EMAIL PROTECTED]
[EMAIL PROTECTED]



 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Site check please [http://suhamontaza-albreht.si/]

2004-01-08 Thread Jure Spik
Thanks Amanda  Gerrie. I like the fade thingie a lot also! It's for IE only
but just changes images in other browsers with DHTML support. I found the
filters at
http://msdn.microsoft.com/workshop/samples/author/dhtml/DXTidemo/DXTidemo.htm

Aktualno page will be added a warning that there are currently no special
offers :D

I will brake the long page with anchors so one can quickly navigate to the
desired content and include links on top and bottom and inbetween. That will
suffice I hope. I will also try to subdivide the gallery but I will leave
the -Predstavitev- page intact as the client likes it.

First page really looks bare. Client suggested adding links to main material
manufacturers like KNAUF  WEDI on bottom or reducing the image and adding
graphical links on right. I think that may look fullier also.

Resolution links were for testing As I had no idea how things look on non
1280*1024 monitors

Thanks and readyou when I change things,

Jure Spik,

Carpe Diem d.o.o., Kranj

04/280 78 00

http://carpediem.si/
[EMAIL PROTECTED]
[EMAIL PROTECTED]
- Original Message - 
From: Amanda Birmingham [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 08, 2004 6:14 PM
Subject: [wdvltalk] Re: Site check please [http://suhamontaza-albreht.si/]


Hi,
Just took a quick look (on IE6, win2k, T1): I like what you've done with
the images fading in and out, and the font is also a nice change from the
usual.  Load times were fine. The front page seems a little bare to me,
though--I'd be in favor of more content, even if it meant making the photos
smaller.  Also, for me, the Predstavitev izdelkov menu item wraps around,
breaking the alignment of the menu.

Are those different screen-resolution links just for testing, or do you
intend to include them on the final page?  If the latter, I would strongly
suggest you don't--I would never use them, and I doubt many other users
would either ... I think that generally, people want a site to adjust to
them, not the other way around.  Furthermore, whatever algorithm you are
using to decide on the size of the new window to open (when picking a new
resolution) is not the greatest ... it seems to be making the *display
area* of the new window 1024x768 (for example), which means that the window
itself (including chrome) actually is larger than my screen and very hard
to manipulate.

A few last thoughts: I get no content on the Aktualno page ... is that
right?  The rest of the pages have a *lot* of content on them (mostly
text), which means long pages with lots of scrolling.  You might consider
possibly breaking the content up into more than one page and letting users
page through them (with a next link or something) ... others may
disagree, but my eyes tend to go glassy when I'm faced with that much
screen text all in one place.

Good luck!
Amanda Birmingham
Web Application Developer


At 05:42 PM 1/8/2004 +0100, you wrote:

Hello list.

I am designing a site for a client that is constructing second-phase
building works in houses. It is only in slovenian language but since it's
designed on a high-resolution monitor I'd need some second oppinions on
looks (horizontal scrolling issues, overlaps, CSS design bugs,
accessibility, load time...).

Site is not complete yet. It's URL is http://suhamontaza-albreht.si/

Thanks,
Jure ¦pik,

Carpe Diem d.o.o., Kranj

http://carpediem.si/
[EMAIL PROTECTED]
[EMAIL PROTECTED]


 . The WDVL Discussion List from WDVL.COM . 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to %%email.unsub%%

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you

[wdvltalk] Re: Check it owwwaaatttt! :p (was [scr]interactwiththe.net/ict/

2004-01-08 Thread Jure Spik
Haven't seen the 9:30 version but 19:32 one looks very professional and
allround cool. I'd move the content and comments on the right edge down
about 50 px or maybe even center it vertically, but that's a very personal
oppinion ;)

BTW, John Peel - Board Member - is he into music by any chance ?

Jure Spik,

http://carpediem.si/
[EMAIL PROTECTED]
[EMAIL PROTECTED]
- Original Message - 
From: Matthew Macdonald-Wallace [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 08, 2004 6:58 PM
Subject: [wdvltalk] Check it owwwaaa! :p (was
[scr]interactwiththe.net/ict/


 All,

 please excuse the title, it's been a long day.

 please can you check http://www.interactwiththe.net/ict/ and let me know
 what you think?  The only link that works is services and that leads
 to the same text... :)

 AFAIK, it validates as xhtml and CSS2, and I think it looks better than
 it did at 9:30 this morning...

 All comments...

 TIA,

 Matt
 --
 +--+
 |Matthew Macdonald-Wallace |
 |The Truth Will Set you Free   |
 |http://www.truthisfreedom.org.uk/ |
 +--+
 Oh, `no attitude,' eh?  Not `in your face,' huh?  Well, you can cram it
 with walnuts, ugly!

 -- Homer Simpson
The Itchy  Scratchy  Poochie Show

  . The WDVL Discussion List from WDVL.COM . 
 To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
 To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email.
 To change subscription settings to the wdvltalk digest version:
 http://wdvl.internet.com/WDVL/Forum/#sub

   http://www.wdvl.com  ___

 You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
 To unsubscribe send a blank email to %%email.unsub%%

 To unsubscribe via postal mail, please contact us at:
 Jupitermedia Corp.
 Attn: Discussion List Management
 475 Park Avenue South
 New York, NY 10016

 Please include the email address which you have been contacted with.




 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Site check please [http://suhamontaza-albreht.si/]

2004-01-08 Thread Jure Spik
Yes, my functions to change images are inthere. The MS page teches you how
to use the transitions/filters and shows possible options. It even has
sample code on bottom of page.
Jure
- Original Message - 
From: Gerrie Warner [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 08, 2004 8:03 PM
Subject: [wdvltalk] Re: Site check please [http://suhamontaza-albreht.si/]


 hmmm aren't you using the funkcije.js  to get the transitions?
 I couldn't even come close with:
 

http://msdn.microsoft.com/workshop/samples/author/dhtml/DXTidemo/DXTidemo.htm

 TIA, Gerrie



 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: OT Use of English

2003-09-24 Thread Jure Spik
I arege wtih you ;) Msut use lnog wrods tugohh heeehhhe

Jrue
- Original Message - 
From: Cyberspace Publishing [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 2:03 AM
Subject: [wdvltalk] Re: OT Use of English


Try tihs out for yseloruf! It wrkos jsut fnie!

Aoccdrnig to a rscheearch at an Elingsh uinervtisy, it deosn't mttaer in
waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is
taht frist and
lsat ltteer is at the rghit pclae. The rset can be a toatl mses and you
can sitll raed it wouthit porbelm. Tihs is bcuseae we do not raed ervey

lteter by it slef but the wrod as a wlohe. ceehiro

Thoams Fososn

At 09:39 PM 09/24/2003 +0100, John Hughes wrote:

David,

Rather strange piece that. Accusing people who have been raised spelling
organisation just like that of being slack, semi-educated and
illiterate. Do you want to embark on a soliloquy about the use of 'its'
and 'it's' and its (or is it it's) confusing relationship with the
possessive apostrophe for us?

The truth is that written English is fairly arbitrary. It is the evolving
product of hundreds of years of practical use. To get to precious about
such trivia as the spelling of organisation would be to immerse yourself in
a mire of worthless pedantry. Sure, clear, readable English is important on
all sites, but don't cry blasphemy for stuff like an author's decision to
use US or UK spelling conventions.

The day that English becomes set in stone is undoubtedly the day it is set
for oblivion.

Which would suit me as I'd like to see Gaelic make a come back :-)

John.

David Blakey Wrote:
The word 'organization' is a good example of making the Web truly global.
In American English, 'z' is the only acceptable spelling.
In British English, either 'z' or 's' is acceptable.  The preference for
Fowler is 'z', although many traditional media use the 's' form:  the BBC,
the Guardian.

For global Web sites, I would always use the 'z' form.

Many semi-educated people, such as those who write for the BBC and the
Guardian, do not know the roots of English words, such that 'organize' is
acceptable, but it has to be 'advertise' and 'supervise'.  It's really a
question of how well you know the English language.  I consider it slack
and illiterate to opt for always using 's' just because it's easier than
applying the appropriate rules of the language.

(It is folly to regard the almost useless British English spell-checker on
Microsoft Office as being definitive.)

Regards,
David

?
What did an average guy do online last month that
just earned him $12,540, and allowed him to *fire
his boss* with his future earnings?
  http://tomfosson.com/answer.htm


 . The WDVL Discussion List from WDVL.COM . 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the
words: set WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to %%email.unsub%%


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: set 
WDVLTALK pw=yourpassword in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]


[wdvltalk] Re: OT: Domain name survey - Pls help!

2003-07-17 Thread Jure Spik
Dear webmasterinabox ;) Your poll does not work. Also, I hope this poll is
not one of the things your site sells since it's obviously a free service
with commercials

Re, Jure
- Original Message - 
From: Ravi Jayagopal [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, July 17, 2003 7:49 PM
Subject: [wdvltalk] OT: Domain name survey - Pls help!


Hi all,

I really need your help today.

This is not some stupid trick to get traffic -
I genuinely need your opinion on something.

I'm starting this huge new site which offers site owners a one-stop
shop for many services, including the following:

Shopping cart , Merchant account, Affiliate program,
Autoresponders, site automation scripts, the whole works.

I have chosen a few domain names for this new web site
that I'm launching in the first week of August.

I need your help in deciding which of the domain names,
in your opinion, best describes what my site is about.

Please take this poll - will take only 2 seconds of your time.
And pick the one you think is the best fit, and most professional.

Please keep in mind, that this domain name will be sent
out in EVERY single email that my customers send. So, it
should also be short enough, easy to spell, easy to remember,
conveys the idea, etc.

Here's the link to the poll:
http://WebmasterInABox.net/poll.html

Thanks in advance for the tremendous favor!

Also appreciate if you have any other comments or suggestions
through this list - or offline, if you wish.

My email is: mailto:[EMAIL PROTECTED]

Pls do it today if possible, as I have to make a decision soon.

Regards,

Ravi


 . The WDVL Discussion List from WDVL.COM . 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
   Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to %%email.unsub%%


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]