Help - Search - Members - Calendar
Full Version: Resize Slide SWF
Forums > Resource Center > Support Center > MySpace Support > Myspace Resolved Topics
ZeT0
I can't resize the Slide picture .swf D:
Here's the code ;
CODE
<p style="visibility:visible;"><object type="application/x-shockwave-flash" data="http://widget-c8.slide.com/widgets/slideticker.swf" height="320" width="426" style="width:426px;height:320px"><param name="movie" value="http://widget-c8.slide.com/widgets/slideticker.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="l" /><param name="wmode" value="transparent"/> <param name="flashvars" value="cy=ms&il=1&channel=3314649325781717448&site=widget-c8.slide.com"/></object><p style="white-space:nowrap"><a href="http://www.slide.com/pivot?cy=ms&at=ms&id=3314649325781717448&map=1" target="_blank"><img src="http://widget-c8.slide.com/p1/3314649325781717448/ms_t000_v000_s0ms_f00/images/xslide1.gif" border="0" ismap="ismap" /></a> <a href="http://www.slide.com/pivot?cy=ms&at=ms&id=3314649325781717448&map=2" target="_blank"><img src="http://widget-c8.slide.com/p2/3314649325781717448/ms_t000_v000_s0ms_f00/images/xslide2.gif" border="0" ismap="ismap" /></a> <a href="http://www.slide.com/pivot?cy=ms&at=ms&id=3314649325781717448&map=F" target="_blank"><img src="http://widget-c8.slide.com/p4/3314649325781717448/ms_t000_v000_s0ms_f00/images/xslide42.gif" border="0" ismap="ismap" /></a></p></p>


Here's what I changed it to, too resize it, and put it in the <div> to position it ;
CODE
<p style="visibility:visible;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="426" width="850" style="width:850px;height:426px">
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
<param name="movie" value="http://widget-c8.slide.com/widgets/slideticker.swf" />
<param name="wmode" value="transparent" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="l" />
<param name="flashvars" value="cy=ms&il=1&channel=3314649325781717448&site=widget-c8.slide.com" />
<embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://widget-c8.slide.com/widgets/slideticker.swf" height="426" width="850" style="width:850px;height:426px" wmode="transparent" quality="high" scale="noscale" salign="l" flashvars="cy=ms&il=1&channel=3314649325781717448&site=widget-c8.slide.com" />
</object>


I obviously failed, but I'm not sure where?
It'd be great if someone could help me! :D
Mikeplyts
Try looking for the img tags and adding style properties to them. Like this:
CODE
<img src="image_url" style="border:0; height:###px; width:###px;" />


And if that's not the case, then I'm guessing that this part is what you should edit in the first code: (in red)
CODE
<object type="application/x-shockwave-flash" data="http://widget-c8.slide.com/widgets/slideticker.swf" height="320" width="426" style="width:426px;height:320px">

Also, it seems that that in the above code, there is a semicolon missing after the height:320px property.
ZeT0
Wait wait, so you're saying I need to go though EVERY img tag and do that?
Mickey
I think Mike misread your first post. If you want to resize only that slideshow, try placing it in a DIV with its own class, like this:

CODE
<div class="slideshow">
Insert slideshow codes here.
</div>

Then when you style it, it should look something like this:

CODE
.slideshow object, .slideshow embed {height:#px!important; width:#px!important;}

Replace the pound symbols with appropriate values. If you already have a DIV for it, just replace the classes with the one you're using.
ZeT0
Thanks heaps Mike!
Mickey
Topic closed & moved.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.