Answer the question
In order to leave comments, you need to log in
How to fix an error in an object?
Hello everyone, there is such a question:
I created a 3D tour, but it works for me, but does not show anything (the block does not open with the content and I believe that the flash itself does not load either). Tell me pzhl what could be the trouble?
Here is this code:
<div class="show-tour">
<input id="tour" class="tour" type="checkbox" />
<label for="tour">
<label for="tour">3D тур</label>
</label>
<div class="tour__open">
<object id="flag" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="600" height="451">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="http://visualhotels.com/files/01/010167/Panoramas/7637_f.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="rt" />
<param name="wmode" value="transparent" />
</object>
</div>
</div>
Answer the question
In order to leave comments, you need to log in
Write type and data attributes:
<object type="application/x-shockwave-flash" data="http://visualhotels.com/files/01/010167/Panoramas/7637_f.swf" id="flag" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="600" height="451">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="http://visualhotels.com/files/01/010167/Panoramas/7637_f.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="rt" />
<param name="wmode" value="transparent" />
</object>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question