|
-
Sep 6th, 2002, 03:18 AM
#1
Thread Starter
PowerPoster
-
Sep 6th, 2002, 03:25 AM
#2
I think you need to lookup either the ZOrder or Z-Index / ZIndex methods - try msdn for this.
-
Sep 6th, 2002, 03:30 AM
#3
Hyperactive Member
you have to use Layersto accomplish this... or an iframe.. .try the iframe first... i havent tried it out myself yet tho
-
Sep 6th, 2002, 03:36 AM
#4
Fanatic Member
How can I let Flash open a VBscript? Flash Also should pass a parameter to the script? Is This possible?
-
Sep 6th, 2002, 03:40 AM
#5
Thread Starter
PowerPoster
I accomplished it by:
<param name="wmode" value="transparent">
But apparently netscape doesnt like this! 
So alex or Colnel Klink could you explain a bit more please?
thanks guys
b
-
Sep 6th, 2002, 03:42 AM
#6
Lively Member
Flash is always on topmost, you can only use layers to get around this in html.
Any good html editor can help you there.
Macromedia dreamweaver does the job perfectly.
-
Sep 6th, 2002, 03:46 AM
#7
Lively Member
make flash open a vb script? almost sounds sinister, hehe.
get flash to send an FSCommand to execute your script.
-
Sep 6th, 2002, 03:53 AM
#8
There are several Ways to accomplish ordering with HTML.
First off, the Layer tag or Div tag which was mentioned. IE supports the Div tag, Netscape supports the Layer tag, but they are basically the same thing. Imagine a separate browser document which is transparent & overlayed ontop of your current one, this other document or window is what this tag is.
Code:
<div id="divName" style="WIDTH:100%; POSITION:relative; HEIGHT:400px">
<ElementHere>
</DIV>
Next up, the indexing, like with vb, every webpage element has a zorder number which positions it on the page, I think if element1 has a zorder of 0, and element2 has a zorder of 1, the element with the highest zorder number will be shown topmost on the webpage document (I think that's the right way round)! 
The ZOrder and ZIndex are virtually the same thing, I haven't got the app with me where I used this, but I think it's something like:
Code:
img id="imgSample1" Src="images\WhiteCastle.gif" Style="ZIndex:0">
-
Sep 6th, 2002, 03:54 AM
#9
Fanatic Member
My brother is making a site in flash And he want me to write a script to print textfiles with lyrics, so nothing illegal.
I try the FSCommand thanks
-
Sep 6th, 2002, 03:56 AM
#10
robbedaya, with vbs, you can create procedures as you would in normal vb:
Code:
Sub ShowMessage(strTextValueToShow as string)
Msgbox strTextValueToShow
End Sub
So yes it's pssible to pass parameters in & use them, I can't tell you how to call this from flash though as I've never dealt with that.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|