mirror of
https://github.com/peterdell/wudsn-ide.git
synced 2024-11-19 23:31:30 +00:00
48 lines
2.3 KiB
HTML
48 lines
2.3 KiB
HTML
<html>
|
|
<head><title>Cheat sheet for creating video screen shots 336x288- Do not format the source!</title></head>
|
|
<body id="body" style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; padding: 0;">
|
|
<div id="mainDiv">
|
|
</div>
|
|
</body>
|
|
|
|
<script>
|
|
function video(title,videoId){
|
|
var html;
|
|
html=document.getElementById('mainDiv').innerHTML;
|
|
|
|
var width=336;
|
|
var height=288;
|
|
var line = '<div>';
|
|
line = line+title+' (videoId)<br/>';
|
|
line = line.replace('videoId', videoId);
|
|
line = line +'<object style=\"width: '+width+'px; height: '+height+'px\">';
|
|
line = line +' <param name=\"movie" value=\"http://www.youtube.com/v/videoId?version=3&feature=player_detailpage\">'
|
|
line = line +' <param name=\"allowFullScreen\" value=\"true\">'
|
|
line = line +' <param name=\"allowScriptAccess\" value=\"always\">'
|
|
line = line +' <embed src=\"http://www.youtube.com/v/videoId?version=3&feature=player_detailpage\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowScriptAccess=\"always\" width=\"'+width+'\" height=\"'+height+'\">'
|
|
line = line +'</object><div/><br/>';
|
|
line = line.replace('videoId', videoId);
|
|
line = line.replace('videoId', videoId);
|
|
html = html + line;
|
|
document.getElementById('mainDiv').innerHTML=html;
|
|
}
|
|
|
|
|
|
video('Part 1: Introduction, Installation and Use' , '36MFqY55yR0',0);
|
|
video('Part 2: Setting up Perspective, Views and Editors','fJ24OiGA8wY');
|
|
video('Part 3: Setting up Editors and File Extensions correctly', 'QgQOle36hRA');
|
|
video('Part 4: Syntax Highlighting and Content Assist','d1kPdMVeJL0');
|
|
video('Part 5: Working with Projects, Folders and Files', 'AdrkxVVCEzI');
|
|
video('Part 6: Content Outline and Navigation - the Heart of the IDE', 'VHmnvsOaW1M');
|
|
video('Part 7: New Features in Version 1.6.0', 'fnA_xg_XIRc');
|
|
video('Part 8: New Features in Version 1.6.2', 'ok2zJM-J3hw');
|
|
video('Part 9: Source Level Debugging', 'uljtoXE8EZI');
|
|
video('Part 10: Adding Support for an Additional Assembler', 'ZtnyzpNnf-g');
|
|
video('Part 11: New Features in Version 1.6.3', 'KOtfAdY-OnA');
|
|
video('Part 12: New Features in Version 1.6.4', 'SsM9GofiD4k');
|
|
video('Part 13: New Features in Version 1.6.5', 'M2aU5wwrDew');
|
|
video('Part 14: New Features in Version 1.6.6', 'PNsV16tTrBc');
|
|
video('Part 15: New Features in Version 1.7.0', 'YdSjIwaFd90');
|
|
</script>
|
|
|
|
</html> |