2018-12-30 15:42:36 +00:00
< html >
2019-01-01 17:12:38 +00:00
< 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;" >
2018-12-30 15:42:36 +00:00
< 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 > ';
2019-01-01 17:12:38 +00:00
line = line+title+' (videoId)< br / > ';
2018-12-30 15:42:36 +00:00
line = line.replace('videoId', videoId);
2019-01-01 17:12:38 +00:00
line = line +'< object style = \"width: ' + width + ' px ; height: ' + height + ' px \ " > ';
2018-12-30 15:42:36 +00:00
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');
2019-01-01 17:12:38 +00:00
video('Part 4: Syntax Highlighting and Content Assist','d1kPdMVeJL0');
2018-12-30 15:42:36 +00:00
video('Part 5: Working with Projects, Folders and Files', 'AdrkxVVCEzI');
video('Part 6: Content Outline and Navigation - the Heart of the IDE', 'VHmnvsOaW1M');
2019-01-01 17:12:38 +00:00
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');
2018-12-30 15:42:36 +00:00
video('Part 9: Source Level Debugging', 'uljtoXE8EZI');
2019-01-01 17:12:38 +00:00
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');
2019-01-01 20:04:57 +00:00
video('Part 15: New Features in Version 1.7.0', 'YdSjIwaFd90');
2018-12-30 15:42:36 +00:00
< / script >
< / html >