Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Flash Video

Posted on September 3, 2013October 26, 2015 By David Kittell
<script language="JavaScript" type="text/javascript">
// <![CDATA[
var fo = new FlashObject("../flash/videoPlayer.swf", "foo", "455","400", "8.0.22", "#ffffff", true);
fo.addParam("wmode", "transparent");
fo.addParam("quality","high");
fo.addParam("align","middle");
fo.addParam("salign","");
fo.addParam("scale","noscale");
fo.addParam("allowScriptAccess","sameDomain");
//flash vars that need to be passed into the flash movie ...
fo.addVariable('userId', 'public');
fo.addVariable('videoId', 'HealthClips/hc_ca_00053_en');
fo.addVariable('skinName','../flash/haloSkin_1.swf');
fo.addVariable('bufferTime', '3');
fo.addVariable('autoRewind', 'true');
fo.addVariable("autoPlay", "true");
fo.addVariable('streamId', 'HealthClips/hc_ca_00053_en');
fo.write("flashcontent");
// ]]>
</script>
Originally Posted on September 3, 2013
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code JavaScript

Post navigation

Previous post
Next post

Related Posts

Export To Excel

Posted on September 25, 2013October 26, 2015

Add GridView, Datasource, and Button <%@ Page Language="C#" AutoEventWireup="true" CodeFile="exporttest.aspx.cs" EnableEventValidation="false" Inherits="ExportTest" %> <form id="form1" runat="server"> <asp:gridview runat="server" id="gvExport" allowpaging="True" autogeneratecolumns="False" datakeynames="id" datasourceid="dsExport"> </asp:gridview> <asp:sqldatasource id="dsExport" runat="server" conflictdetection="CompareAllValues" connectionstring="<%$ ConnectionStrings:DbConnection %>" selectcommand="SELECT top 100 * FROM Users"> </asp:sqldatasource> <asp:button id="btnExport" runat="server" onclick="Button1_Click" text="Export To Excel" /> </form> using System; using…

Read More

MySQL Get Disk Space Allocation of Database

Posted on October 2, 2015

SELECT table_name AS "Tables" ,round(((data_length + index_length) / 1024 / 1024), 2) "Size in MB" FROM information_schema.TABLES ORDER BY (data_length + index_length) DESC SELECT table_name AS "Tables" ,round(((data_length + index_length) / 1024 / 1024), 2) "Size in MB" FROM information_schema.TABLES WHERE table_schema = "$DBNAME" ORDER BY (data_length + index_length) DESC…

Read More

Excel – VLookup – Compare Two Columns/Sheets

Posted on January 6, 2015August 15, 2019

Sometimes we need to compare lists in Excel, this function will assist in getting a clean comparison. NOTE: It is best when comparing that all columns are same format (ie. Text, Number, etc.) =IF(ISERROR(VLOOKUP(A1,Sheet1!$A$1:$A$3,1,FALSE)),"MISSING FROM OTHER SHEET","") ‘ OR =IF(ISERROR(VLOOKUP(A1,Sheet1!$A:A,1,FALSE)),"No","Yes") Going one step further, if you find a match and…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
©2025 David Kittell | WordPress Theme by SuperbThemes