Click here to Skip to main content
15,901,205 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: How to change the "src" value in a using javascript function ? Pin
LockedOut13-Jul-11 15:04
LockedOut13-Jul-11 15:04 
AnswerRe: How to change the "src" value in a using javascript function ? Pin
twseitex15-Jul-11 9:04
twseitex15-Jul-11 9:04 
GeneralRe: How to change the "src" value in a using javascript function ? Pin
cjoki18-Jul-11 10:57
cjoki18-Jul-11 10:57 
Questionjavascript html xml Pin
Bala811-Jul-11 22:05
Bala811-Jul-11 22:05 
AnswerRe: javascript html xml Pin
DaveAuld11-Jul-11 22:48
professionalDaveAuld11-Jul-11 22:48 
QuestionFlash plugin install Pin
anishkannan11-Jul-11 20:52
anishkannan11-Jul-11 20:52 
AnswerRe: Flash plugin install Pin
Viral Upadhyay12-Jul-11 8:38
Viral Upadhyay12-Jul-11 8:38 
AnswerRe: Flash plugin install Pin
twseitex12-Jul-11 11:20
twseitex12-Jul-11 11:20 
Hi,

Example for Flash in use of video ....

I code for Internet Explorer only HTML-tag <object>.
For Opera and Co.: Dynamically create flash with no problems.
test-flash-file must exist for create OBJECT dynamically
f.e. check out Shockwave-plugin.

<object type="application/x-shockwave-flash" width="1px" height="1px" data="your_testfile_must_exists.swf" style="visibility:hidden">


Better: User HTML-5-Video like WebM from Google or Quicktime with HTML.

script tested in IE 8: dynamically create not possible


// +++++ check document.body
if(X00){X00=(document.body!=null);}

if(X00)
{
// +++++ IE create errror during build OBCECT object
// in use if createElement() and .innerHTML and normalize() too
//
// X02=document.createElement('OBJECT');
// X00=(X02!=null);
//
// if(X00)
// {
// var X03=document.body.appendChild(X02);
// X00=(X03!=null);
// }
//
// if(X00)
// {
// var X04=document.createElement('PARAM');
// X00=(X04!=null);
// }
//
// if(X00)
// {
// var X05=X03.appendChild(X04);
// X00=(X05!=null);
// }
//
// if(X00)
// {
// X05.name="movie";
// X05.value="path" + "your_flash_file.swf"; // it must exists (blanc video)
//
// X03.style.visibility='hidden';
//
// try
// {X03.classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"; // 20100928 http://kb2.adobe.com/cps/415/tn_4150.html
//
// X00=(X03.classid!='');
//
// X00=document.body.removeChild(X03);
// }
// catch(e){X00=false;}
// }
//}


If you want, for Flash in IE and Opera and Co. see my webpage www.twseiten.com
Questionhow to add minimize and maximize buttons in a dfd in my company intranet Pin
Dan muli8-Jul-11 5:15
Dan muli8-Jul-11 5:15 
AnswerRe: how to add minimize and maximize buttons in a dfd in my company intranet Pin
Shahriar Iqbal Chowdhury/Galib8-Jul-11 10:49
professionalShahriar Iqbal Chowdhury/Galib8-Jul-11 10:49 
GeneralRe: how to add minimize and maximize buttons in a dfd in my company intranet Pin
Dan muli8-Jul-11 20:41
Dan muli8-Jul-11 20:41 
AnswerRe: how to add minimize and maximize buttons in a dfd in my company intranet Pin
Shameel11-Jul-11 21:42
professionalShameel11-Jul-11 21:42 
GeneralRe: how to add minimize and maximize buttons in a dfd in my company intranet Pin
Dan muli11-Jul-11 21:54
Dan muli11-Jul-11 21:54 
GeneralRe: how to add minimize and maximize buttons in a dfd in my company intranet Pin
Shameel12-Jul-11 3:45
professionalShameel12-Jul-11 3:45 
GeneralRe: how to add minimize and maximize buttons in a dfd in my company intranet Pin
Pete O'Hanlon12-Jul-11 4:40
mvePete O'Hanlon12-Jul-11 4:40 
GeneralRe: how to add minimize and maximize buttons in a dfd in my company intranet Pin
Shameel12-Jul-11 8:34
professionalShameel12-Jul-11 8:34 
QuestionEfficiency of adding arrays to an array Pin
Online.Cop8-Jul-11 1:43
Online.Cop8-Jul-11 1:43 
AnswerRe: Efficiency of adding arrays to an array Pin
Not Active8-Jul-11 2:00
mentorNot Active8-Jul-11 2:00 
Questionhow can i insert onClick event to href? Pin
buffering836-Jul-11 2:58
buffering836-Jul-11 2:58 
AnswerRe: how can i insert onClick event to href? Pin
Manfred Rudolf Bihy6-Jul-11 3:18
professionalManfred Rudolf Bihy6-Jul-11 3:18 
GeneralRe: how can i insert onClick event to href? Pin
buffering836-Jul-11 5:32
buffering836-Jul-11 5:32 
GeneralRe: how can i insert onClick event to href? Pin
buffering836-Jul-11 5:51
buffering836-Jul-11 5:51 
GeneralRe: how can i insert onClick event to href? Pin
Manfred Rudolf Bihy6-Jul-11 6:14
professionalManfred Rudolf Bihy6-Jul-11 6:14 
GeneralRe: how can i insert onClick event to href? Pin
Hà Duy Thuận10-Jan-12 22:14
Hà Duy Thuận10-Jan-12 22:14 
GeneralRe: how can i insert onClick event to href? Pin
Ali Al Omairi(Abu AlHassan)6-Jul-11 11:13
professionalAli Al Omairi(Abu AlHassan)6-Jul-11 11:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.