Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (2024)

'); var a = window.open('', '', 'width=700,height=960'); a.document.open("text/html"); a.document.write(html.join("")); a.document.close(); } }var tempo = 99.0,changedpage=0,lb,rb,sco,sco2,pb,pi,bg1,bg2,ic1,ic0,ic2,ic3,ic4,aic0,aic1,aic2,aic3,aic4,l1,l2,pdfadd,ss,styp,sic,pauseon=0,meton=0,speedval=1.0,currpage=1,currpagearryno=1,introbars=1; //no intro 5=4var introdelay=2000,iipage=1,no_pages=5;ss='/school/png/';var images = new Array();var blankImage = new Image();blankImage.src = "data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAABngAAAkjAQMAAAAYztM1AAAAA1BMVEX///+nxBvIAAAACXBIWXMAAB7CAAAewgFu0HU+AAAB7klEQVR42u3BAQ0AAADCoPdPbQ43oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHg0bNkAAUrnO4MAAAAASUVORK5CYII="var imageCache = {"": blankImage};window.onload = function(){ document.onkeyup = function(event){ var e = (!event) ? window.event : event; var kcode=e.keyCode evenwhen(kcode); };};window.onkeydown = function(event) { var e = (!event) ? window.event : event;var kcode=e.keyCode if (kcode==32){ var elem if (e.srcElement) elem = e.srcElement; else if (e.target) elem = e.target; if (elem.tagName.toLowerCase()=='input' || elem.tagName.toLowerCase()=='textarea') {} else{ if(lb==null){ initiatestuff();playmain(kcode); } else{ callpause2(); } return false; } }};var meton=0,everyplayed2=0,everyplayed=0,carryon=true,play_status=0,totdone,toty,score='viola/mozart_turkish_march_full_VLA';function callpause2(){ var num_listened=readCookie('num_listened') if (num_listened=='undefined'||num_listened=='NaN'){num_listened=0;} if (num_listened>3){ overlay();return ; } else{ callpause();} }styp="main";var page_printed=0;var cp4p; const newPButton = document.querySelector(".icon_printer"); newPButton.addEventListener("click", async () => { if (!showTwoPages){var src=document.getElementById('score').src; printdiv(src,0);return;} if (page_printed==0){ cp4p=currpage; if (currpage<10){ cp4p='00'+cp4p; } else if(currpage<100){cp4p='0'+cp4p;} //var printstring=ss+score+cp4p+'.png'; alert('This will print the left hand page. Press print again to print the right hand page. \n\nTo print entire pieces in one go, and for higher quality printing from our PDF files, please subscribe.'); var src=document.getElementById('score').src; src = src.replace(/(\d{2})\.svg$/, '0$1.svg'); src = src.replace(/svg/g, 'png'); page_printed=1; printdiv(src,0); } else {page_printed=0; //var printstring=ss+score+cp4p+'.png'; alert('This will now print the right hand page. Press print again to print the left hand page, or for longer pieces, navigate to next pages and press print again.'); var src=document.getElementById('score2').src; src = src.replace(/(\d{2})\.svg$/, '0$1.svg'); src = src.replace(/svg/g, 'png'); printdiv(src,0) }});function convertToPdfUrl(url) { if (url.includes('/png/')) { url = url.replace('/png/', '/pdf/'); let lastPngIndex = url.lastIndexOf('.png'); if (lastPngIndex !== -1) { url = url.substring(0, lastPngIndex - 3) + url.substring(lastPngIndex); } url = url.replace('.png', '.pdf'); } else if (url.includes('/svg/')) { url = url.replace('/svg/', '/pdf/'); let lastSvgIndex = url.lastIndexOf('.svg'); if (lastSvgIndex !== -1) { url = url.substring(0, lastSvgIndex - 2) + url.substring(lastSvgIndex); } url = url.replace('.svg', '.pdf'); } return url;}function openPDF(){}function doprint() { var isSafari = window.safari !== undefined; if(lb==null){initiatestuff()} alert('N.B. This will print only the current page.\n\nIf this piece has more than one page, you will need to print each page individually. Navigate to other pages using the << and >> buttons.\n\nTo print entire pieces in one go, and for higher quality printing from our PDF files, please subscribe.') var ssrc=sco.src; var src=document.getElementById('score').src; printdiv(src,0)} class ConfirmDialog { constructor({ questionText, trueButtonText, falseButtonText, parent }) { this.questionText = questionText || "Are you sure?"; this.trueButtonText = trueButtonText || "Yes"; this.falseButtonText = falseButtonText || "No"; this.parent = parent || document.body; this.dialog = undefined; this.trueButton = undefined; this.falseButton = undefined; this._createDialog(); this._appendDialog(); } confirm() { return new Promise((resolve, reject) => { const somethingWentWrongUponCreation = !this.dialog || !this.trueButton || !this.falseButton; if (somethingWentWrongUponCreation) { reject('Someting went wrong when creating the modal'); return; } this.dialog.showModal(); this.trueButton.focus(); this.trueButton.addEventListener("click", () => { resolve(true); this._destroy(); }); this.falseButton.addEventListener("click", () => { resolve(false); this._destroy(); }); }); } _createDialog() { this.dialog = document.createElement("dialog"); this.dialog.classList.add("confirm-dialog"); const question = document.createElement("div"); question.textContent = this.questionText; question.classList.add("confirm-dialog-question"); this.dialog.appendChild(question); const buttonGroup = document.createElement("div"); buttonGroup.classList.add("confirm-dialog-button-group"); this.dialog.appendChild(buttonGroup); this.falseButton = document.createElement("button"); this.falseButton.classList.add( "confirm-dialog-button", "confirm-dialog-button--false" ); this.falseButton.type = "button"; this.falseButton.textContent = this.falseButtonText; buttonGroup.appendChild(this.falseButton); this.trueButton = document.createElement("button"); this.trueButton.classList.add( "confirm-dialog-button", "confirm-dialog-button--true" ); this.trueButton.type = "button"; this.trueButton.textContent = this.trueButtonText; buttonGroup.appendChild(this.trueButton); } _appendDialog() { this.parent.appendChild(this.dialog); } _destroy() { this.parent.removeChild(this.dialog); delete this; }} function getCachedImageFromMap (path, map) { let image = map[path]; if (image) return image; image = new Image(); image.src = path; map[path] = image; return image;} var scfile=ss+score+'001.png'; var scfile2=ss+score+'002.png'; function playalongacc(pltype) { if(ison0) { hideLoopGuide(); } if(lb==null){initiatestuff()} switch (pltype){ case 1: if (ison1==0&&document.getElementById('pausebefore').checked==true){ pauseamount=5;updatecountin(); pppa=pauseamount+1; } else{ pauseamount=0;pppa=0;stopplayalongreturntostandardview() } break; case 2: if (ison2==0&&document.getElementById('pausebefore').checked==true){ pauseamount=5;updatecountin(); pppa=pauseamount+1; } else{ pauseamount=0;pppa=0;stopplayalongreturntostandardview() } break; case 3: if (ison3==0&&document.getElementById('pausebefore').checked==true){ pauseamount=5;updatecountin(); pppa=pauseamount+1; } else{ pauseamount=0;pppa=0;stopplayalongreturntostandardview() } break; case 4: if (ison4==0&&document.getElementById('pausebefore').checked==true){ pauseamount=5;updatecountin(); pppa=pauseamount+1; } else{ pauseamount=0;pppa=0;stopplayalongreturntostandardview() } break; } stimer = window.setTimeout( "playalongacc2("+pltype+")", (pppa*1000)); checkIfShouldShowTwoPages(); }var baseUrl = '';function playalongacc2(pltype, keepPlayState, wasOn){ let wasStoped = pauseon || !wasOn; if(typeof bpp !== 'undefined' && typeof ppt !== 'undefined') { temp_IS_HIGHLIGHT_ON=IS_HIGHLIGHT_ON; } else{ temp_IS_HIGHLIGHT_ON=false;l1.style.visibility='hidden'; } var bon=0; stopplayalongreturntostandardview() if (ison1||ison2||ison3||ison4) { playalongstop() btn_transpose.style.visibility='visible'; } else { if (!keepPlayState || !wasStoped) { startTimeframe(DESIRED_FPS); } l1.style.visibility='visible'; btn_transpose.style.visibility='hidden'; } var num_listened=readCookie('num_listened') if(num_listened=='undefined'||num_listened=='NaN'){num_listened=0;} if(everyplayed==0){num_listened=p(num_listened)+1;eraseCookie('num_listened');createCookie('num_listened',num_listened,1);everyplayed=1;} if(num_listened>3){overlay();return } var aisp=document.getElementById('aispacer'); switch (pltype){ case 1: if (ison1==0){ bon=1;ison1=1;ison2=0;ison3=0;ison4=0;ison0=0;ic1.src=sic;aud=document.getElementById('demo1'); pico.style.display='inline-block!important';ic2.style.display='none';aic0.style.display='none';aic2.style.display='none'; aisp.style.display='inline-flex';aisp.style.visibiliy='visible'; if(ic3){aic3.style.display='none';ic3.style.display='none';} if(ic4){aic4.style.display='none';ic4.style.display='none';} } break; case 2: if(ison2==0){bon=1;ison1=0;ison2=1;ison4=0;ison3=0;ison0=0;ic2.src=sic;aud=document.getElementById('demo2'); pico.style.display='inline-block!important';ic1.style.display='none';aic0.style.display='none';aic1.style.display='none';aisp.style.display='inline-flex';aisp.style.visibiliy='visible'; if(ic3){aic3.style.display='none';ic3.style.display='none';} if(ic4){aic4.style.display='none';ic4.style.display='none';} } break; case 3: if(ison3==0){bon=1;ison1=0;ison2=0;ison4=0;ison3=1;ison0=0;ic3.src=sic;aud=document.getElementById('demo3'); pico.style.display='inline-block!important';ic1.style.display='none';aic0.style.display='none';aic1.style.display='none';aisp.style.display='inline-flex';aisp.style.visibiliy='visible' aic2.style.display='none';ic2.style.display='none'; if(ic4){aic4.style.display='none';ic4.style.display='none';} } break; case 4: if(ison4==0){bon=1;ison1=0;ison2=0;ison3=0;ison4=1;ison0=0;ic4.src=sic;aud=document.getElementById('demo4'); pico.style.display='inline-block!important';ic1.style.display='none';aic0.style.display='none';aic1.style.display='none';aisp.style.display='inline-flex';aisp.style.visibiliy='visible' aic2.style.display='none';ic2.style.display='none'; if(ic3){aic3.style.display='none';ic3.style.display='none';} } break;} aud.addEventListener('timeframe',checkbartimeupdate); aud.addEventListener('timeframe',checktimeupdateparts); aud.addEventListener('timeframe',function(){ if (aud.currentTime< 73) { if(currpage!=1&&changedpage==0){ currpage=1 lb.classList.remove("pagenav_disabled");rb.classList.remove("pagenav_disabled"); } if (currpage==max_playalong_page||showTwoPages&&(currpage+1 == max_playalong_page)){rb.classList.add("pagenav_disabled");} lb.classList.add("pagenav_disabled"); } },false); if (bon==1) { pb.style.display='flex';pico.style.display='inline-block';document.getElementById('metandtemp').style.visibility='visible'; aud.addEventListener('timeframe', updateProgress, false); aud.addEventListener('ended', audioend); updateplaybackrate(document.getElementById('speed').value) speedval=document.getElementById('speed').value aud.play();aud.currentTime = 0; baseUrl=ss+'viola/mozart_turkish_march_full_vla_va'; switchScore("score", `${baseUrl}001.png`); partopen=1; if(baseUrl==''){baseUrl=ss+score;} checkIfShouldShowTwoPages(); } else { pb.style.display='none';document.getElementById('metandtemp').style.visibiliy='hidden';pico.style.display='none'; ison1=0;ison2=0;ison3=0;ison4=0; } if(keepPlayState) { if (wasStoped) { pauseon=0; callpause(); setTimeout(() => { checkbartimeupdate(); updateProgress(); }, 100) } } } var no_part_pages=2;function stopplayalongreturntostandardview() {if(lb==null){initiatestuff()}l1.style.visibility = 'hidden';ic1.style.display='block';ic2.style.display='block';if(ic3){ic3.style.display='block';}if(ic4){ic4.style.display='block';}ic0.style.display='block';aic1.style.display='inline-block';aic2.style.display='inline-block';if(aic3){aic3.style.display='inline-block';}if(aic4){aic4.style.display='inline-block';}aic0.style.display='inline-block';aisp=document.getElementById('aispacer');aisp.style.display='none';aisp.style.visibility='hidden';pico.src='/imc/pause.png';document.getElementById('icon0').src = '/imc/play.png';document.getElementById('progress').style.width = "0%";ic1.src = '/imc/playalong.png';if(ic3){ic3.src = '/imc/.png';}currpage=1;document.getElementById('demo0').pause();document.getElementById('demo1').pause();document.getElementById('demo3').pause(); if(curtransp!=0){ switchScore('score', thissc+'_'+curtranspdir+curtransp+'001.gif'); switchScore('score2', thissc+'_'+curtranspdir+curtransp+'002.gif'); } else{ sco.style = {}; sco2.style ={}; }if (!ext_traditional){ lb.classList.add("pagenav_disabled"); if (no_pages>2||!showTwoPages&&no_pages>1){rb.classList.remove("pagenav_disabled");}}} function playalongstop() { resizeStage(); stop=true; l1.style.visibility = 'hidden'; sco.style.top='0'; document.getElementById('mainscore').style.height='100%'; document.getElementById('icon0').src = '/imc/play.png';ic1.src = '/imc/playalong.png';if(ic3){ic3.src = '/imc/.png';} document.getElementById('demo0').pause(); document.getElementById('demo1').pause();if(ic3){document.getElementById('demo3').pause();}} function createCookie(name,value,days) {if (days) { var expires="",date=new Date(),midnight=new Date(date.getFullYear(),date.getMonth(),date.getDate(),23,59,59); expires = "; expires=" + midnight.toGMTString(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); }else var expires = "";document.cookie = name+"="+value+expires+"; path=/";var gtxt=''if(3-value>1){gtxt=(3-value)+' free plays';}else if (3-value==1){gtxt=(3-value)+' free play';}else if (3-value<1){gtxt='0 free plays';}else{gtxt='3 free plays';} var pleft=document.getElementById('playleft'); pleft.innerHTML=gtxt+' left today. Subscribe for unlimited plays.'; pleft.style.dispaly='block';pleft.style.visibility='visible';}var pt = []; pt[1] = { e:28, p:1 }; pt[2] = { e:62, p:2 }; pt[3] = { e:97, p:3 }; pt[4] = { e:133, p:4 }; pt[5] = { e:160, p:5 }; var ppt = []; ppt[1] = { e:73, p:1 };ppt[2] = { e:160, p:2 }; var bt = []; bt[1]={e:5,b:1};bt[2]={e:15,b:2};bt[3]={e:25,b:3};bt[4]={e:35,b:4};bt[5]={e:45,b:5};bt[6]={e:55,b:6};bt[7]={e:65,b:7};bt[8]={e:75,b:8};bt[9]={e:80,b:9};bt[10]={e:85,b:1};bt[11]={e:95,b:2};bt[12]={e:105,b:3};bt[13]={e:115,b:4};bt[14]={e:125,b:5};bt[15]={e:135,b:6};bt[16]={e:145,b:7};bt[17]={e:155,b:8};bt[18]={e:160,b:9};bt[19]={e:165,b:10};bt[20]={e:175,b:11};bt[21]={e:185,b:12};bt[22]={e:195,b:13};bt[23]={e:205,b:14};bt[24]={e:215,b:15};bt[25]={e:225,b:16};bt[26]={e:235,b:17};bt[27]={e:245,b:18};bt[28]={e:255,b:19};bt[29]={e:265,b:20};bt[30]={e:275,b:21};bt[31]={e:285,b:22};bt[32]={e:295,b:23};bt[33]={e:305,b:24};bt[34]={e:315,b:25};bt[35]={e:320,b:26};bt[36]={e:325,b:27};bt[37]={e:335,b:28};bt[38]={e:345,b:29};bt[39]={e:355,b:30};bt[40]={e:365,b:31};bt[41]={e:375,b:32};bt[42]={e:385,b:33};bt[43]={e:395,b:34};bt[44]={e:400,b:35};bt[45]={e:405,b:27};bt[46]={e:415,b:28};bt[47]={e:425,b:29};bt[48]={e:435,b:30};bt[49]={e:445,b:31};bt[50]={e:455,b:32};bt[51]={e:465,b:33};bt[52]={e:475,b:34};bt[53]={e:480,b:35};bt[54]={e:485,b:36};bt[55]={e:495,b:37};bt[56]={e:505,b:38};bt[57]={e:515,b:39};bt[58]={e:525,b:40};bt[59]={e:535,b:41};bt[60]={e:545,b:42};bt[61]={e:555,b:43};bt[62]={e:565,b:44};bt[63]={e:575,b:45};bt[64]={e:585,b:46};bt[65]={e:595,b:47};bt[66]={e:605,b:48};bt[67]={e:615,b:49};bt[68]={e:625,b:50};bt[69]={e:635,b:51};bt[70]={e:645,b:52};bt[71]={e:655,b:53};bt[72]={e:665,b:54};bt[73]={e:675,b:55};bt[74]={e:685,b:56};bt[75]={e:695,b:57};bt[76]={e:705,b:58};bt[77]={e:715,b:59};bt[78]={e:720,b:60};bt[79]={e:725,b:61};bt[80]={e:735,b:62};bt[81]={e:745,b:63};bt[82]={e:755,b:64};bt[83]={e:765,b:65};bt[84]={e:775,b:66};bt[85]={e:785,b:67};bt[86]={e:795,b:68};bt[87]={e:800,b:69};bt[88]={e:805,b:70};bt[89]={e:815,b:71};bt[90]={e:825,b:72};bt[91]={e:835,b:73};bt[92]={e:845,b:74};bt[93]={e:855,b:75};bt[94]={e:865,b:76};bt[95]={e:875,b:77};bt[96]={e:880,b:78};bt[97]={e:885,b:70};bt[98]={e:895,b:71};bt[99]={e:905,b:72};bt[100]={e:915,b:73};bt[101]={e:925,b:74};bt[102]={e:935,b:75};bt[103]={e:945,b:76};bt[104]={e:955,b:77};bt[105]={e:960,b:78};bt[106]={e:965,b:79};bt[107]={e:975,b:80};bt[108]={e:985,b:81};bt[109]={e:995,b:82};bt[110]={e:1005,b:83};bt[111]={e:1015,b:84};bt[112]={e:1025,b:85};bt[113]={e:1035,b:86};bt[114]={e:1045,b:87};bt[115]={e:1055,b:88};bt[116]={e:1065,b:89};bt[117]={e:1075,b:90};bt[118]={e:1085,b:91};bt[119]={e:1095,b:92};bt[120]={e:1105,b:93};bt[121]={e:1115,b:94};bt[122]={e:1120,b:95};bt[123]={e:1125,b:96};bt[124]={e:1135,b:97};bt[125]={e:1145,b:98};bt[126]={e:1155,b:99};bt[127]={e:1165,b:100};bt[128]={e:1175,b:101};bt[129]={e:1185,b:102};bt[130]={e:1195,b:103};bt[131]={e:1200,b:104};bt[132]={e:1205,b:96};bt[133]={e:1215,b:97};bt[134]={e:1225,b:98};bt[135]={e:1235,b:99};bt[136]={e:1245,b:100};bt[137]={e:1255,b:101};bt[138]={e:1265,b:102};bt[139]={e:1275,b:103};bt[140]={e:1280,b:104};bt[141]={e:1285,b:105};bt[142]={e:1295,b:106};bt[143]={e:1305,b:107};bt[144]={e:1315,b:108};bt[145]={e:1325,b:109};bt[146]={e:1335,b:110};bt[147]={e:1345,b:111};bt[148]={e:1355,b:112};bt[149]={e:1365,b:113};bt[150]={e:1375,b:114};bt[151]={e:1385,b:115};bt[152]={e:1395,b:116};bt[153]={e:1405,b:117};bt[154]={e:1415,b:118};bt[155]={e:1425,b:119};bt[156]={e:1435,b:120};bt[157]={e:1445,b:121};bt[158]={e:1455,b:122};bt[159]={e:1465,b:123};bt[160]={e:1475,b:124};bt[161]={e:1485,b:125};bt[162]={e:1495,b:126};bt[163]={e:1505,b:127};bt[164]={e:1515,b:128};bt[165]={e:1525,b:129};bt[166]={e:1535,b:130};bt[167]={e:1545,b:131};bt[168]={e:1555,b:132};bt[169]={e:1565,b:133};bt[170]={e:1575,b:134};bt[171]={e:1585,b:135};bt[172]={e:1595,b:136}; var bp = []; bp[1]={t:154,l:78,w:88,h:137 };bp[2]={t:154,l:166,w:87,h:137 };bp[3]={t:154,l:253,w:90,h:137 };bp[4]={t:154,l:344,w:107,h:137 };bp[5]={t:154,l:450,w:71,h:137 };bp[6]={t:154,l:521,w:89,h:137 };bp[7]={t:401,l:50,w:105,h:140 };bp[8]={t:401,l:155,w:86,h:140 };bp[9]={t:401,l:241,w:44,h:140 };bp[10]={t:401,l:285,w:48,h:140 };bp[11]={t:401,l:333,w:81,h:140 };bp[12]={t:401,l:414,w:57,h:140 };bp[13]={t:401,l:471,w:82,h:140 };bp[14]={t:401,l:553,w:57,h:140 };bp[15]={t:651,l:50,w:98,h:130 };bp[16]={t:651,l:148,w:55,h:130 };bp[17]={t:651,l:203,w:78,h:130 };bp[18]={t:651,l:280,w:73,h:130 };bp[19]={t:651,l:353,w:78,h:130 };bp[20]={t:651,l:432,w:82,h:130 };bp[21]={t:651,l:514,w:96,h:130 };bp[22]={t:92,l:51,w:81,h:125 };bp[23]={t:92,l:132,w:65,h:125 };bp[24]={t:92,l:197,w:63,h:125 };bp[25]={t:92,l:260,w:67,h:125 };bp[26]={t:92,l:327,w:65,h:125 };bp[27]={t:92,l:392,w:41,h:125 };bp[28]={t:92,l:433,w:58,h:125 };bp[29]={t:92,l:491,w:58,h:125 };bp[30]={t:92,l:549,w:60,h:125 };bp[31]={t:278,l:51,w:102,h:120 };bp[32]={t:278,l:153,w:60,h:120 };bp[33]={t:278,l:214,w:60,h:120 };bp[34]={t:278,l:274,w:60,h:120 };bp[35]={t:278,l:335,w:33,h:120 };bp[36]={t:278,l:368,w:59,h:120 };bp[37]={t:278,l:427,w:89,h:120 };bp[38]={t:278,l:516,w:93,h:120 };bp[39]={t:458,l:51,w:144,h:132 };bp[40]={t:458,l:195,w:114,h:132 };bp[41]={t:458,l:308,w:98,h:132 };bp[42]={t:458,l:406,w:101,h:132 };bp[43]={t:458,l:508,w:101,h:132 };bp[44]={t:650,l:51,w:118,h:131 };bp[45]={t:650,l:169,w:91,h:131 };bp[46]={t:650,l:260,w:91,h:131 };bp[47]={t:650,l:350,w:91,h:131 };bp[48]={t:650,l:441,w:77,h:131 };bp[49]={t:650,l:519,w:91,h:131 };bp[50]={t:92,l:50,w:127,h:129 };bp[51]={t:92,l:177,w:83,h:129 };bp[52]={t:92,l:260,w:80,h:129 };bp[53]={t:92,l:340,w:87,h:129 };bp[54]={t:92,l:427,w:91,h:129 };bp[55]={t:92,l:517,w:93,h:129 };bp[56]={t:281,l:50,w:153,h:140 };bp[57]={t:281,l:203,w:103,h:140 };bp[58]={t:281,l:307,w:91,h:140 };bp[59]={t:281,l:398,w:93,h:140 };bp[60]={t:281,l:491,w:22,h:140 };bp[61]={t:281,l:513,w:41,h:140 };bp[62]={t:281,l:554,w:56,h:140 };bp[63]={t:480,l:50,w:98,h:123 };bp[64]={t:480,l:148,w:58,h:123 };bp[65]={t:480,l:206,w:55,h:123 };bp[66]={t:480,l:260,w:56,h:123 };bp[67]={t:480,l:316,w:55,h:123 };bp[68]={t:480,l:371,w:55,h:123 };bp[69]={t:480,l:426,w:52,h:123 };bp[70]={t:480,l:478,w:59,h:123 };bp[71]={t:480,l:537,w:73,h:123 };bp[72]={t:662,l:50,w:99,h:120 };bp[73]={t:662,l:149,w:92,h:120 };bp[74]={t:662,l:241,w:60,h:120 };bp[75]={t:662,l:301,w:76,h:120 };bp[76]={t:662,l:377,w:76,h:120 };bp[77]={t:662,l:453,w:79,h:120 };bp[78]={t:662,l:532,w:41,h:120 };bp[79]={t:662,l:573,w:37,h:120 };bp[80]={t:92,l:51,w:109,h:121 };bp[81]={t:92,l:160,w:62,h:121 };bp[82]={t:92,l:221,w:88,h:121 };bp[83]={t:92,l:310,w:62,h:121 };bp[84]={t:92,l:371,w:88,h:121 };bp[85]={t:92,l:459,w:62,h:121 };bp[86]={t:92,l:521,w:88,h:121 };bp[87]={t:280,l:51,w:105,h:124 };bp[88]={t:280,l:156,w:94,h:124 };bp[89]={t:280,l:250,w:95,h:124 };bp[90]={t:280,l:345,w:113,h:124 };bp[91]={t:280,l:458,w:76,h:124 };bp[92]={t:280,l:534,w:76,h:124 };bp[93]={t:470,l:51,w:90,h:124 };bp[94]={t:470,l:141,w:76,h:124 };bp[95]={t:470,l:217,w:41,h:124 };bp[96]={t:470,l:258,w:77,h:124 };bp[97]={t:470,l:335,w:71,h:124 };bp[98]={t:470,l:405,w:68,h:124 };bp[99]={t:470,l:473,w:68,h:124 };bp[100]={t:470,l:541,w:68,h:124 };bp[101]={t:660,l:51,w:99,h:121 };bp[102]={t:660,l:150,w:57,h:121 };bp[103]={t:660,l:207,w:57,h:121 };bp[104]={t:660,l:264,w:31,h:121 };bp[105]={t:660,l:295,w:42,h:121 };bp[106]={t:660,l:337,w:56,h:121 };bp[107]={t:660,l:393,w:57,h:121 };bp[108]={t:660,l:450,w:103,h:121 };bp[109]={t:660,l:553,w:56,h:121 };bp[110]={t:92,l:50,w:145,h:122 };bp[111]={t:92,l:195,w:60,h:122 };bp[112]={t:92,l:255,w:61,h:122 };bp[113]={t:92,l:316,w:61,h:122 };bp[114]={t:92,l:377,w:103,h:122 };bp[115]={t:92,l:480,w:61,h:122 };bp[116]={t:92,l:541,w:69,h:122 };bp[117]={t:281,l:50,w:144,h:122 };bp[118]={t:281,l:194,w:66,h:122 };bp[119]={t:281,l:260,w:48,h:122 };bp[120]={t:281,l:308,w:49,h:122 };bp[121]={t:281,l:357,w:103,h:122 };bp[122]={t:281,l:460,w:49,h:122 };bp[123]={t:281,l:509,w:101,h:122 };bp[124]={t:471,l:50,w:121,h:122 };bp[125]={t:471,l:171,w:79,h:122 };bp[126]={t:471,l:249,w:79,h:122 };bp[127]={t:471,l:328,w:116,h:122 };bp[128]={t:471,l:444,w:79,h:122 };bp[129]={t:471,l:523,w:87,h:122 };bp[130]={t:660,l:50,w:148,h:121 };bp[131]={t:660,l:198,w:74,h:121 };bp[132]={t:660,l:272,w:74,h:121 };bp[133]={t:660,l:347,w:74,h:121 };bp[134]={t:660,l:421,w:74,h:121 };bp[135]={t:660,l:495,w:54,h:121 };bp[136]={t:660,l:549,w:57,h:121 }; var bpp = []; bpp[1]={t:147,l:61,w:80,h:21 };bpp[2]={t:147,l:142,w:70,h:21 };bpp[3]={t:147,l:212,w:74,h:21 };bpp[4]={t:147,l:286,w:98,h:21 };bpp[5]={t:147,l:384,w:55,h:21 };bpp[6]={t:147,l:438,w:83,h:21 };bpp[7]={t:147,l:521,w:82,h:21 };bpp[8]={t:223,l:61,w:95,h:21 };bpp[9]={t:223,l:156,w:33,h:21 };bpp[10]={t:223,l:189,w:44,h:21 };bpp[11]={t:223,l:233,w:72,h:21 };bpp[12]={t:223,l:305,w:51,h:21 };bpp[13]={t:223,l:356,w:73,h:21 };bpp[14]={t:223,l:429,w:51,h:21 };bpp[15]={t:223,l:480,w:73,h:21 };bpp[16]={t:223,l:552,w:51,h:21 };bpp[17]={t:300,l:61,w:98,h:21 };bpp[18]={t:300,l:159,w:75,h:21 };bpp[19]={t:300,l:234,w:72,h:21 };bpp[20]={t:300,l:306,w:76,h:21 };bpp[21]={t:300,l:381,w:100,h:21 };bpp[22]={t:300,l:481,w:56,h:21 };bpp[23]={t:300,l:537,w:66,h:21 };bpp[24]={t:377,l:61,w:72,h:21 };bpp[25]={t:377,l:133,w:55,h:21 };bpp[26]={t:377,l:187,w:54,h:21 };bpp[27]={t:377,l:242,w:41,h:21 };bpp[28]={t:377,l:282,w:48,h:21 };bpp[29]={t:377,l:330,w:56,h:21 };bpp[30]={t:377,l:387,w:56,h:21 };bpp[31]={t:377,l:443,w:56,h:21 };bpp[32]={t:377,l:499,w:48,h:21 };bpp[33]={t:377,l:547,w:56,h:21 };bpp[34]={t:454,l:61,w:112,h:21 };bpp[35]={t:454,l:173,w:37,h:21 };bpp[36]={t:454,l:210,w:63,h:21 };bpp[37]={t:454,l:273,w:109,h:21 };bpp[38]={t:454,l:381,w:111,h:21 };bpp[39]={t:454,l:493,w:110,h:21 };bpp[40]={t:531,l:61,w:151,h:21 };bpp[41]={t:531,l:212,w:103,h:21 };bpp[42]={t:531,l:315,w:105,h:21 };bpp[43]={t:531,l:420,w:106,h:21 };bpp[44]={t:531,l:526,w:77,h:21 };bpp[45]={t:608,l:61,w:124,h:21 };bpp[46]={t:608,l:185,w:86,h:21 };bpp[47]={t:608,l:272,w:86,h:21 };bpp[48]={t:608,l:358,w:73,h:21 };bpp[49]={t:608,l:431,w:86,h:21 };bpp[50]={t:608,l:517,w:86,h:21 };bpp[51]={t:685,l:61,w:143,h:21 };bpp[52]={t:685,l:204,w:79,h:21 };bpp[53]={t:685,l:283,w:105,h:21 };bpp[54]={t:685,l:388,w:108,h:21 };bpp[55]={t:685,l:496,w:107,h:21 };bpp[56]={t:762,l:61,w:152,h:21 };bpp[57]={t:762,l:213,w:104,h:21 };bpp[58]={t:762,l:317,w:104,h:21 };bpp[59]={t:762,l:422,w:107,h:21 };bpp[60]={t:762,l:528,w:27,h:21 };bpp[61]={t:762,l:556,w:48,h:21 };bpp[62]={t:104,l:61,w:95,h:21 };bpp[63]={t:104,l:157,w:67,h:21 };bpp[64]={t:104,l:223,w:66,h:21 };bpp[65]={t:104,l:290,w:67,h:21 };bpp[66]={t:104,l:357,w:57,h:21 };bpp[67]={t:104,l:414,w:66,h:21 };bpp[68]={t:104,l:480,w:67,h:21 };bpp[69]={t:104,l:547,w:31,h:21 };bpp[70]={t:186,l:62,w:80,h:21 };bpp[71]={t:186,l:141,w:70,h:21 };bpp[72]={t:186,l:212,w:74,h:21 };bpp[73]={t:186,l:286,w:98,h:21 };bpp[74]={t:186,l:383,w:55,h:21 };bpp[75]={t:186,l:438,w:83,h:21 };bpp[76]={t:186,l:521,w:82,h:21 };bpp[77]={t:268,l:61,w:96,h:20 };bpp[78]={t:268,l:157,w:33,h:20 };bpp[79]={t:268,l:190,w:38,h:20 };bpp[80]={t:268,l:228,w:74,h:20 };bpp[81]={t:268,l:301,w:51,h:20 };bpp[82]={t:268,l:353,w:73,h:20 };bpp[83]={t:268,l:426,w:52,h:20 };bpp[84]={t:268,l:478,w:73,h:20 };bpp[85]={t:268,l:551,w:52,h:20 };bpp[86]={t:350,l:61,w:98,h:21 };bpp[87]={t:350,l:159,w:75,h:21 };bpp[88]={t:350,l:234,w:72,h:21 };bpp[89]={t:350,l:306,w:76,h:21 };bpp[90]={t:350,l:381,w:100,h:21 };bpp[91]={t:350,l:481,w:56,h:21 };bpp[92]={t:350,l:537,w:66,h:21 };bpp[93]={t:433,l:61,w:79,h:20 };bpp[94]={t:433,l:140,w:61,h:20 };bpp[95]={t:433,l:201,w:57,h:20 };bpp[96]={t:433,l:259,w:47,h:20 };bpp[97]={t:433,l:305,w:57,h:20 };bpp[98]={t:433,l:362,w:62,h:20 };bpp[99]={t:433,l:424,w:63,h:20 };bpp[100]={t:433,l:487,w:63,h:20 };bpp[101]={t:433,l:549,w:54,h:20 };bpp[102]={t:515,l:61,w:96,h:20 };bpp[103]={t:515,l:157,w:58,h:20 };bpp[104]={t:515,l:215,w:32,h:20 };bpp[105]={t:515,l:247,w:42,h:20 };bpp[106]={t:515,l:288,w:37,h:20 };bpp[107]={t:515,l:325,w:36,h:20 };bpp[108]={t:515,l:362,w:103,h:20 };bpp[109]={t:515,l:465,w:36,h:20 };bpp[110]={t:515,l:501,w:102,h:20 };bpp[111]={t:597,l:61,w:81,h:21 };bpp[112]={t:597,l:142,w:36,h:21 };bpp[113]={t:597,l:179,w:36,h:21 };bpp[114]={t:597,l:215,w:103,h:21 };bpp[115]={t:597,l:318,w:36,h:21 };bpp[116]={t:597,l:354,w:45,h:21 };bpp[117]={t:597,l:399,w:102,h:21 };bpp[118]={t:597,l:501,w:66,h:21 };bpp[119]={t:597,l:567,w:36,h:21 };bpp[120]={t:680,l:61,w:76,h:20 };bpp[121]={t:680,l:137,w:103,h:20 };bpp[122]={t:680,l:240,w:38,h:20 };bpp[123]={t:680,l:278,w:102,h:20 };bpp[124]={t:680,l:380,w:44,h:20 };bpp[125]={t:680,l:424,w:38,h:20 };bpp[126]={t:680,l:462,w:38,h:20 };bpp[127]={t:680,l:500,w:103,h:20 };bpp[128]={t:762,l:61,w:79,h:21 };bpp[129]={t:762,l:140,w:49,h:21 };bpp[130]={t:762,l:190,w:103,h:21 };bpp[131]={t:762,l:293,w:48,h:21 };bpp[132]={t:762,l:341,w:48,h:21 };bpp[133]={t:762,l:389,w:48,h:21 };bpp[134]={t:762,l:437,w:64,h:21 };bpp[135]={t:762,l:502,w:47,h:21 };bpp[136]={t:762,l:549,w:50,h:21 }; var delaytime=parseInt(bt[1].e)*7;var pageBeforeChanging;function changepage1(e) { let base; let playTimes; let maxPages; let playingpart; let readytogo; document.getElementById('layer1').style.visibility = 'hidden'; if (lb == null) { initiatestuff(); } if (ison1 ||ison2 ||ison3||ison4) { if(typeof bpp !== 'undefined' && typeof ppt !== 'undefined') { playTimes = ppt; } else { playTimes = pt; } base = baseUrl; maxPages = max_playalong_page; playingpart=true; } else { playingpart=false; playTimes = pt; base = ss+score; maxPages = no_pages; } let mult = showTwoPages ? 2 : 1; if (changedpage==0) { pageBeforeChanging = currpage; changedpage = 1; manual_scroll=1; } if (carryon == 1 && e == 'r' && currpage + mult <= maxPages ) { currpage += mult; var cp; cp = formatPageNumber(currpage,playingpart); if (!playingpart&&curtransp!=0) { switchScore("score", thissc+'_'+curtranspdir+curtransp+cp+'.gif'); } else { switchScore("score", base+cp+'.png');} if (showTwoPages) { if (currpage + 1 <= maxPages ) { var currpageplus1 = currpage+1; cp2 = formatPageNumber(currpageplus1,playingpart); if (!playingpart&&curtransp!=0){ switchScore("score2", thissc+'_'+curtranspdir+curtransp+cp2+'.gif'); } else { switchScore("score2", base+cp2+'.png'); } } else { switchScore("score2", ''); } } lb.classList.remove("pagenav_disabled") if (currpage >= maxPages ||(showTwoPages&&currpage+1 >= maxPages)) { rb.classList.add("pagenav_disabled") } } else if ('l' == e && currpage > 1 * mult) { currpage -= mult; var cp; cp = formatPageNumber(currpage,playingpart); if (!playingpart&&curtransp!=0) { switchScore("score", thissc+'_'+curtranspdir+curtransp+cp+'.gif'); } else { switchScore("score", base+cp+'.png'); } if (showTwoPages) { if (currpage + 1 <= maxPages) { var currpageplus1 = currpage+1; cp2 = formatPageNumber(currpageplus1,playingpart); if (!playingpart&&curtransp!=0) { switchScore("score2", thissc+'_'+curtranspdir+curtransp+cp2+'.gif'); } else { switchScore("score2", base+cp2+'.png'); } } else { switchScore("score2", ''); } } rb.classList.remove("pagenav_disabled") if (1 == currpage) { lb.classList.add("pagenav_disabled") } }}function formatPageNumber(page, isPlayingPart=false) { if (isPlayingPart || curtransp == 0) { return page < 10 ? '00' + page : (page < 100 ? '0' + page : page); } else { return page < 10 ? '00' + page : (page < 100 ? '0' + page : page); }}function changepage2(dir) { hideLoopGuide(); changepage1(dir);}function changepage_playalong(dir) { if(lb==null){ initiatestuff(); } document.getElementById('layer1').style.visibility='hidden'; if( ison3==1||ison2==1||ison4==1){ //changing part var ds=sco.src; if(dir=='r') { switchScore('score', bumpStringInt(ds,dir)); } else { switchScore('score', bumpStringInt(ds,dir)); } } else { if (changedpage==0) { pageBeforeChanging = currpage; changedpage = 1; } var cp2 if(carryon==true){ if(dir=='r'&&(currpage<2)) { currpage=currpage+1; if (currpage<10){cp2='00'+(currpage)} else if (currpage<100){cp2='0'+(currpage)} else {cp2=currpage} switchScore("score", baseUrl+cp2+'.png'); lb.classList.remove("pagenav_disabled"); if (currpage==max_playalong_page||showTwoPages&&(currpage+1 == max_playalong_page)){rb.classList.add("pagenav_disabled");} } else if(dir=='l'&&(currpage>1)) { currpage=currpage-1; if (currpage<10){cp2='00'+(currpage)} else if (currpage<100){cp2='0'+(currpage)} else {cp2=currpage} switchScore("score", baseUrl+cp2+'.png'); rb.classList.remove("pagenav_disabled"); if (currpage==1){lb.classList.add("pagenav_disabled");} } } }}var pauseamount=0;var pppa=0;var stimer; function playmain(stype){ baseUrl=''; temp_IS_HIGHLIGHT_ON=IS_HIGHLIGHT_ON; manual_scroll=0;if(g){ clearTimeout(g);} if(ison1) { hideLoopGuide(); } if (document.getElementById('pausebefore').checked==true&&ison0 == 0){ pauseamount=5;updatecountin(); pppa=pauseamount+1;} else {pauseamount=0;pppa=0} stimer = window.setTimeout( "playmain2("+stype+")", (pppa*1000)); stopplayalongreturntostandardview() resizeStage();} getCachedImageFromMap(ss+score+'001.png', imageCache); getCachedImageFromMap(ss+score+'002.png', imageCache); getCachedImageFromMap(ss+score+'003.png', imageCache); getCachedImageFromMap(ss+score+'004.png', imageCache); getCachedImageFromMap(ss+score+'005.png', imageCache); getCachedImageFromMap(ss+'viola/mozart_turkish_march_full_vla_va001.png', imageCache); getCachedImageFromMap(ss+'viola/mozart_turkish_march_full_vla_va002.png', imageCache); function playmain2(stype, keepPlayState, wasOn) { partopen=0; let wasStoped = pauseon || !wasOn; if(lb==null){initiatestuff()} if (stype==0){ stopplayalongreturntostandardview() } if (ison0) { playalongstop();changedpage=0; } else { if (!keepPlayState || !wasStoped) { startTimeframe(DESIRED_FPS); } l1.style.visibility='visible'; } var num_listened=readCookie('num_listened') if (num_listened=='undefined'||num_listened=='NaN'){num_listened=0;} if (everyplayed==0){ num_listened=p(num_listened)+1; eraseCookie('num_listened') createCookie('num_listened',num_listened,1) everyplayed=1; } if (num_listened>3){overlay();return ;} if (ison0 == 0) { ison0 = 1;ison1=0 ;ison2=0;ison3=0;ison4=0; document.getElementById('icon0').src = sic; aud=document.getElementById('demo0') pb.style.display='flex'; document.getElementById('metandtemp').style.visibility='visible'; pico.style.display='inline-block'; ic1.style.display='none'; ic2.style.display='none'; aic1.style.display='none'; aic2.style.display='none'; if (ic3){ ic3.style.display='none'; aic3.style.display='none'; } if (ic4){ ic4.style.display='none'; aic4.style.display='none'; } aisp=document.getElementById('aispacer'); aisp.style.display='inline-flex';aisp.style.visibiliy='visible'; checkIfShouldShowTwoPages(); aud.addEventListener('timeframe',function(){ if (aud.currentTime< 28) { if(currpage!=1&&changedpage==0){ currpage=1 switchScore('score', ss+score+'00'+(currpage)+'.png'); lb.classList.remove("pagenav_disabled"); rb.classList.remove("pagenav_disabled"); if (currpage==no_pages||showTwoPages&&(currpage+1 == no_pages)){rb.classList.add("pagenav_disabled");} } } },false); aud.addEventListener('timeframe',checktimeupdate); aud.addEventListener('timeframe',checkbartimeupdate); aud.addEventListener('timeframe', updateProgress, false);aud.addEventListener('ended', audioend); updateplaybackrate(document.getElementById('speed').value) aud.play();aud.currentTime = 0; if (stype==0) { if(curtransp!=0){ switchScore('score', thissc+'_'+curtranspdir+curtransp+'001.gif'); switchScore('score2', thissc+'_'+curtranspdir+curtransp+'002.gif'); } else { switchScore('score', scfile); switchScore('score2', scfile2); } currpage=1; if(!ext_traditional){ lb.classList.add("pagenav_disabled"); if(no_pages>1&&!showTwoPages||no_pages>2){rb.classList.remove("pagenav_disabled"); } } } } else { ison0 = 0; pb.style.display='none'; pico.style.display='none'; if(curtransp!=0){ switchScore('score', thissc+'_'+curtranspdir+curtransp+'001.gif'); switchScore('score2', thissc+'_'+curtranspdir+curtransp+'002.gif'); } else { switchScore('score', scfile); switchScore('score2', scfile2); } document.getElementById('metandtemp').style.visibility='hidden'; if (stype==0){ stopplayalongreturntostandardview(); l1.style.visibility='hidden'; stopLoop(); } } if(keepPlayState) { if (wasStoped) { pauseon=0; callpause(); setTimeout(() => { checkbartimeupdate(); updateProgress(); }, 100) } } resizeStage(); }function uptr(nop,currpage){ if(lb==null){initiatestuff();} lb.classList.remove("pagenav_disabled");rb.classList.remove("pagenav_disabled"); if ((currpage==nop)||showTwoPages&&(currpage==nop-1)){rb.classList.add("pagenav_disabled"); } if (currpage==1){lb.classList.add("pagenav_disabled");}}function audioend(){ if(ison0==1){playmain(0)} else if (ison1==1){playalongacc(1)} else if (ison2==1){playalongacc(2)} else if (ison3==1){playalongacc(3)} else if (ison4==1){playalongacc(4)}}var changingpage = false;var oldpage;function checktimeupdate() { let showingPages = 1; if (showTwoPages) { showingPages = 2; if (pt.length % 2 === 0) { pt.push({ e: pt[pt.length - 1].e }); } } let pageI = pt.findIndex((page) => { return (page || {e:0}).e - PAGE_TURNING_TIME>= aud.currentTime; }); if (pageI <= -1) pageI = 1; let curPage = pt[pageI] || {e:0}; if (ison0 == 1 && changedpage == 0) { if (oldpage == null) { oldpage = 0; } else { oldpage = currpage; } // Math to make f(1) -> 1 f(2) -> 1 f(3) -> 3 f(4) -> 3 if showing 2 pages // and f(x) -> x, if showing only 1 page let page = Math.max(1, curPage.p || 1); currpage = Math.ceil(page / showingPages) * showingPages - Math.floor(0.5 * showingPages); if (showingPages === 2) { currpagearryno = pageI - (page % 2 ? 0 : 1); } else { currpagearryno = pageI; } var cp = currpage.toString().padStart(3, "0"); let newSrc; if (curtransp!=0) { cp = currpage.toString().padStart(3, "0"); newSrc = thissc+'_'+curtranspdir+curtransp+cp+'.gif' } else { newSrc = ss+score+cp+'.png'; } switchScore("score", newSrc); if (showTwoPages && currpage + 1 <= no_pages) { var currpageplus1 = currpage + 1; let cp2 = currpageplus1.toString().padStart(3, "0"); if (curtransp != 0) { cp2 = currpageplus1.toString().padStart(3, "0"); newSrc = thissc + "_" + curtranspdir+curtransp + cp2 + ".gif"; } else { newSrc = ss + score + cp2 + ".png"; } } else { newSrc = ""; } if ( sco2.src !== sco.src ) { switchScore("score2", newSrc); } uptr(no_pages, currpage); }}function checktimeupdateparts() { var delaytime=p(bt[1].e)*700; if (showTwoPages) { if (ppt.length % 2 === 0) { ppt.push({ e: ppt[ppt.length - 1].e }); } } let pageI = ppt.findIndex((page) => { return (page || {e:0}).e + p(delaytime/1000) - PAGE_TURNING_TIME >= aud.currentTime; }); if (pageI <= -1) pageI = 1; let curPage = ppt[pageI] || {e:0}; if (ison1 == 1 && changedpage == 0) { if (oldpage == null) { oldpage = 0; } else { oldpage = currpage; } // f(1) -> 1 f(2) -> 1 f(3) -> 3 f(4) -> 3 if showing 2 pages // and f(x) -> x, if showing only 1 page let page = Math.max(1, curPage.p || 1); if (showTwoPages) { currpage = Math.ceil(page / 2) * 2 - 1; currpagearryno = pageI - (page % 2 ? 0 : 1); } else { currpage = page; currpagearryno = pageI; } var cp = currpage.toString().padStart(3, "0"); let newSrc; if (baseUrl !== '') { newSrc = baseUrl + cp + '.png'; } else { newSrc = ss+score+cp+'.png'; } switchScore("score", newSrc); if (showTwoPages && currpage + 1 <= no_part_pages) { var currpageplus1 = currpage + 1; var CP2 = currpageplus1.toString().padStart(3, "0"); if (baseUrl !== '') { newSrc = baseUrl + cp2 + '.png'; } else { newSrc = ss+score+cp2+'.png'; } } else { newSrc = ''; } if(sco2.src !== sco.src) { switchScore("score2", newSrc); } uptr(max_playalong_page, currpage) }}function isElementInViewport (el) { var rect = el.getBoundingClientRect(); return ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /* or $(window).height() */ rect.right <= (window.innerWidth || document.documentElement.clientWidth) /* or $(window).width() */ );}function checkbartimeupdate() { var delaytime=p(bt[1].e)*700; var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor); var chrome_delay if (isChrome){ chrome_delay=aud.currentTime/500 } else{ chrome_delay=0 } if (ison0==1){delaytime=0;} if (((aud.currentTime+chrome_delay)*1000)delaytime||delaytime==0){ for(var aaa=1;aaa 1) { if ( zthisbartiming <= pageEndTime + 6 && zthisbartiming >= pageBeginTime ) { zthispage = true; } } else { zthispage = true; } } let pageOffset = 0; if (showTwoPages && zthisbartiming > firstPageEnd + 6) { pageOffset = document.getElementById('score2').offsetLeft; } else { pageOffset = document.getElementById('score').offsetLeft; } if(changedpage && currpage !== pageBeforeChanging) { l1.style.visibility='hidden'; } else { l1.style.visibility= temp_IS_HIGHLIGHT_ON ? 'visible' : 'hidden'; changedpage=0; if (ison0==1||ison1==1||ison1==2||ison3==1||ison4==1){ } var u,v,toppercwidth,leftpercwidth if (ison0==1 || (ison1 && typeof(bpp) === 'undefined')){ u = p(window.getComputedStyle(sco).getPropertyValue("width")); v = p(window.getComputedStyle(sco).getPropertyValue("height")); toppercwidth=p(window.getComputedStyle(sco).getPropertyValue("width")); toppercwidth=650/p(toppercwidth); leftpercwidth=p(window.getComputedStyle(sco).getPropertyValue("height")); leftpercwidth=920/p(leftpercwidth); if (document.getElementById('scrollview').checked==true) { l1.style.top=(p(bp[cbn].t))/toppercwidth+'px'; l1.style.left=(p((bp[cbn].l /toppercwidth ) +pageOffset))+'px'; l1.style.width=((p(bp[cbn].w))/toppercwidth)+'px'; l1.style.height=((p(bp[cbn].h))/toppercwidth)+'px'; if (cbn= (bt[loopEnd].e - 5 + delaytime / 100) / 10) { if (loopStart === 1) { aud.currentTime = 0 } else { aud.currentTime = ((bt[loopStart - 1] || {e: 0}).e + delaytime / 100) / 10; } } } }var curtransp=0;var curtranspdir='u';notransps=0;var thissc='https://www.8notes.com/school/transpositions/gif/viola/mozart_turkish_march_full_vla',tru=document.getElementById('tranup').style.background,trd=document.getElementById('trandown').style.background;function cleartransps(){ var u0=document.getElementById('u0'); u0.classList.remove("alphselected"); var u1=document.getElementById('u1'); u1.classList.remove("alphselected"); var u2=document.getElementById('u2'); u2.classList.remove("alphselected"); var u3=document.getElementById('u3'); u3.classList.remove("alphselected"); var u4=document.getElementById('u4'); u4.classList.remove("alphselected"); var u5=document.getElementById('u5'); u5.classList.remove("alphselected"); var u6=document.getElementById('u6'); u6.classList.remove("alphselected"); var d1=document.getElementById('d1'); d1.classList.remove("alphselected"); var d2=document.getElementById('d2'); d2.classList.remove("alphselected"); var d3=document.getElementById('d3'); d3.classList.remove("alphselected"); var d4=document.getElementById('d4'); d4.classList.remove("alphselected"); var d5=document.getElementById('d5'); d5.classList.remove("alphselected");}function transp(dir,numb,typeofaddition,kno){ if(lb==null){ initiatestuff() } rb.classList.remove("pagenav_disabled"); lb.classList.add("pagenav_disabled"); var actime=aud.currentTime; notransps=notransps+1; if(notransps>2) { overlay(); } else { if (typeofaddition==1){ switchScore('score', thissc+'_'+dir+numb+'001.gif'); cleartransps(); document.getElementById(dir+numb).classList.add("alphselected"); curtransp=numb; curtranspdir=dir; if (pt.length > 1) { pdfadd=dir+numb; switchScore('score2', thissc+'_'+dir+numb+'002.gif'); } aud.src='https://www.8notes.com/school/transpositions/mp3/viola/mozart_turkish_march_full_VLA_'+dir+numb +'.mp3'; if (ison0==1){ aud.play(); aud.currentTime = actime; } } else { //click the up or down buttons if(dir=='u') { if (curtransp<6) { curtransp=curtransp+numb; if(curtransp<0){ negtransp=-curtransp; pdfadd='d'+negtransp; switchScore('score', thissc+'_d'+negtransp+'001.gif'); cleartransps(); document.getElementById('d'+negtransp).classList.add("alphselected"); if (pt.length > 1) { switchScore('score', thissc+'_d'+negtransp+'002.gif'); } trd=bg2; aud.src='https://www.8notes.com/school/transpositions/mp3/viola/mozart_turkish_march_full_VLA_d'+negtransp +'.mp3'; if (ison0==1){ aud.play(); aud.currentTime = actime; } } else { pdfadd='u'+curtransp; cleartransps(); switchScore('score', thissc+'_u'+curtransp+'001.gif'); document.getElementById('u'+curtransp).classList.add("alphselected"); if (pt.length > 1) { switchScore('score2', thissc+'_u'+curtransp+'002.gif'); } aud.src='https://www.8notes.com/school/transpositions/mp3/viola/mozart_turkish_march_full_VLA_u'+curtransp +'.mp3'; if (ison0==1){ aud.play(); aud.currentTime = actime; } } if(curtransp==6){ tru=bg1; } else { trd=bg2; } } } else if(dir=='d'){ if(curtransp>-5) { curtransp=curtransp-numb; if(curtransp<0) { negtransp=-curtransp; pdfadd='d'+negtransp; cleartransps(); switchScore('score', thissc+'_d'+negtransp+'001.gif'); document.getElementById('d'+negtransp).classList.add("alphselected"); if (pt.length > 1) { switchScore('score2', thissc+'_d'+negtransp+'002.gif'); } aud.src='https://www.8notes.com/school/transpositions/mp3/viola/mozart_turkish_march_full_VLA_d'+negtransp +'.mp3'; if (ison0==1){ aud.play(); aud.currentTime = actime; } if (curtransp==-6) { trd=bg1; } else { tru=bg2; } } else { pdfadd='u'+curtransp; cleartransps(); switchScore('score', thissc+'_u'+curtransp+'001.gif'); document.getElementById('u'+curtransp).classList.add("alphselected"); if (pt.length > 1) { switchScore('score2', thissc+'_u'+curtransp+'002.gif'); } aud.src='https://www.8notes.com/school/transpositions/mp3/viola/mozart_turkish_march_full_VLA_u'+curtransp +'.mp3'; if (ison0==1){ aud.play(); aud.currentTime = actime; } tru=bg2; } } } }}transp_modal.style.display = "none";}


