active questions tagged swfobject - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T02:29:32Zhttp://stackoverflow.com/feeds/tag/swfobjecthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1832740/play-multiple-flv-file-in-single-swf-object0play multiple flv file in single swf objectavinash2009-12-02T12:58:10Z2009-12-02T18:35:24Z
<p>Hi,
I have one swf object in my site.</p>
<p>I have to read data from database and after fetching data of video names,</p>
<p>I need to play those video in single swf object one by one, means after completion of first video second video will start.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1813772/forgive-me-whoever-for-i-have-sinned-embedding-multiple-flash-player-insta0Forgive me 'whoever' for I have sinned... (embedding multiple Flash Player instances using swfobject via a usercontrol)panama2009-11-28T21:01:27Z2009-11-30T01:57:57Z
<p>I have a ListView on a Page within a MasterPage and some very ugly ugly autogenerated IDs.</p>
<p>Such as..."ctl00_workbenchPlaceHolder_ListView1_ctrl1_LibItem2One"</p>
<p>Using swfobject.embedSWF(...) requires me to hand over the id of a div on my page that can be replaced with object/embed markup depending on the browser context.</p>
<p>My aim is to show the user a collection of video's they have uploaded to their website so they can review them and change some related data if desired.</p>
<p>Hence the ListView which is populated via a SQLDataSource which currently provides a number of URLs pointing to .flv files.</p>
<p>But it ain't gonna work if I put a <div id="replaceme"></div>' in my user control because I may then have more than one id="replaceme" and poor swfobject won't like it.</p>
<p>So my evil solution is to put an <asp:Literal> in my usercontrol and build the script, function name and div tag id as a string.</p>
<p>ApplyVideoConfiguration is called if the library object retreived from the database is a video and switches to the relevant View of a MultiView control.</p>
<pre><code> protected void ApplyVideoConfiguration()
{
MultiViewLibItem.ActiveViewIndex = 3;
string functionName = "MakeFlashFor_" + this.ClientID;
string divId = "fp" + this.ClientID;
VideoScriptLiteral.Text =
"<script type=\"text/javascript\">" +
"Sys.Application.add_load(" + functionName + ");" +
"function " + functionName + "(){" +
"swfobject.embedSWF('PanamaVideoThumbnail.swf', '" + divId + "', '140', '127', '10');" +
"};" +
"</script>" +
"<div id=\"" + divId + "\" ></div>" ;
}
</code></pre>
<p>I was wondering, just how bad a solution is this, I'm really completely inexperienced when it comes to best practices but my instincts are telling me this is bad, although it does succeed in the aim of embedding some Flash Player instances.</p>
<p>Can anyone help me make it beautiful?</p>
http://stackoverflow.com/questions/1768632/differences-between-swfaddress-and-jsinterface-which-to-choose1Differences between SWFAddress and JSInterface... which to choose?viatropos2009-11-20T06:09:30Z2009-11-26T20:17:59Z
<p>What are the differences between <a href="http://code.google.com/p/swfobject/" rel="nofollow">SWFObject</a>/<a href="http://www.asual.com/swfaddress/" rel="nofollow">SWFAddress</a> and <a href="http://code.google.com/p/jsinterface/" rel="nofollow">JSInterface</a>?</p>
<p>JSInterface has a lot more functionality but SWFAddress seems to be the standard, so I'm wondering what you choose to use and why, and if you could use both of them.</p>
<p>Can you even do SWFAddress-like things with JSInterface? I can't seem to find out how to do "back", "forward", and to update/listen-for the url changes...</p>
http://stackoverflow.com/questions/1793743/can-you-load-swfobject-js-or-jquery-swfobject-in-the-footer1can you load swfobject.js or jquery.swfobject in the footergary2009-11-24T23:40:37Z2009-11-25T15:36:22Z
<p>can you load swfobject.js or jquery.swfobject in the footer, below the div being replaced?</p>
<p>I'd love to keep all of my javascript loading at the bottom of the page but swfobject seems to fail if it isn't loaded before any divs to be replaced.</p>
<p>bare bones example:</p>
<pre><code><div id="flash"></div>
<div id="footer">
<script src="/static/default/default/js/jquery-1.3.2.min.js"></script>
<script src="/static/default/default/js/jquery.swfobject.1-0-9.min.js"></script>
<script type="text/javascript">
$(document).ready(
function () {
$('#flash').flash({ swf: 'test.swf' });
});
</script>
</div>
</code></pre>
http://stackoverflow.com/questions/1772270/swfobject-weird-behavior0swfobject weird behaviorDavid2009-11-20T18:01:30Z2009-11-20T19:21:08Z
<p>Hi All,</p>
<p>I'm using swfobject to embed my flash. It's doing weird things.</p>
<p>I've created a simple textfield using FlexBuilder. It's an AS3 project, which extends Sprite. I've set its width to be 640 and height to 450. Then, in the swfobject parameters of the page, I've also set 640 x 450. I've made the background nice and red and ugly so you can see it. :)</p>
<p><a href="http://www.brighttext.com/flash/TextFieldSetFormat.html" rel="nofollow">http://www.brighttext.com/flash/TextFieldSetFormat.html</a></p>
<p>It seems to be the right dimensions. BUT I've got a textfield which is supposed to be almost the same size and height. This runs fine in FlexBuilder (is the right size) but is all messed up once I add swfobject Can anyone see what is happening?</p>
<p>EDIT NOTE: I just looked at it and it looks ok. But then I refreshed the page and the textfield is postage-stamp size (again -- this is the original behavior I saw.) It's now looking OK in firefox but not in IE8. Flash is supposed to look the same in all browsers !!??</p>
<p>AS3 code:</p>
<pre><code>package {
import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFormat;
import flash.text.Font;
[SWF(width="640", height="450", backgroundColor="#FFFFFF", frameRate="30")]
public class TextFieldSetFormat extends Sprite
{
[Embed(source='C:/WINDOWS/Fonts/ArialBD.TTF', fontWeight = 'bold', fontName='ArialBold')]
[Embed(source='C:/WINDOWS/Fonts/Arial.TTF', fontWeight = 'regular', fontName='Arial')]
public function TextFieldSetFormat()
{
var tf2:TextFormat = new TextFormat();
tf2.size = 16;
tf2.font = "Arial";
Font.registerFont(_VerdanaFontBold);
Font.registerFont(_VerdanaFont);
var pad:Number = 10;
var brightTextField:TextField = new TextField;
brightTextField.backgroundColor = 0xDDF3B2;
brightTextField.background = true;
brightTextField.embedFonts = true;
brightTextField.border = true;
brightTextField.defaultTextFormat = tf2;
brightTextField.wordWrap = true;
brightTextField.multiline = true;
brightTextField.width = stage.stageWidth - (4 * pad);
brightTextField.height = stage.stageHeight - (3 * pad);
brightTextField.x = 2*pad;
brightTextField.y = 2*pad;
brightTextField.text = "Dear Senators, I have become concerned over the idea that some in the Senate will oppose the public option because of a group of wild-eyed, overbearing but misinformed ideologues. These people mistakenly equate insurance reform with Socialism and call our first African-American President unprintable epithets. This is unacceptable. The public option is the choice of more than 70% of Americans, a majority of the House and a great many opinion leaders. Passing insurance reform without a public option persists the current broken system. I am aware that many Senators would prefer to pass a reform bill with bipartisan support. But we cannot allow this critical debate to be hijacked by extremists or corporate profiteers. Thank you, and I look forward to hearing from you.";
addChild(brightTextField);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1537393/multiple-swf-files-not-loading-in-dnn-5-x0Multiple swf files not loading in DNN 5.Xunknown (google)2009-10-08T12:04:21Z2009-11-17T13:38:30Z
<p>Hi Guys,</p>
<p>We have run numerous tests now and it has now come down to either a DNN-SWFObject loading multiple swf files on a page or Firefox bug.</p>
<p>Here's the outcome we need:</p>
<p>Two swf files on one page:</p>
<ol>
<li>Header.swf: which holds the nav and some bling animation.</li>
<li>Map.swf: which has different provinces of the country highlighted on rollover. The active province is highlighted by reading the URL via Javascript and then loaded into the Map.swf via FlashVars.</li>
</ol>
<p>In all of our other tests in other browsers, the scenario works very well but in Firefox 3.5.3 The swf files refuse to show.</p>
<p>We have stripped this test down to the bare minimum, one html page scenario and embedding it the same way using SWFObject 2.2 and this works in Firefox. When it is uploaded in DNN, the swf files refuse to show.</p>
<p>Is there anything anyone can think of?</p>
<p>Many thanks,
James</p>
http://stackoverflow.com/questions/1725640/swfobject-and-mootools-dynamic-movie-height0Swfobject and MooTools: Dynamic movie heightMarcy Sutton2009-11-12T21:48:30Z2009-11-14T08:23:05Z
<p>Greetings.</p>
<p>I am developing an animated homepage for a Flash-HTML hybrid website, and for the sake of standards, my solution is proving difficult. I am not a Javascript pro, so any help is appreciated! </p>
<p>Here is the run-down:</p>
<p>For Flash users, HTML page loads a variable-height AS3 Flash movie that will start at <strong>556 pixels high</strong>, and after finishing its animation sequence, tween via Actionscript + JavaScript to <strong>250 pixels high</strong>.</p>
<p>To kick off this movie sequence -- <em>(below-left)</em> -- I am attempting to set the initial height of the Flash movie via MooTools, so if users do not have Flash or Javascript enabled, they will see the shorter-height image area with alternative image content and HTML content revealed <em>(below-right)</em>. </p>
<p><code>Element.setStyle</code> sets the height just fine until swfObject runs, at which point the movie collapses since I am not specifying a height via CSS. If users do not have Flash, it defaults to the height of a static image.</p>
<p>So here is my question: Does anyone know how to dynamically pass a height variable to swfobject when it is set up to width/height @ 100%? Am I killing myself for no reason trying to work with two page heights?</p>
<p><strong>Image Sequence:</strong><br>
Left - <em>Initial Flash movie with HTML navigation below</em><br>
Right - <em>Resized movie at the end of the sequence with HTML nav & content below, looks the same as no-Flash version (static image)</em> </p>
<p><img src="http://client.deicreative.com/op/images/twopages.jpg" alt="alt text"></p>
<pre><code> ^^ should land here for users w/o Flash
<script type="text/javascript">
<!--
window.addEvent('domready', function() {
$('flashContent').setStyle('height', 556); // sets height for initial movie
$('homeContent').setStyle('display', 'none'); // hides homepage text + photos below
doSwfObject(); // attempting to start swfObject after setStyle is done
});
function resizePage(h) { // to be called from AS3
var tweenObj = new Fx.Tween('flashContent');
tweenObj.start('height', h);
}
function doSwfObject(){
var flashvars = {};
var params = { scale: "noScale" };
var attributes = { id: "flashContent", name: "flashContent" };
swfobject.embedSWF("swf/homeMovie.swf", "flashContent", "100%", "100%", "9.0.0", false, flashvars, params, attributes);
alert(document.getElementById('flashContent').style.height);
// alerts & shows correct height, but page collapses after hitting 'ok'
}
//-->
</script>
</code></pre>
http://stackoverflow.com/questions/1703411/css-menu-hides-behind-flash-only-in-ie-swfobject2CSS Menu hides behind flash only in IE (SWFObject)David2009-11-09T20:06:03Z2009-11-11T04:10:55Z
<p>I know that this question is asked a lot, I checked all of the "related questions" before posting this and I tried all of the different solutions I could find, but to no avail.</p>
<p>I am working on a site at Site Page and there is a header navigation using Pop Menu Magic which the original creator used, it currently is hiding under the swf that is playing below it in only IE while working perfectly in Firefox.</p>
<p>I have tried everything from changing the wmode to transparent or opaque, using z-index on the different divs, ensuring they have a defined position, etc.</p>
<p>Any help would be greatly appreciated.</p>
<p>Here's the "embed" code:</p>
<pre><code><div id="slideShow">
<div id="flashcontent">
This text will be replaced by the SWFObject Flash Inclusion.
</div>
<script type="text/javascript">
var so = new SWFObject("flash-banner2.swf", "mymovie", "747", "258", "8", "#000");
so.addParam("quality", "high");
so.addParam("wmode", "opaque");
so.write("flashcontent");
</script>
</div>
</code></pre>
<p>Thanks again for your help.</p>
<p>Stack Overflow only let's me post 1 hyperlink initially so I'll put the css In a comment.</p>
http://stackoverflow.com/questions/1704770/iframe-swfobject-load-problems0iframe swfObject load problemsWendy2009-11-09T23:58:51Z2009-11-10T18:37:18Z
<p>I'm clicking on a link within an iframe and loading an html file into a div in the parent window, using jquery. This does load the content into the div in the parent window (I'm using top.document to refer to it), but part of that html file is loading swfobject with a new variable, to play a different swf. It works fine all on one page, but if I call it from the iframe, it doesn't reload SWFObject, but does load the rest of the html file... I'm baffled.</p>
http://stackoverflow.com/questions/1317297/make-swf-fill-tables-remaining-space0make swf fill table's remaining spaceBrian2009-08-22T23:22:24Z2009-11-04T19:00:02Z
<p>Unable to figure out proper layout divs,,, </p>
<ul>
<li>I use a table row with 3 cells for a header,</li>
<li>another row for a footer,</li>
<li>and one row, colspanning 3 cells for the swf content.</li>
</ul>
<p>I need my swf to occupy all remaining space, true to it's original aspect ratio of 600x450. Naturally, the table is 100% width and height, and my 3 colspanned content cell is 100% width. The table without the swf works fine.</p>
<p>The problem lies in getting my swf to occupy the full height & width of the cell. Of course, if I was smart enough, I'd have done it with divs, but I thought that, after I'd dropped that idea and went with a table, that everything would be easy.</p>
<p>Instead, my swf either wants to be very small or fill the entire page. Any help appreciated.</p>
<p><hr /></p>
<pre><code><table width="100%" height="100%" border="0" align="center" >
<tr height="100 px">
<td width="200"><img src="images/a.png" width="200" height="100" /></td>
<td height="100" align="center">&lt;?&gt;google ad</td>
<td width="200" height="100"><img src="b.png" width="200" height="100" /></td>
</tr>
<tr><td colspan="3">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="myFlashContent" width="100%" height="100%">
<param name="movie" value="swfs/a.swf" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="swfs/a.swf" width="100%" height="100%">
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif"
alt="Get Adobe Flash player" />
</a>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</td></tr>
<tr><td colspan="3" align="center">footer</td></tr>
</table>
</code></pre>
http://stackoverflow.com/questions/1673414/error-using-zeroclipboard-js-script-in-ie0Error using ZeroClipboard js script in IEbasit.2009-11-04T12:10:45Z2009-11-04T12:32:00Z
<p><a href="http://pasite.org/code/281?theme=lazy" rel="nofollow">http://pasite.org/code/281?theme=lazy</a></p>
<p>im getting error, which i dont get on firefox or chrome. </p>
<p>it says on line 235</p>
<pre><code> this.movie.setText( this.clipText );
this.movie.setHandCursor( this.handCursorEnabled );
</code></pre>
<p>when i comment the above two line, then i dont get any error, but my script wont work anymore eaither. i dont know why its showing this error, everything is fine in firefox and chrome.</p>
<p><strong>EDITED</strong>
this error shows on mouse over, sence zeroClipboard gets set on mouseOver</p>
<pre><code> Error is:
line: 235
char: 5
Error: Object doesn't support this property or method
code: 0
URL:....
</code></pre>
<p>my jQuery for setting the ZeroClipboard on top of the input box</p>
<pre><code>// coping method on inputbox's
ZeroClipboard.setMoviePath('/javascript/jquery/ZeroClipboard.swf');
// copying share input boxs
$("input[name='htmlcode'], input[name='directlink'], input[name='emaillink'], input[name='imgcode']").live('mouseover', function() {
clip = new ZeroClipboard.Client();
clip.setHandCursor(true);
clip.setText($(this).val());
var width = $(this).width();
var height = $(this).height()+10;
var flash_movie = '<div>'+clip.getHTML(width, height)+'</div>';
flash_movie = $(flash_movie).css({
position: 'relative',
marginBottom: -height,
width: width,
height: height,
zIndex: 101
})
.click(function() {
$(this).next('input').indicator({className: 'copied', wrapTag: 'div', text: 'Copied!', fadeOut: 2000, display: 'after'});
})
.insertBefore(this);
</code></pre>
http://stackoverflow.com/questions/499949/flash-loads-twice-workaround1Flash loads twice workaround?GeoffreyF672009-02-01T01:02:27Z2009-11-03T20:33:11Z
<p>While investigating a reported problem with my site loading slowly, I came across an issue where I noticed (via firebug) that my flash file was loading twice.</p>
<p>After a bit of investigation I tracked it down to a <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=438830" rel="nofollow">firefox bug</a> combined with the usage of SWFObject 2.0.</p>
<p>Now, I noticed on the thread that someone mentioned that you can workaround the problem by:</p>
<blockquote>
<p>FYI, if you're a webpage developer then an easy workaround to get your page
working with FF3 is to delay accessing any plugins until after your page has
fully loaded. An easy way to do this is to schedule your plugin scripting code
to run after all pending browser events using window.setTimeout with a timeout
of zero.</p>
</blockquote>
<p>Honestly, I have no clue what they're saying and am hoping someone can give me a code example that will work.</p>
<p>Do you know of a way to make this work and what the code would look like? Any help would be immensely appreciated!</p>
http://stackoverflow.com/questions/1637136/codeigniter-site-swfobject-not-fully-loading-swf0codeigniter site, swfobject not fully loading swfJoe2009-10-28T13:06:31Z2009-10-31T15:18:56Z
<p>I am having a strange problem. I have a view that is supposed to load a swf. The swf was compiled with Flex and the mxml preloader displays but it loads a blank screen. When I path directly to the file it loads fully and works fine. </p>
<p>Other possibly relevant information:
The swf makes calls through GET requests to the database
the site is built with codeigniter
I'm using swfobject to load the swf</p>
<p>you can see it in all it's busted glory here:
<a href="http://thetoad.flattoads.com:16080/~iopdev/CI/index.php?c=moodtotem&m=index" rel="nofollow">http://thetoad.flattoads.com:16080/~iopdev/CI/index.php?c=moodtotem&m=index</a></p>
<p>I'm going bonkers over this!</p>
http://stackoverflow.com/questions/1643399/how-to-dynamically-retrieve-the-page-url-within-flash-using-swfobject-javascrip0How to dynamically retrieve the page URL within Flash using swfobject / JavaScriptdeclan2009-10-29T12:32:35Z2009-10-29T13:17:01Z
<p>Hi,</p>
<p>I have created my own video player using Flash and AS3. Within the flash movie, i have a link which allows the user to copy the object embed code and page url on their own site, similiar to youtube. The player all works fine and retrieves the right flv's depending on what page you are own. I also have the object embed code working fine. What i am having trouble with is getting the page URL. </p>
<p>As you can see from my code below, i am using swfobject2.2 to embed the movie on my web page and i am using FlashVars to call and play .flv within the player. I just need some JavaScript code to bring back the specific url from whatever page: flashvars.pageURL = " "; </p>
<p>I should also mention, i am working with jsp's within Eclipse.</p>
<pre><code><script type="text/javascript">
var flashvars = {};
flashvars.videoToPlay = "http://website.com/video1.flv";
flashvars.pageURL = "This is the page url";
var params = {};
params.quality = "high";
var attributes = {};
swfobject.embedSWF("player.swf", "flashContent", "433", "328",
"9.0.0","expressInstall.swf", flashvars, params, attributes);
</script>
</code></pre>
<p>Does anyone know how i would do this? I presume it can be done using JavaScript.</p>
<p>thanks<br>
Declan</p>
http://stackoverflow.com/questions/1188372/strange-firefox-swfobject-display-issue0Strange Firefox SWFObject display issueToby Mills2009-07-27T14:11:48Z2009-10-28T10:06:55Z
<p>Hi,</p>
<p>I am having the strangest issue with a site i am developing. On the homepage i have a flash slide show which displays fine in IE. However it does not appear in Firefox but instead leaves a white space. </p>
<p>I am using SWFObject to display the flash. I knows its at least firing as the holding image is removed. However if i right click on the white area i get an HTML context menu not a flash menu which suggests its not even writing the flash object to the page let alone loading the flash SWF file.</p>
<p>If i save the source of the homepage to a static HTML and upload that to the server it works fine. </p>
<p>Could this be anything to do with the file encoding or http headers?</p>
<p>I've tried so many things like removing content, JS, CSS etc. The fact that a static version of the file works but the server driven ones does not is driving me mad.</p>
<p>The server is running Joomla CMS.</p>
<p>The code is:</p>
<pre><code><script type="text/javascript" src="/scripts/swfobject.js"></script>
<script type="text/javascript">swfobject.embedSWF("/flash/loader.swf", "flashContent", "960", "310", "9.0.0", "/flash/expressInstall.swf");</script>
</code></pre>
<p>HTML Code:</p>
<pre><code><div class="middle" id="flashContent">
<img class="panelBgImage" src="/images/main/Home.jpg" title="Home"/>
</div>
</code></pre>
<p>A temporary version of the site can be seen @ <a href="http://slc.synterax.com/" rel="nofollow">http://slc.synterax.com/</a> (Available until 06/08/2009)</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1630802/firefox-3-5-3-windows-flash-swfobject-wmode-problem0Firefox 3.5.3 Windows + Flash + swfobject wmode problemJamie2009-10-27T13:28:51Z2009-10-27T15:37:29Z
<p>I'm having issues with Firefox 3.5.3 Windows embedding Flash using wmode.</p>
<p>If I set the wmode parameter to 'transparent' or 'opaque' Firefox 3.5.3 Win XP (Flash player 10.0.32.18 r32) completely fails to embed the movie, but it works in everything else, including IE on the same machine and the same FF in Mac OS.</p>
<p>Can anyone help please?</p>
<p>I put together a test page of this issue here. If it works you should see a video player and streaming movie.</p>
<p><a href="http://mutualsforum.wanderingbear.co.uk/flashtest.html" rel="nofollow">http://mutualsforum.wanderingbear.co.uk/flashtest.html</a></p>
<p>Thanks</p>
http://stackoverflow.com/questions/1604092/swf-file-displayed-but-xml-data-not-loading-into-the-swf-embedded-in-aspx-page0SWF file displayed but xml data not loading into the swf embedded in aspx pageJaimie lisa Stow2009-10-21T22:48:19Z2009-10-26T08:06:23Z
<p>the flash map calls the xml external file which contains data
the map shows in firefox and works a treat but wont show any of the xml data
Help</p>
http://stackoverflow.com/questions/1618191/file-paths-in-swfobject0File Paths in swfObjectfmz2009-10-24T14:55:03Z2009-10-24T14:55:03Z
<p>I have been using swfobject for some time now and I always seem to have one recurring issue that I could use some insight on.</p>
<p>If I create a page with a swfobject and the swf file is in the same directory, I can always get it to load properly. However, if I have the swf file and in some cases the .xml file and related images in another directory, I don't seem to be able to link the content to the page properly.</p>
<p>How do I set the parameters to bring those files in correctly?</p>
<p>For example if I have the swf file, .xml file and images folder in the a directory called <strong>flash</strong> and my html page is in the root directory I would do my code like this:</p>
<pre><code>enter code here<object id="myId" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="300" height="120">
<param name="movie" value="flash/test.swf" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="flash/test.swf" width="300" height="120">
<!--<![endif]-->
<div>
<h1>Alternative content</h1>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</code></pre>
<p></p>
<p>But this somehow breaks the link. Are there other parameters that I need to enter somewhere to get this to link properly?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1618123/swfobject-flash-not-showing0swfobject - flash not showingfmz2009-10-24T14:15:26Z2009-10-24T14:31:58Z
<p>I am experiencing some difficulty in having the flash content show on <a href="http://projectpath.ideapeoplesite.com/rutland/printing-testimonials.html" rel="nofollow">this page</a>. I have checked the code and the paths and everything appears to be correct. I have another <a href="http://projectpath.ideapeoplesite.com/rutland/assets/flash/index.html" rel="nofollow">page</a> in the same directory as the swf file and it works fine so I know that swfobject and the swf file are working properly.</p>
<p>Any ideas why the swf file is not showing properly in the first page?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1580809/html-flash-hybrid-website-rollover-issues-in-firefox-31Html/Flash Hybrid Website: rollover issues in Firefox 3Marcy Sutton2009-10-16T22:55:54Z2009-10-17T15:02:38Z
<p>Hi There,</p>
<p>I am currently developing a PHP website that has a lot of Flash components. On each page there are one or more custom Flash components embedded with swfObject, as well as sIFR navigation. </p>
<p>Every so often, ALL of the Flash objects on the page become unresponsive to the mouse (no hand pointer). So far I have found it happening only in Firefox 3.5.3 on Mac. I am using CSS to position everything with a specific stacking order to get around the bounding-box overlap issue - for example, the main navigation overlaps the top right corner of a big Flash component. </p>
<p>It works fine most of the time, however, if I click through the pages enough times in Firefox 3 on Mac, eventually I cannot "roll over" any of the Flash elements.</p>
<p>Does anyone know why all the Flash objects in a PHP page would stop responding to the mouse, sIFR included?</p>
<p><a href="http://thestationatothellopark.com/test/index.php" rel="nofollow">Here is the site</a> if you want to give it a try.</p>
http://stackoverflow.com/questions/1577762/flash-detection-with-swfobject1Flash detection with SWFObjectJenea2009-10-16T12:28:48Z2009-10-16T13:55:14Z
<p>I don't quite understand the SWFObject examples downloaded http://download.macromedia.com/pub/developer/alternative_content_examples.zip'>here.</p>
<p>Why the availability of the flash plugin is checked only by
<|--[if !IE]> --> instructions.
Does it mean that just IE can be without preintalled flash player? Of course no. Then why
just IE is checked?</p>
http://stackoverflow.com/questions/1574663/audio-echo-in-flash-using-simplemodal-and-swfobject0Audio echo in Flash using simplemodal and swfobjectlaura2009-10-15T19:55:45Z2009-10-15T22:29:38Z
<p>When the user clicks on a thumbnail it activates swfobject and simple modal. It opens the modal and loads the swf into the modal. The swf is loading an flv. I used Flash to do the flv -> swf thing. </p>
<p>In IE7 there is an audio echo when it's being played in the modal, but not when just watching the swf from the server. I have sucessfully used this same code on several sites but never encountered the echo before. There is definitly only one swf loading. </p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1566780/flash-swf-object-affecting-element-padding0Flash/SWF Object Affecting Element PaddingAndrew2009-10-14T14:46:10Z2009-10-14T14:56:19Z
<p>I've been racking my brain trying to figure this one out as it's been a problem on the past few sites I've worked on (though they haven't gone live yet) and rather than trying to rig up a solution I'd like to try and discover the root of the problem.</p>
<p>Here's the site in question: <a href="http://www.secantmedical.com/new/" rel="nofollow">http://www.secantmedical.com/new/</a></p>
<p>Basically I coded this homepage out as plain HTML and then inserted Javascript and Flash elements as I completed them over time. When I got to adding the Flash (using SWF Object), I noticed that it had pushed the elements beneath it down roughly 5px, and only in Firefox and Safari (Internet Explorer, oddly enough, isn't effected). Turning off Flash or disabling Javascript, which also turns the Flash off, removes this extra padding.</p>
<p>Can someone enlighten me as to what is causing this issue? I don't notice any major JS or CSS errors (other than a few hacks for IE), so I'm stumped.</p>
http://stackoverflow.com/questions/1557516/flash-not-displaying-properly-in-browsers0Flash not displaying properly in browsersSoulieBaby2009-10-12T23:34:06Z2009-10-13T01:22:37Z
<p>Hi all, I've got a fla player and I'm trying to get it to display inside a div properly, it looks ok in IE (only after you refresh the page), but none of the other browsers show it properly (only 1/4 of the tv shows).. The flash document size is 336px x 220px and I've placed the tv and remote inside.</p>
<p>I'm using SWFObject to call the flash using this:</p>
<pre><code><script type="text/javascript">
var so = new SWFObject("tv.swf?videoUrl=video1.flv&imageUrl=image/image1.jpg&tvName=", "DSI", "100%", "100%", "6", "");
so.addVariable("autostart","true");
so.addParam("allowFullScreen", "true");
so.write("flashcontent");
</script>
</code></pre>
<p>And it sits inside a div which is also 336px x 220px with a red border (for visibility only).</p>
<p>Here's the URL: <a href="http://live.gfwa.360southclients.com/commercial/test.html" rel="nofollow">http://live.gfwa.360southclients.com/commercial/test.html</a></p>
<p>Can someone help me out with this to get it to display ok, I'm not so good with flash etc.. :S</p>
<p>Oh and here's the action script file:</p>
<pre><code>package
{
import flash.display.*;
import flash.events.*;
import flash.media.*;
import flash.net.*;
import flash.utils.*;
public class tvplayer extends MovieClip
{
private var seekbarChangeInterval:uint;
private var vid:Video;
private var mute:Boolean;
private var imageUrl:String;
public var remote_mc:MovieClip;
private var realVideoWidth:Number;
private var volumeChangeInterval:uint;
private var videoLoaded:Boolean;
private var currentState:Boolean;
private var req:URLRequest;
private var screenHeight:Number;
private var screenWidth:Number;
private var seekbarHideTimer:Timer;
private var videoUrl:String;
private var realVideoHeight:Number;
private var totalVideoTime:Number;
public var All_mc:MovieClip;
private var xmlLoader:URLLoader;
private var muteHideTimer:Timer;
private var volumeHideTimer:Timer;
private var videoLoadedInterval:uint;
private var imageLoader:Loader;
private var videoLoadedTime:Number;
private var showVideo:Boolean;
private var nc:NetConnection;
private var ns:NetStream;
private var latestVolumeVal:Number;
public function tvplayer() : void
{
nc = new NetConnection();
currentState = false;
screenHeight = 336;
screenWidth = 580;
setValues();
readFlashVars();
addButtonsEvents();
arrangeObjects();
loadImage();
loadVideo();
return;
}// end function
private function videoFinished() : void
{
ns.close();
vid.clear();
All_mc.lcd_mc.removeChild(vid);
All_mc.lcd_mc.imageHolder_mc.alpha = 1;
remote_mc.playpause_mc.play_mc.visible = true;
remote_mc.playpause_mc.pause_mc.visible = false;
clearInterval(videoLoadedInterval);
videoLoaded = false;
currentState = false;
return;
}// end function
public function loadImage() : void
{
try
{
imageLoader = new Loader();
imageLoader.load(new URLRequest(imageUrl));
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, createImage);
}
catch (e:Error)
{
}
return;
}// end function
private function setValues()
{
videoUrl = "video/video1.flv";
imageUrl = "image/image1.jpg";
All_mc.txt.text = "Your Logo";
remote_mc.playpause_mc.pause_mc.visible = false;
mute = false;
latestVolumeVal = 1;
videoLoadedTime = 0;
All_mc.muteDisplay_mc.visible = false;
All_mc.volumeDisplay_mc.visible = false;
All_mc.volumeDisplay_mc.volumeBar_mc.width = latestVolumeVal * 348;
All_mc.seekbarDisplay_mc.visible = false;
muteHideTimer = new Timer(2000, 1);
muteHideTimer.addEventListener(TimerEvent.TIMER, hideMuteDisplay);
volumeHideTimer = new Timer(2000, 1);
volumeHideTimer.addEventListener(TimerEvent.TIMER, hideVolumeDisplay);
seekbarHideTimer = new Timer(2000, 1);
seekbarHideTimer.addEventListener(TimerEvent.TIMER, hideSeekbarDisplay);
stage.addEventListener(FullScreenEvent.FULL_SCREEN, fsEvent);
stage.addEventListener(Event.RESIZE, resizeHandler);
remote_mc.ledOn_mc.alpha = 0;
return;
}// end function
private function hideVolumeDisplay(event:TimerEvent) : void
{
All_mc.volumeDisplay_mc.visible = false;
volumeHideTimer.stop();
return;
}// end function
private function seekDown_mouseDown(event:MouseEvent) : void
{
All_mc.muteDisplay_mc.visible = false;
muteHideTimer.stop();
All_mc.volumeDisplay_mc.visible = false;
volumeHideTimer.stop();
ledon();
ns.pause();
seekDown();
seekbarChangeInterval = setInterval(seekDown, 200);
return;
}// end function
private function metaDataGather(param1:Object) : void
{
realVideoHeight = param1.height;
realVideoWidth = param1.width;
totalVideoTime = param1.duration;
setMovieScale();
return;
}// end function
private function seekDown_mouseUp(event:MouseEvent) : void
{
ns.resume();
if (seekbarChangeInterval)
{
clearInterval(seekbarChangeInterval);
}
seekbarHideTimer.start();
ledoff();
return;
}// end function
private function outButton(event:MouseEvent) : void
{
event.currentTarget.out_mc.alpha = 1;
event.currentTarget.over_mc.alpha = 0;
return;
}// end function
private function updateLoader() : void
{
videoLoadedTime = Math.floor(totalVideoTime * (ns.bytesLoaded / ns.bytesTotal));
return;
}// end function
private function stopdrag(event:MouseEvent) : void
{
remote_mc.stopDrag();
return;
}// end function
function netStatusHandler(event:NetStatusEvent)
{
switch(event.info.code)
{
case "NetStream.Play.StreamNotFound":
{
trace("Unable to locate video");
break;
}
case "NetStream.Play.Stop":
{
videoFinished();
break;
}
case "NetStream.Seek.InvalidTime":
{
break;
}
default:
{
break;
}
}
return;
}// end function
private function volumeUp_mouseDown(event:MouseEvent) : void
{
All_mc.muteDisplay_mc.visible = false;
muteHideTimer.stop();
All_mc.seekbarDisplay_mc.visible = false;
seekbarHideTimer.stop();
ledon();
volumeUp();
volumeChangeInterval = setInterval(volumeUp, 200);
return;
}// end function
private function arrangeFullscreenObjects() : void
{
All_mc.lcd_mc.width = stage.stageWidth;
All_mc.lcd_mc.height = stage.stageHeight;
var _loc_1:int = 0;
All_mc.lcd_mc.y = 0;
All_mc.lcd_mc.x = _loc_1;
var _loc_1:int = 0;
All_mc.y = 0;
All_mc.x = _loc_1;
remote_mc.x = All_mc.lcd_mc.x + All_mc.lcd_mc.width - remote_mc.width - 30;
remote_mc.y = All_mc.lcd_mc.y + All_mc.lcd_mc.height - remote_mc.height - 30;
All_mc.volumeDisplay_mc.x = Math.floor(All_mc.lcd_mc.x + (All_mc.lcd_mc.width - All_mc.volumeDisplay_mc.width) / 2);
All_mc.volumeDisplay_mc.y = All_mc.lcd_mc.y + (All_mc.lcd_mc.height - All_mc.volumeDisplay_mc.height) - 20;
All_mc.seekbarDisplay_mc.y = All_mc.lcd_mc.y + (All_mc.lcd_mc.height - All_mc.seekbarDisplay_mc.height) - 20;
All_mc.seekbarDisplay_mc.x = All_mc.volumeDisplay_mc.x;
All_mc.muteDisplay_mc.x = All_mc.lcd_mc.x + (All_mc.lcd_mc.width - All_mc.muteDisplay_mc.width) - 20;
All_mc.muteDisplay_mc.y = All_mc.lcd_mc.y + 20;
All_mc.txt.visible = false;
return;
}// end function
private function startdrag(event:MouseEvent) : void
{
remote_mc.startDrag();
return;
}// end function
private function clickPlayPause(event:MouseEvent) : void
{
All_mc.lcd_mc.imageHolder_mc.alpha = 0;
if (!videoLoaded)
{
loadVideo();
}
if (currentState)
{
currentState = false;
event.currentTarget.pause_mc.visible = false;
event.currentTarget.play_mc.visible = true;
ns.pause();
}
else
{
currentState = true;
ns.resume();
event.currentTarget.play_mc.visible = false;
event.currentTarget.pause_mc.visible = true;
}
return;
}// end function
private function addButtonsEvents()
{
remote_mc.playpause_mc.buttonMode = true;
remote_mc.playpause_mc.addEventListener(MouseEvent.CLICK, clickPlayPause);
remote_mc.playpause_mc.addEventListener(MouseEvent.MOUSE_DOWN, function ()
{
ledon();
return;
}// end function
);
remote_mc.playpause_mc.addEventListener(MouseEvent.MOUSE_UP, function ()
{
ledoff();
return;
}// end function
);
remote_mc.playpause_mc.play_mc.addEventListener(MouseEvent.MOUSE_OVER, overButton);
remote_mc.playpause_mc.play_mc.addEventListener(MouseEvent.MOUSE_OUT, outButton);
remote_mc.playpause_mc.pause_mc.addEventListener(MouseEvent.MOUSE_OVER, overButton);
remote_mc.playpause_mc.pause_mc.addEventListener(MouseEvent.MOUSE_OUT, outButton);
remote_mc.fullscreen_mc.buttonMode = true;
remote_mc.fullscreen_mc.addEventListener(MouseEvent.CLICK, clickFullscreen);
remote_mc.fullscreen_mc.addEventListener(MouseEvent.MOUSE_OVER, overButton);
remote_mc.fullscreen_mc.addEventListener(MouseEvent.MOUSE_OUT, outButton);
remote_mc.fullscreen_mc.addEventListener(MouseEvent.MOUSE_DOWN, function ()
{
ledon();
return;
}// end function
);
remote_mc.fullscreen_mc.addEventListener(MouseEvent.MOUSE_UP, function ()
{
ledoff();
return;
}// end function
);
remote_mc.remoteBg_mc.buttonMode = true;
remote_mc.remoteBg_mc.addEventListener(MouseEvent.MOUSE_DOWN, startdrag);
remote_mc.remoteBg_mc.addEventListener(MouseEvent.MOUSE_UP, stopdrag);
remote_mc.mute_mc.buttonMode = true;
remote_mc.mute_mc.addEventListener(MouseEvent.CLICK, toggleMute);
remote_mc.mute_mc.addEventListener(MouseEvent.MOUSE_OVER, overButton);
remote_mc.mute_mc.addEventListener(MouseEvent.MOUSE_OUT, outButton);
remote_mc.mute_mc.addEventListener(MouseEvent.MOUSE_DOWN, function ()
{
ledon();
return;
}// end function
);
remote_mc.mute_mc.addEventListener(MouseEvent.MOUSE_UP, function ()
{
ledoff();
return;
}// end function
);
remote_mc.volumeUp_mc.buttonMode = true;
remote_mc.volumeUp_mc.addEventListener(MouseEvent.MOUSE_DOWN, volumeUp_mouseDown);
remote_mc.volumeUp_mc.addEventListener(MouseEvent.MOUSE_UP, volumeUp_mouseUp);
remote_mc.volumeUp_mc.addEventListener(MouseEvent.MOUSE_OVER, overButton);
remote_mc.volumeUp_mc.addEventListener(MouseEvent.MOUSE_OUT, outButton);
remote_mc.volumeDown_mc.buttonMode = true;
remote_mc.volumeDown_mc.addEventListener(MouseEvent.MOUSE_DOWN, volumeDown_mouseDown);
remote_mc.volumeDown_mc.addEventListener(MouseEvent.MOUSE_UP, volumeDown_mouseUp);
remote_mc.volumeDown_mc.addEventListener(MouseEvent.MOUSE_OVER, overButton);
remote_mc.volumeDown_mc.addEventListener(MouseEvent.MOUSE_OUT, outButton);
remote_mc.forward_mc.buttonMode = true;
remote_mc.forward_mc.addEventListener(MouseEvent.MOUSE_DOWN, seekUp_mouseDown);
remote_mc.forward_mc.addEventListener(MouseEvent.MOUSE_UP, seekUp_mouseUp);
remote_mc.forward_mc.addEventListener(MouseEvent.MOUSE_OVER, overButton);
remote_mc.forward_mc.addEventListener(MouseEvent.MOUSE_OUT, outButton);
remote_mc.rewind_mc.buttonMode = true;
remote_mc.rewind_mc.addEventListener(MouseEvent.MOUSE_DOWN, seekDown_mouseDown);
remote_mc.rewind_mc.addEventListener(MouseEvent.MOUSE_UP, seekDown_mouseUp);
remote_mc.rewind_mc.addEventListener(MouseEvent.MOUSE_OVER, overButton);
remote_mc.rewind_mc.addEventListener(MouseEvent.MOUSE_OUT, outButton);
return;
}// end function
private function seekUp_mouseDown(event:MouseEvent) : void
{
All_mc.muteDisplay_mc.visible = false;
muteHideTimer.stop();
All_mc.volumeDisplay_mc.visible = false;
volumeHideTimer.stop();
ledon();
seekUp();
seekbarChangeInterval = setInterval(seekUp, 100);
return;
}// end function
private function volumeDown() : void
{
volumeHideTimer.stop();
if (ns.soundTransform.volume > 0)
{
if (ns.soundTransform.volume - 0.1 <= 0)
{
ns.soundTransform = new SoundTransform(0);
latestVolumeVal = 0;
}
else
{
ns.soundTransform = new SoundTransform(ns.soundTransform.volume - 0.1);
latestVolumeVal = ns.soundTransform.volume;
}
}
All_mc.volumeDisplay_mc.volumeBar_mc.width = latestVolumeVal * 348;
All_mc.volumeDisplay_mc.visible = true;
return;
}// end function
private function seekUp_mouseUp(event:MouseEvent) : void
{
if (seekbarChangeInterval)
{
clearInterval(seekbarChangeInterval);
}
seekbarHideTimer.start();
ledoff();
return;
}// end function
private function overButton(event:MouseEvent) : void
{
event.currentTarget.over_mc.alpha = 1;
event.currentTarget.out_mc.alpha = 0;
return;
}// end function
private function ledon() : void
{
remote_mc.ledOn_mc.alpha = 1;
remote_mc.ledOff_mc.alpha = 0;
return;
}// end function
private function seekUp() : void
{
if (ns.time < totalVideoTime)
{
if (ns.time + 2 >= videoLoadedTime)
{
ns.seek(videoLoadedTime);
}
else
{
ns.seek(ns.time + 2);
}
}
All_mc.seekbarDisplay_mc.seekbar_mc.width = ns.time / totalVideoTime * 348;
All_mc.seekbarDisplay_mc.visible = true;
return;
}// end function
private function loadVideo() : void
{
videoLoaded = true;
nc.connect(null);
ns = new NetStream(nc);
vid = new Video();
ns.client = new Object();
ns.bufferTime = 3;
ns.play(videoUrl);
ns.client.onMetaData = metaDataGather;
ns.pause();
vid.attachNetStream(ns);
vid.smoothing = true;
All_mc.lcd_mc.addChild(vid);
ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
ns.soundTransform = new SoundTransform(latestVolumeVal);
videoLoadedInterval = setInterval(updateLoader, 100);
return;
}// end function
private function volumeUp_mouseUp(event:MouseEvent) : void
{
if (volumeChangeInterval)
{
clearInterval(volumeChangeInterval);
}
volumeHideTimer.start();
ledoff();
return;
}// end function
private function seekDown() : void
{
if (ns.time > 0)
{
if (ns.time - 2 <= 0)
{
ns.seek(0);
}
else
{
ns.seek(ns.time - 2);
}
}
All_mc.seekbarDisplay_mc.seekbar_mc.width = ns.time / totalVideoTime * 348;
All_mc.seekbarDisplay_mc.visible = true;
return;
}// end function
private function volumeDown_mouseDown(event:MouseEvent) : void
{
All_mc.muteDisplay_mc.visible = false;
muteHideTimer.stop();
All_mc.seekbarDisplay_mc.visible = false;
seekbarHideTimer.stop();
ledon();
volumeDown();
volumeChangeInterval = setInterval(volumeDown, 200);
return;
}// end function
private function readFlashVars()
{
var paramObj:Object;
try
{
paramObj = stage.loaderInfo.parameters;
if (paramObj.videoUrl != null)
{
videoUrl = paramObj.videoUrl;
}
if (paramObj.imageUrl != null)
{
imageUrl = paramObj.imageUrl;
}
if (paramObj.tvName != null)
{
All_mc.txt.text = paramObj.tvName;
}
if (paramObj.screenHeight != null)
{
screenHeight = paramObj.screenHeight;
}
if (paramObj.screenWidth != null)
{
screenWidth = paramObj.screenWidth;
}
}
catch (error:Error)
{
}
return;
}// end function
private function volumeUp() : void
{
if (mute)
{
mute = false;
}
volumeHideTimer.stop();
if (ns.soundTransform.volume < 1)
{
if (ns.soundTransform.volume + 0.1 >= 1)
{
ns.soundTransform = new SoundTransform(1);
latestVolumeVal = 1;
}
else
{
ns.soundTransform = new SoundTransform(ns.soundTransform.volume + 0.1);
latestVolumeVal = ns.soundTransform.volume;
}
}
All_mc.volumeDisplay_mc.volumeBar_mc.width = latestVolumeVal * 348;
All_mc.volumeDisplay_mc.visible = true;
return;
}// end function
private function clickFullscreen(event:MouseEvent) : void
{
if (stage.displayState == StageDisplayState.NORMAL)
{
stage.displayState = StageDisplayState.FULL_SCREEN;
}
else
{
stage.displayState = StageDisplayState.NORMAL;
}
return;
}// end function
private function ledoff() : void
{
remote_mc.ledOn_mc.alpha = 0;
remote_mc.ledOff_mc.alpha = 1;
return;
}// end function
private function hideSeekbarDisplay(event:TimerEvent) : void
{
All_mc.seekbarDisplay_mc.visible = false;
seekbarHideTimer.stop();
return;
}// end function
private function toggleMute(event:MouseEvent) : void
{
All_mc.volumeDisplay_mc.visible = false;
volumeHideTimer.stop();
if (mute)
{
mute = false;
muteHideTimer.stop();
All_mc.muteDisplay_mc.muteOn_mc.alpha = 0;
All_mc.muteDisplay_mc.visible = true;
ns.soundTransform = new SoundTransform(latestVolumeVal);
muteHideTimer.start();
}
else
{
muteHideTimer.stop();
latestVolumeVal = ns.soundTransform.volume;
All_mc.muteDisplay_mc.muteOn_mc.alpha = 1;
All_mc.muteDisplay_mc.visible = true;
mute = true;
ns.soundTransform = new SoundTransform(0);
}
return;
}// end function
private function volumeDown_mouseUp(event:MouseEvent) : void
{
if (volumeChangeInterval)
{
clearInterval(volumeChangeInterval);
}
volumeHideTimer.start();
ledoff();
return;
}// end function
private function arrangeObjects()
{
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
All_mc.x = All_mc.stage.stageWidth / 2 - (screenWidth + 40) / 2;
All_mc.y = All_mc.stage.stageHeight / 2 - (screenHeight + 55) / 2;
var _loc_1:int = 20;
All_mc.lcd_mc.y = 20;
All_mc.lcd_mc.x = _loc_1;
All_mc.lcd_mc.scree_bg.width = screenWidth;
All_mc.lcd_mc.scree_bg.height = screenHeight;
var _loc_1:int = 0;
All_mc.tv_bg.y = 0;
All_mc.tv_bg.x = _loc_1;
All_mc.tv_bg.width = screenWidth + 40;
All_mc.tv_bg.height = screenHeight + 55;
All_mc.foot_mc.y = All_mc.tv_bg.height - 12;
All_mc.foot_mc.x = Math.floor((All_mc.tv_bg.width - All_mc.foot_mc.width) / 2);
All_mc.txt.visible = true;
All_mc.txt.y = All_mc.lcd_mc.y + screenHeight + 5;
All_mc.txt.x = All_mc.tv_bg.x + Math.floor((All_mc.tv_bg.width - All_mc.txt.textWidth) / 2);
remote_mc.x = All_mc.x + (screenWidth + 40) - remote_mc.width;
remote_mc.y = All_mc.y + (screenHeight + 55) - remote_mc.height;
All_mc.volumeDisplay_mc.x = Math.floor(All_mc.lcd_mc.x + (screenWidth - All_mc.volumeDisplay_mc.width) / 2);
All_mc.volumeDisplay_mc.y = All_mc.lcd_mc.y + (screenHeight - All_mc.volumeDisplay_mc.height) - 20;
All_mc.seekbarDisplay_mc.y = All_mc.lcd_mc.y + (screenHeight - All_mc.seekbarDisplay_mc.height) - 20;
All_mc.seekbarDisplay_mc.x = All_mc.volumeDisplay_mc.x;
All_mc.muteDisplay_mc.x = All_mc.lcd_mc.x + (screenWidth - All_mc.muteDisplay_mc.width) - 20;
All_mc.muteDisplay_mc.y = All_mc.lcd_mc.y + 20;
return;
}// end function
private function fsEvent(event:FullScreenEvent)
{
if (stage.displayState == StageDisplayState.NORMAL)
{
arrangeObjects();
All_mc.lcd_mc.width = screenWidth;
All_mc.lcd_mc.height = screenHeight;
}
else
{
arrangeFullscreenObjects();
}
return;
}// end function
private function hideMuteDisplay(event:TimerEvent) : void
{
All_mc.muteDisplay_mc.visible = false;
muteHideTimer.stop();
return;
}// end function
private function createImage(event:Event) : void
{
var _loc_2:Bitmap = null;
_loc_2 = Bitmap(imageLoader.contentLoaderInfo.content);
_loc_2.smoothing = true;
_loc_2.width = screenWidth;
_loc_2.height = screenHeight;
All_mc.lcd_mc.imageHolder_mc.addChild(_loc_2);
return;
}// end function
private function setMovieScale() : void
{
if (screenWidth / screenHeight >= realVideoWidth / realVideoHeight)
{
vid.height = screenHeight;
vid.width = realVideoWidth / realVideoHeight * screenHeight;
vid.x = (screenWidth - vid.width) / 2;
vid.y = 0;
}
else
{
vid.width = screenWidth;
vid.height = realVideoHeight / realVideoWidth * screenWidth;
vid.y = (screenHeight - vid.height) / 2;
vid.x = 0;
}
return;
}// end function
function resizeHandler(event:Event) : void
{
All_mc.x = All_mc.stage.stageWidth / 2 - All_mc.width / 2;
All_mc.y = All_mc.stage.stageHeight / 2 - All_mc.height / 2;
return;
}// end function
}
}
</code></pre>
http://stackoverflow.com/questions/991296/loop-video-with-swfobject-variables0Loop video with SWFObject variables?chris2009-06-13T19:07:39Z2009-10-12T07:00:06Z
<p>Is there a way to loop a video with SWFObject
Ive tried</p>
<pre><code>so.addVariable('repeat', 'true');
so.addVariable('repeat', 'list');
so.addVariable('repeat', 'always');
</code></pre>
http://stackoverflow.com/questions/1550358/how-do-i-download-flash-files-embedded-using-swfobject0How do I download flash files embedded using SWFObjectskorned2009-10-11T10:29:17Z2009-10-11T11:09:34Z
<p>A site I use displays a flash file, which is embedded dynamically using SWFObject. I want to download the flash file locally, so I can run it when I don't have access to the net. However, when I try to open the url to the swf file, it demands an 'id' parameter that is normally passed by the SWFObject Javascript. </p>
<p>Specifically, the source of the page contains:</p>
<pre><code>swfobject.embedSWF("/bin/loader.swf", "main", "100%", "100%", "9", false, flashvars, params, attributes);
</code></pre>
<p>And the flashvars have the following definiton:</p>
<pre><code>var flashvars = {
file_id: "imilc2lxnfft",
app: "main-502.swf",
show_play_button: "false",
autoplay: ""
</code></pre>
<p>When I try to access site.com/bin/loader.swf, it says it requires a file_id parameter.</p>
<p>How do I pass the parameter and download the file to my desktop?</p>
http://stackoverflow.com/questions/1537625/swfobject-javascript-formatting-makes-it-not-appear0SWFObject javascript formatting makes it not appearunknown (google)2009-10-08T12:56:57Z2009-10-08T13:03:51Z
<p>I have a weird question about swfobject behavior. I have the embed code like this:</p>
<p>script type="text/javascript">
<p>It doesnt appear.</p>
<p>When I do this, it does!
script type="text/javascript">
var flashvars = {}; var params = { allowScriptAccess: "always", loop: "true" }; var attributes = {}; swfobject.embedSWF("FILENAME", "myAlternativeContent", "458", "69", "9.0.0", "/js/swfobject/expressInstall.swf", flashvars, params, attributes); //-->
<p>Is there a reason for this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1289442/using-multiple-swf-object-flash-doesnt-focus-on-rollover0Using multiple SWF Object - Flash doesn't focus on rolloverWiseDonkey2009-08-17T17:56:52Z2009-10-06T04:06:38Z
<p>I've got a page with multiple embeds of Flash objects, including dynamically created graphs.</p>
<p>I'm including them all with SWF Object JS declared in the header. It works fine in the fact that all are loaded. But, for some reason when you move down on the page (so they're out of view) and back, or click on another object it no longer has focus when you're rolling over. I.e. I have a flash menu that moves on rollover. When you go down the page, click on something, then go back up it no longer response to rollover.</p>
<p>I've seen bits on here and elsewhere about losing focus in Firefox (which is the browser Im using - i havent managed to find this bug in IE) but it's talking about literally not being able to type or whatever, when you click on it. This is on rollover.</p>
<p>Has anyone got any advice or thoughts on this subject?</p>
http://stackoverflow.com/questions/1418865/how-do-i-allow-objects-in-a-flash-swf-that-are-partially-off-stage-to-be-visible0how do I allow objects in a flash SWF that are partially off stage to be visible and not croppedGary Benade2009-09-13T21:19:43Z2009-10-01T16:59:45Z
<p>I have an AS3 flash player 9 swf with a stage size of 500x100, on the stage I have some objects which extend over the stage border, for instance a 50 pixel diameter circle at 490,90. </p>
<p>What is currently happening when I embed the swf in HTML is that the circle is getting cropped, I would like it to still be totally visible even though it is outside of the stage area. This is critical to the behaviour of this particular application because I need the mouse to be able to access the html elements below the flash movie. If I simply make the stage bigger the circle is visible but the mouse events are getting caught by the transparent flash stage area. </p>
<p>If I view the swf on it's own in a browser eg: localhost/test.swf, the circle is intact. I remember having the exact opposite problem in flash 8 years ago when I didn't want these off stage objects to be visible but they were, so I'm pretty sure it must be possible but I can't get the right combination of parameters for the embed to work correctly.</p>
<p>I am using swfobject 2 to do the embed, but I tried other methods and got the same results.</p>
<p>Any thoughts or suggestions will be highly appreciated :)</p>
http://stackoverflow.com/questions/1393227/sporadic-setvariable-is-not-a-function-in-firefox0Sporadic "SetVariable is not a function" in Firefoxpsychotik2009-09-08T10:34:29Z2009-09-09T22:37:26Z
<p>I'm using swfObject to embed a flash player in my app. Sporadically, I see errors in FireFox (only, not in IE or Chrome) when trying to communicate with the embedded flash object. The error says "SetVariable is not a function". The code which causes this error executed fine just moments ago, and now shows this error. If I re-load the page and re-run, odds are decent that this doesn't happen again.</p>
<p>I've seen reports on the web about FF not working well with SetVariable, but nothing to fix it. Apparently swfObject should hide all of this but it doesn't.</p>
<p>Here's what my code looks like:</p>
<pre><code>...
var flashvars=...
var params=...
var attributes = {};
attributes.id = "my_player";
if( swfobject.hasFlashPlayerVersion("9.0.0") )
{
swfobject.embedSWF("my_player_js.swf", "my_player_holder", "1", "1", "9.0.0", "", flashvars, params, attributes );
}
....
document.getElementById("my_player").SetVariable( "method:stop", "");
</code></pre>
<p>That last line, on FF, <em>sometimes</em> causes the "SetVariable is not a function" error.</p>
<p>Any suggestions on where to look?</p>