putting a flash in a certain coordinnatre

liunx

Guest
i have a small flash with that i want to put in a certain x,y on screen how do i do that?thnaks in advance<br />
peleg<!--content-->Try this:<br />
<br />
<br />
<br />
<div style="position: absolute; left: Xpx; top: Ypx;"><br />
<br />
<!-- your flash movie in here --><br />
<br />
</div><br />
<br />
<br />
<br />
Hope this helps<!--content-->Hi there pelegk1,<br />
<br />
You can position your 'flash with 'css'<br />
Place this code within the head section..<br />
<br />
<style type="text/css"><br />
/*<![CDATA[*/<br />
#flash {<br />
position:absolute;<br />
top:20px; /*change this value to suit your needs*/<br />
left:20px; /*change this value to suit your needs*/<br />
}<br />
/*//]]>*/ <br />
</style> <br />
<br />
<br />
...and then place your 'flash' within a div like this...<br />
<br />
<br />
<div id="flash"><br />
<object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" ....etc><br />
</object><br />
</div><br />
<br />
<br />
coothead<!--content-->The first solution is also using CSS, just that it's in-line.<br />
<br />
Why all the xml stuff?<!--content-->Hi there zingmatter,<br />
<br />
I see no conflict in our two posts :D<br />
Yours is inline and mine is external.<br />
Having said that I probably would not<br />
have replied if I had seen your solution<br />
earlier, but it seems that we were<br />
preparing answers at approximately the<br />
same time :eek:<br />
<br />
quote:<br />
<br />
'Why all the xml stuff?'<br />
<br />
Sorry, but I am afraid that I do not have the answer :o <br />
<br />
coothead<!--content-->I guess I wasn't sure if inline styles are considered CSS. As for the /*<![CDATA[*/ that just makes me nervous cos I know nothing of XML and the people on this forum like their standards and I don't use them and they might start shouting at me for not using standards..aaarrgggghhhh.....<br />
<br />
...the screens nurse...it's time for my medication.<br />
<br />
:eek:<!--content-->Hi there zingmatter,<br />
<br />
So, what is the medication that you have been prescribed....<br />
<br />
'Glenmorangie' :)<br />
<br />
coothead<!--content-->That'll do it :)<!--content-->the xml stuff you refer to is the equivalent to the comment tag. For plain html your code would be:<br />
<br />
<style type="text/css"><br />
<!--<br />
#flash {<br />
position:absolute;<br />
top:20px; /*change this value to suit your needs*/<br />
left:20px; /*change this value to suit your needs*/<br />
}<br />
--> <br />
</style><!--content-->There was no XML appearing there.<!--content-->Originally posted by zingmatter <br />
Why all the xml stuff? <br />
<!-- m --><a class="postlink" href="http://forums.webdeveloper.com/showthread.php?s=&threadid=28037">http://forums.webdeveloper.com/showthre ... adid=28037</a><!-- m --><!--content-->'http://forums.webdeveloper.com/show...;threadid=28037'<br />
<br />
gives....<br />
<br />
404 error -- File not found -- Uh-oh!<br />
<br />
The plot thickens :D<br />
<br />
coothead<!--content-->That's because the forum is being changed. The url has gone from being a subdomain to being a folder.<br />
<br />
Edit: <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/showthread.php?s=&threadid=28037">http://www.webdeveloper.com/forum/showt ... adid=28037</a><!-- m --> was the desired link.<!--content-->Originally posted by coothead <br />
gives....<br />
<br />
404 error -- File not found -- Uh-oh!<br />
<br />
The plot thickens :D<br />
<br />
coothead <br />
Lol. I posted that before the forums started... “morphing,” for lack of a better word. See the link Dave posted.<!--content-->
 
Back
Top