Download Score PDF

(8notes Premium)

Standard Parts

Viola
Request Additional Parts Request Large Note Part Request Part with Chords

(all shown in Concert Pitch)

    E minor F minor F# minor G minor Ab minor A minor Bb minor B minor C minor C# minor D minor Eb minor Request New Transposition

Arrangements of this piece also available for:

  • Accordion
  • Bassoon
  • Cello (8notes PREMIUM)
  • Cello
  • Cello Duet (Full Version)
  • Cello Quartet
  • Cello Trio (8notes PREMIUM)
  • Clarinet (full version)(8notes PREMIUM)
  • Clarinet Quartet
  • Clarinet Trio (8notes PREMIUM)
  • Double Bass
  • Flexible Brass (4)(8notes PREMIUM)
  • Flexible2 Players and Piano
  • Flute (full version)(8notes PREMIUM)
  • Flute Quartet
  • Flute Trio (8notes PREMIUM)
  • Flute-Clarinet Duet (Full Version)(8notes PREMIUM)
  • flute-violin-cello
  • French Horn
  • Guitar
  • Lead Sheets
  • Oboe (full version)(8notes PREMIUM)
  • Percussion
  • Piano
  • Piano
  • Piano (full version)(public domain)
  • Piano Duet
  • Piano Trio
  • Recorder - Soprano (Descant) (Easy Version)
  • Recorder - Soprano (Descant) (Full Version)(8notes PREMIUM)
  • Saxophone (Alto) (full version)(8notes PREMIUM)
  • Saxophone Quartet
  • String Quartet
  • Tenor Saxophone (Full Version)(8notes PREMIUM)
  • Trombone (full version)(8notes PREMIUM)
  • Trumpet (full version)(8notes PREMIUM)
  • Tuba
  • Tuba (Full Version)(8notes PREMIUM)
  • Viola
  • Viola Quartet
  • Viola Trio (8notes PREMIUM)
  • Violin (full version)(8notes PREMIUM)
  • Violin
  • Violin Duet (Full Version)(8notes PREMIUM)
  • Violin Quartet
  • Violin Trio (8notes PREMIUM)
  • Violin-Cello Duet (full version)(8notes PREMIUM)
  • Violin-Viola Duet (Full Version)(8notes PREMIUM)
    Request New Version
    Download Midi File

    Request Separated Instrument Midi Files

    Download MP3 Piano Playalong MP3 Slow Playalong MP3 E minor Transposition F minor Transposition F# minor Transposition G minor Transposition Ab minor Transposition A minor Transposition Bb minor Transposition B minor Transposition C minor Transposition C# minor Transposition D minor Transposition Eb minor Transposition

