PDA

View Full Version : is it possible?


lpcpunk
09-22-2002, 07:22 AM
is it possible to have a box come up kind of like cromless windows, but have it be a defined shape that you want, such as a circle or somthing like that? kind of like how winamp has the different skins, and some of them can be different shaps other than just boxes. i'm just hoping it is and that it's been done before so i don't have to make an attempt to code it...-

myke./>

joh6nn
09-22-2002, 07:43 AM
i'm gonna say that it's not possible

zoobie
09-22-2002, 08:57 AM
I'm not so hot on code...better on design. :D

You could design it so it appeared that a triangular window had popped up. You'd have to make the chromeless window completely match the background of your page and appear somewhere where there wasn't any text. For example...your page has a big blank space in the middle of it surrounded by text links on both sides. Your user clicks on a link and a chromeless window pops up there with an image of a triangle or any geometry you wish along with text and images filling in the shape.

http://geocities.com/zoobie007/test.txt

Don't forget to allow them to close the chromeless pop-up. :cool:

Pooh
09-22-2002, 09:04 AM
It's possible...............VML

http://msdn.microsoft.com/library/default.asp?url=/workshop/author/VML/ref/adv3.asp

http://www.w3.org/TR/NOTE-VML


<HTML xmlns:v="urn:schemas-microsoft-com:vml">

<style>

v\:* {behavior:url(#default#VML);}
</style>
<body>
<v:roundrect style="width:150pt;height:50pt" fillcolor="aqua"> </v:roundrect>

</body>

zoobie
09-22-2002, 07:58 PM
...or combine the VML code with the same background window idea for just a oval or rectangle. :D