Artist:

Wolfgang Amadeus Mozart (Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (1)biography)

Born:

January 27, 1756,December 5, 1791

Died:

Salzburg,Vienna

The Artist:

A child prodigy, Mozart wrote his first symphony when he was eight years old and his first opera at 12. He went on to write some of the most important masterpieces of the Classical era, including symphonies, operas, string quartets and piano music.

Composed:

c,1783

Info:

This is the 3rd movement from The Piano Sonata No. 11 in A major, K. 331. The last movement, "Alla Turca", popularly known as the "Turkish Rondo", is often heard on its own and is one of Mozart's best-known piano pieces; it was Mozart himself who titled the rondo "Alla Turca". It imitates the sound of Turkish Janissary bands.

Score Key:

A minor (Sounding Pitch) (Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (2)View more A minor Music for Viola )

Tempo Marking:

Allegro con brio (Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (3)View more music marked Allegro)

Duration:

3:40

Time Signature:

2/4 (Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (4)View more 2/4 Music)

Range:

Ab4-E6

Number of Pages:

5

Difficulty:

Advanced Level: Recommended for Advanced Players

Instrument:

Viola

(Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (5)View more Advanced Viola Music)

Style:

Classical(Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (6)View more Classical Viola Music)

Tags:

pieces in 2-4 time signature

Copyright:

© Copyright 2000-2024 Red Balloon Technology Ltd (8notes.com)

This piece is included in the following :

Pieces in 2-4 Time Signature

Info

You might also like:

Un Aura Amorosa from Cosi fan tutte by Wolfgang Amadeus Mozart
Por Una Cabeza by Carlos Gardel
The Flight of the Bumblebee by Nikolai Rimsky-Korsakov
Turkish March by Wolfgang Amadeus Mozart
The Entertainer by Scott Joplin

Close X

You have reached your limit for today.
Join 8notes PREMIUM for unlimited playback & transpositions

Individual Subscriptions:

Click here for more info on 8notes PREMIUM

Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (9)

  • Help
  • Money Back Guarantee
  • Privacy Policy
  • Terms
  • About Us
  • Site Tour
  • Contact Us
  • Help Us Improve!

© 2000-2024 8notes.com

Mozart, Wolfgang Amadeus - Turkish March (full version) Sheet music for Viola (2024)

References

Top Articles
News, Rumors and Opinions Thursday AM 2-16-2023 — Dinar Recaps
Judy, MilitiaMan and more.....Wednesday Morning 2-22-2023 — Dinar Recaps
Northern Counties Soccer Association Nj
Mchoul Funeral Home Of Fishkill Inc. Services
O'reilly's Auto Parts Closest To My Location
Jennifer Hart Facebook
Amtrust Bank Cd Rates
Linkvertise Bypass 2023
Craigslist Parsippany Nj Rooms For Rent
Ventura Craigs List
Apply A Mudpack Crossword
How Far Is Chattanooga From Here
You can put a price tag on the value of a personal finance education: $100,000
Charmeck Arrest Inquiry
O'reilly's Auto Parts Closest To My Location
Jvid Rina Sauce
I Wanna Dance with Somebody : séances à Paris et en Île-de-France - L'Officiel des spectacles
Shreveport Active 911
Walmart Windshield Wiper Blades
Truck Trader Pennsylvania
Lake Nockamixon Fishing Report
Soccer Zone Discount Code
Rams vs. Lions highlights: Detroit defeats Los Angeles 26-20 in overtime thriller
Commodore Beach Club Live Cam
My Homework Lesson 11 Volume Of Composite Figures Answer Key
Swgoh Blind Characters
Kamzz Llc
Ahrefs Koopje
Chamberlain College of Nursing | Tuition & Acceptance Rates 2024
Cable Cove Whale Watching
Mchoul Funeral Home Of Fishkill Inc. Services
Robert A McDougal: XPP Tutorial
Advance Auto Parts Stock Price | AAP Stock Quote, News, and History | Markets Insider
Jeep Cherokee For Sale By Owner Craigslist
Kagtwt
Craigslist Org Sf
Navigating change - the workplace of tomorrow - key takeaways
The Best Carry-On Suitcases 2024, Tested and Reviewed by Travel Editors | SmarterTravel
آدرس جدید بند موویز
A Man Called Otto Showtimes Near Amc Muncie 12
Go Upstate Mugshots Gaffney Sc
Jefferson Parish Dump Wall Blvd
Why Holly Gibney Is One of TV's Best Protagonists
Whitehall Preparatory And Fitness Academy Calendar
Bartow Qpublic
Who Is Responsible for Writing Obituaries After Death? | Pottstown Funeral Home & Crematory
FREE - Divitarot.com - Tarot Denis Lapierre - Free divinatory tarot - Your divinatory tarot - Your future according to the cards! - Official website of Denis Lapierre - LIVE TAROT - Online Free Tarot cards reading - TAROT - Your free online latin tarot re
Alston – Travel guide at Wikivoyage
814-747-6702
Pike County Buy Sale And Trade
Playboi Carti Heardle
Hughie Francis Foley – Marinermath
Latest Posts
Article information

Author: Lilliana Bartoletti

Last Updated:

Views: 6051

Rating: 4.2 / 5 (53 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Lilliana Bartoletti

Birthday: 1999-11-18

Address: 58866 Tricia Spurs, North Melvinberg, HI 91346-3774

Phone: +50616620367928

Job: Real-Estate Liaison

Hobby: Graffiti, Astronomy, Handball, Magic, Origami, Fashion, Foreign language learning

Introduction: My name is Lilliana Bartoletti, I am a adventurous, pleasant, shiny, beautiful, handsome, zealous, tasty person who loves writing and wants to share my knowledge and understanding with you.