forked from ofZach/devart-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThanks for Downloading Max « Cycling 74.html
1051 lines (906 loc) · 55.8 KB
/
Thanks for Downloading Max « Cycling 74.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html xmlns:fb="http://ogp.me/ns/fb#">
<!--[if lt IE 7 ]> <html class="no-js ie6" lang="en-US"> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7" lang="en-US"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8" lang="en-US"> <![endif]-->
<!--[if IE 9 ]> <html class="no-js ie9" lang="en-US"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# cycling-seventy-four: http://ogp.me/ns/fb/cycling-seventy-four#">
<!-- THIS IS THE KM SCRIPT FOR THE PRODUCTION SLICE -->
<script type="text/javascript">
var _kmq = _kmq || [];
function _kms(u){
setTimeout(function(){
var s = document.createElement('script'); var f = document.getElementsByTagName('script')[0]; s.type = 'text/javascript'; s.async = true;
s.src = u; f.parentNode.insertBefore(s, f);
}, 1);
}
_kms('//i.kissmetrics.com/i.js');_kms('//doug1izaerwt3.cloudfront.net/c36e88e933881c2555e8f0a17c92ccbf4ba5d4a1.1.js');
</script>
<!-- Google Tracking Code for Production-->
<script type="text/javascript">
var _gaq = _gaq || [];
var analyticsAccountID;
if (document.URL.indexOf("staging") == -1) {
analyticsAccountID = 'UA-10082806-2';
} else {
analyticsAccountID = 'UA-37192374-1';
}
_gaq.push(['_setAccount', analyticsAccountID]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script>
_kmq.push(['record', 'Visited page Thanks for Downloading Max']);
_gaq.push(['_trackEvent', 'Page Views', 'Visited page', 'Thanks for Downloading Max']);
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Thanks for Downloading Max « Cycling 74</title>
<meta property="og:type" content="cycling-seventy-four:link" />
<meta property="og:url" content="http://cycling74.com/thanks-for-downloading-max/" />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="cycling74">
<meta name="twitter:title" content="Thanks for Downloading Max « Cycling 74">
<meta name="twitter:description" content="Cycling '74 creates software for innovation and exploration">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico">
<script src="http://cycling74.com/wp-content/themes/cycling74-2012/js/jquery-1.7.2.js"></script>
<script src="http://cycling74.com/wp-content/themes/cycling74-2012/js/script.js"></script>
<script src="http://cycling74.com/wp-content/themes/cycling74-2012/js/bootstrap/js/bootstrap.js"></script>
<script src="http://cycling74.com/wp-content/themes/cycling74-2012/js/bootstrap/js/bootstrap-carousel.js"></script>
<script src="http://cycling74.com/wp-content/themes/cycling74-2012/js/bootstrap/js/bootstrap-tooltip.js"></script>
<script src="http://cycling74.com/wp-content/themes/cycling74-2012/js/bootstrap/js/bootstrap-popover.js"></script>
<link rel="stylesheet" href="http://cycling74.com/wp-content/themes/cycling74-2012/js/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="http://cycling74.com/wp-content/themes/cycling74-2012/js/bootstrap/css/font-awesome.min.css">
<link rel="stylesheet" href="http://cycling74.com/wp-content/themes/cycling74-2012/js/bootstrap/css/bootstrap-responsive.css">
<link rel="stylesheet/less" type="text/css" href="http://cycling74.com/wp-content/themes/cycling74-2012/style-responsive.less?v=20140316183813" />
<link rel="stylesheet/less" href="http://cycling74.com/wp-content/themes/cycling74-2012-forums/style-forums.less?v=20140316183813" />
<script src="http://cycling74.com/wp-content/themes/cycling74-2012/js/bootstrap/js/less-1.3.0.min.js"></script>
<script src="http://cycling74.com/wp-content/themes/cycling74-2012/js/jquery.cookie.js"></script>
<link rel="pingback" href="http://cycling74.com/xmlrpc.php">
<!-- MAX POST-DOWNLOAD PAGE -->
<META HTTP-EQUIV="Refresh" CONTENT="3;URL=http://filepivot.appspot.com/projects/maxmspjitter/files/mac-epii4">
<!-- wordpress head -->
<link rel="alternate" type="application/rss+xml" title="Cycling 74 » Feed" href="http://cycling74.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Cycling 74 » Comments Feed" href="http://cycling74.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="Cycling 74 » Thanks for Downloading Max Comments Feed" href="http://cycling74.com/thanks-for-downloading-max/feed/" />
<link rel='stylesheet' id='tubepress-css' href='http://cycling74.com/wp-content/plugins/tubepress/src/main/web/css/tubepress.css?ver=3.5.1' type='text/css' media='all' />
<link rel='stylesheet' id='d4p-bbattachments-css-css' href='http://cycling74.com/wp-content/plugins/gd-bbpress-attachments/css/gd-bbpress-attachments.css?ver=1.9.2_b1285_free' type='text/css' media='all' />
<script type='text/javascript' src='http://cycling74.com/wp-content/plugins/bbpress-copy-compressed/toggle-max-patch.js?ver=3.5.1'></script>
<script type='text/javascript' src='http://cycling74.com/wp-includes/js/jquery/jquery.js?ver=1.8.3'></script>
<script type='text/javascript' src='http://cycling74.com/wp-content/plugins/tubepress/src/main/web/js/tubepress.js?ver=3.5.1'></script>
<script type='text/javascript' src='http://cycling74.com/wp-includes/js/comment-reply.min.js?ver=3.5.1'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://cycling74.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://cycling74.com/wp-includes/wlwmanifest.xml" />
<link rel='prev' title='Download Soundflower' href='http://cycling74.com/soundflower-landing-page/' />
<link rel='next' title='Was ist Max?' href='http://cycling74.com/whatismax/german/' />
<meta name="generator" content="WordPress 3.5.1" />
<link rel='canonical' href='http://cycling74.com/thanks-for-downloading-max/' />
<script type="text/javascript">
/* <![CDATA[ */
var gdbbPressAttachmentsInit = {
max_files: 4 };
/* ]]> */
</script> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script src="http://cycling74.com/wp-content/plugins/google-mp3-audio-player/jquery.ui.touch-punch.js"></script>
<script src="http://cycling74.com/wp-content/plugins/google-mp3-audio-player/swfobject.js"></script>
<link rel="stylesheet" href="http://cycling74.com/wp-content/plugins/google-mp3-audio-player/style.css" />
<script type="text/javascript">
//An array containing the id's of all mp3 players
var ca_myPlayers = new Array();
//An array containing the Volume State of each mp3 player
var ca_volumeStates = new Array();
var ca_position = 0;
var $codeart = jQuery.noConflict();
$codeart(document).ready(function() {
});
//Function that checks whether or not an audio format is supported
function supports_media(mimetype, container) {
var elem = document.createElement(container);
if(typeof elem.canPlayType == 'function'){
var playable = elem.canPlayType(mimetype);
if((playable.toLowerCase() == 'maybe')||(playable.toLowerCase() == 'probably')){
return true;
}
}
return false;
};
function ca_stopAllAudio(except){
$codeart('audio').each(function(){
if(this.id!=except){
this.pause(); // Stop playing
}
});
$codeart('.playpause').removeClass('play');
$codeart('.playpause').addClass('pause');
}
//Function that toogles play/pause functions of the audio element
function ca_tooglePlayPause(el,sender){
var btn = document.getElementById(sender.id);
if(document.getElementById(el).paused){
ca_stopAllAudio(el);
document.getElementById(el).play();
btn.className = "playpause play";
}
else{
document.getElementById(el).pause();
btn.className = "playpause pause";
}
}
//Funtion to stop the audio playing
function ca_stop(el,id){
document.getElementById(el).pause();
document.getElementById(el).currentTime = 0;
document.getElementById("playpause"+id).className = "playpause pause";
}
//timeupdate media event handler
function ca_timeUpdate(el, sender, id){
//update span id current_time
var sec = sender.currentTime;
sec = sec % 3600;
var min = Math.floor(sec / 60);
sec = Math.floor(sec % 60);
if (sec.toString().length < 2) sec = "0" + sec;
if (min.toString().length < 2) min = "0" + min;
document.getElementById('currentTime'+id).innerHTML = min + ":" + sec + " / ";
//update span id duration
var sec2 = sender.duration;
sec2 = sec2 % 3600;
var min2 = Math.floor(sec2 / 60);
sec2 = Math.floor(sec2 % 60);
if (sec2.toString().length < 2) sec2 = "0" + sec2;
if (min2.toString().length < 2) min2 = "0" + min2;
document.getElementById('duration'+id).innerHTML = min2 + ":" + sec2;
//update seekbar attributes: start time, end time, and current time
var seekbar = document.getElementById(el);
seekbar.min = sender.startTime;
seekbar.max = sender.duration;
seekbar.value = sender.currentTime;
$codeart( "#"+el ).slider( "value", sender.currentTime);
$codeart( "#"+el ).slider( "option", "max", sender.duration );
//update buffered percent of the audio file
var width = $codeart('#seek'+id).width();
var parentWidth = $codeart('#seek'+id).offsetParent().width();
var percent = 100*width/parentWidth;
var res = (sender.buffered.end(0)/sender.duration)*percent+"%";
$codeart("#gutter"+id).css("width", res);
}
//Toogle muted property of the audio
function ca_toogleMuted(el,sender){
var btn = document.getElementById(sender.id);
if(document.getElementById(el).muted==true){
document.getElementById(el).muted=false;
var i=ca_myPlayers.indexOf(el);
var classVolume = ca_volumeStates[i];
btn.className = "muteButton "+classVolume;
}
else{
document.getElementById(el).muted=true;
btn.className = "muteButton noVolume";
}
}
//When the audio ends make the pause button look like a play button
function ca_audioEnded(el){
btn = document.getElementById(el);
btn.className = "playpause pause";
}
//loadedmetadata Media event handler to update span id=duration of the audio player
function ca_metaLoaded(id){
var sender = document.getElementById("audio_with_controls"+id);
var sec = sender.duration;
sec = sec % 3600;
var min = Math.floor(sec / 60);
sec = Math.floor(sec % 60);
if (sec.toString().length < 2) sec = "0" + sec;
if (min.toString().length < 2) min = "0" + min;
document.getElementById('duration'+id).innerHTML = min + ":" + sec;
}
//function to create the volume bar of the audio player
function ca_createVolumeBar(id){
$codeart("#volume"+id).slider({
value : 75,
step : 1,
range : "min",
min : 0,
max : 100,
change : function(){
var value = $codeart("#volume"+id).slider("value");
var player = document.getElementById("audio_with_controls"+id);
player.volume = (value / 100);
var classVolume = "";
if(value>55){
classVolume = "fullVolume";
} else if(value>10 && value<=55){
classVolume = "middleVolume";
} else{
classVolume = "noVolume";
}
var i=ca_myPlayers.indexOf("audio_with_controls"+id);
ca_volumeStates[i] = classVolume;
if(player.muted==true){
player.muted=false;
}
document.getElementById("muteButton"+id).className = "muteButton "+classVolume;
}
});
}
//function to create the seek bar of the audio player
function ca_createSeekBar(id){
var seek = $codeart("#seek"+id).slider({
value : 0,
step : 0.00000001,
range : "min",
min : 0,
max : document.getElementById("audio_with_controls"+id).duration,
slide : function( event, ui ) {
var player = document.getElementById("audio_with_controls"+id);
player.currentTime = ui.value;
}
});
}
//Initialize the volume state of the audio player when page is loaded
function ca_initMuteButtonClass(id){
ca_myPlayers[ca_position] = "audio_with_controls"+id;
if($codeart("#muteButton"+id).hasClass("fullVolume"))
{
ca_volumeStates[ca_position] = "fullVolume";
} else if($codeart("#muteButton"+id).hasClass("middleVolume")){
ca_volumeStates[ca_position] = "middleVolume";
} else{
ca_volumeStates[ca_position] = "noVolume";
}
ca_position++;
}
//Make the audio player responsive
function ca_responsiveAudioPlayer(id,skin,download){
var playerH = $codeart("#controls"+id).height();
var playerW = $codeart("#controls"+id).width();
//Verticaly center playpause button
var playpauseH = $codeart("#playpause"+id).height();
var fplaypauseH = (playerH-playpauseH)/2;
$codeart("#playpause"+id).css("top",fplaypauseH);
//Verticaly center seekbar
var seekH = $codeart("#seek"+id).height();
var fseekH = (playerH-seekH)/2;
$codeart("#seek"+id).css("top",fseekH);
//Verticaly center gutter
var gutterH = $codeart("#gutter"+id).height();
var fgutterH = (playerH-gutterH)/2;
$codeart("#gutter"+id).css("top",fgutterH);
//Verticaly adjust timer span to be above the seekbar
var timerH = 27;
var ftimerH = ((playerH-timerH)/2)-(gutterH);
$codeart("#timer"+id).css("top",ftimerH);
//Verticaly center volumebar
var volumeH = $codeart("#volume"+id).height();
var fvolumeH = (playerH-volumeH)/2;
$codeart("#volume"+id).css("top",fvolumeH);
//Verticaly center mute button
var muteH = $codeart("#muteButton"+id).height()+2;
var fmuteH = (playerH-muteH)/2;
$codeart("#muteButton"+id).css("top",fmuteH);
var stopminiH = $codeart("#stop"+id).height();
if(skin==="small"){
//Available space for the seekbar & volumebar within audio player
//The seekbar's volumebar's width attribute changes, other elements remain the same
var available = playerW-95;
if(download==="true"){
available = playerW-110;
}
//Verticaly center stop button
var fstopminiH = (playerH-stopminiH)/2;
var pomMuteR = 7;
var pomTimerR = 27;
if(download==="true"){
pomMuteR = 35;
pomTimerR = 50;
}
} else{
//Available space for the seekbar & volumebar within audio player
//The seekbar's volumebar's width attribute changes, other elements remain the same
var available = playerW-100;
//Align stop button with playpause button
var fstopminiH = (playpauseH+fplaypauseH-stopminiH);
var pomMuteR = 12;
var pomTimerR = 35;
}
//The seekbar and the gutter are 3/4 of the available space
var seekW = (available*75)/100;
$codeart("#seek"+id).css("width",seekW);
$codeart("#gutter"+id).css("width",seekW);
//The volumebar is 1/4 of the available space
var volumeW = (available*25)/100;
if(download==="true" && skin==="small"){
volumeW = (available*20)/100;
$codeart("#volume"+id).css("right","34px");
}
$codeart("#volume"+id).css("width",volumeW);
var muteR = volumeW+pomMuteR;
$codeart("#muteButton"+id).css("right",muteR);
var timerR = volumeW+pomTimerR;
$codeart("#timer"+id).css("right",timerR);
$codeart("#stop"+id).css("top",fstopminiH);
if(download==="true")
$codeart("#downloadButton"+id).css("top",fstopminiH);
}
function ca_appendDownloadButton(id,mp3){
$codeart('#default_player_fallback'+id).after('<a id="downloadButton'+id+'" class="download-flash" href="'+mp3+'"></a>');
}
</script>
<style type="text/css">
.codeart-google-mp3-player .download-link{
display:block;
padding: 0 5px 0 5px;
float: left;
}
.codeart-google-mp3-player embed{
float: left;
}
.codeart-google-mp3-player{
overflow: hidden;
}
.codeart-google-mp3-player object{
float: left;
}
</style>
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}
</style>
<![endif]-->
<script type="text/javascript">TubePressGlobalJsConfig = { baseUrl : "http://cycling74.com/wp-content/plugins/tubepress", https : false };</script>
<link rel="stylesheet" type="text/css" href="http://cycling74.com/wp-content/plugins/wp-recaptcha/recaptcha.css" /> <!-- /wordpress head -->
<style type="text/css">
html {
margin-top: 0 !important;
}
</style>
<script type="text/javascript" charset="utf-8">
jQuery(document).ready(function($) {
// Is this necessary? - Ginger
// function gup(name)
// {
// var regexS = "[\\?&]"+name+"=([^&#]*)";
// var regex = new RegExp( regexS );
// var tmpURL = window.location.href;
// var results = regex.exec( tmpURL );
// var results = regex.exec( unescape(window.location.href) );
// if( results == null )
// return "";
// else
// return results[1];
// }
// var response = gup('flash');
// if (response) {
// $("h1.content").html(response);
// $("div.flash_msg").slideDown("slow");
// setTimeout(function()
// {
// $("div.flash_msg").slideUp("slow");
// }, 6000);
// }
// $("#s").focus(function(){
// console.log($("#s").val())
// if ($("#s").val() == 'Search') {
// $("#s").val('');
// }
// })
/*
// make the nav menu sticky on sroll
// uncomment to set active - august
var $hnw = $('#header-nav-wrapper');
var $hnws = $('#header-nav-wrapper-sticky');
var $wpab = $('#wpadminbar');
var hnw_fixpos = 0;
if ($wpab.length > 0 ) hnw_fixpos = $wpab.height();
var hnw_off = $hnw.offset();
$hnws.css({'position': 'fixed', 'top': hnw_fixpos + 'px', 'width':'100%'})
var sticky_showing=false;
function showSticky() {
if (sticky_showing==false) {
$hnws.fadeIn(50);
sticky_showing=true;
}
}
function hideSticky() {
if (sticky_showing==true) {
$hnws.fadeOut(50);
sticky_showing=false;
}
}
function fixNav() {
if ($(window).scrollTop() > hnw_off.top - hnw_fixpos ) {
showSticky();
} else {
hideSticky();
}
}
$(window).scroll(fixNav);
*/
});
</script>
<!--
generated in 0.530 seconds
57507 bytes batcached for 300 seconds
-->
</head>
<body class="page page-id-15273 page-template page-template-page-download-max-thanks-php">
<!-- FACEBOOK JAVASCRIPT SDK -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: '128798821435', status: true, cookie: true, xfbml: true});
FB.Event.subscribe("xfbml.render", function() {
FB.Event.subscribe("edge.create", function(targetUrl) {
});
FB.Event.subscribe("edge.remove", function(targetUrl) {
});
});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<div class="flash_msg">
Thanks for your help. We've received your bug report.
</div>
<div id="header-wrapper" class="hidden-phone">
<div id="header-inner" class="container">
<div id="mainnav-user" class="">
<div class="row-fluid">
<div id="c74-logo" class="span2">
<a class="brand" href="http://cycling74.com/"><img src="http://cycling74.com/wp-content/themes/cycling74-2012/img/c74-icon-fff.png" alt="C74 Logo"></a>
</div><!-- logo -->
<div class="menu-item top tagline span6">
<a href="/category/company/journal" onClick="_gaq.push(['_trackEvent', 'Header Features', 'Clicked Header Blog Post Link', '/thanks-for-downloading-max/?filepivot_alias=mac-epii4']);"><strong>C74 BLOG:</strong> The Score for Her</a>
</div>
<div id="search" class="menu-item top hidden-phone span4">
<script>
(function() {
var cx = '013850683032301720298:rdjozxlucte';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:searchbox-only></gcse:searchbox-only>
</div><!-- search -->
</div>
<div id="why_register_box" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="true" style="z-index: 9999">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3>Why Register for a Cycling '74 Account?</h3>
</div>
<div class="modal-body">
<h2>Register for an account and join an active community of artists and creatives.</h2>
<p>
<ul>
<li>Post messages on the forums</li>
<li>Comment on articles on cycling74.com</li>
<li>Submit <a href="/project">projects</a> and <a href="/toolbox">tools</a></li>
<li>Maintain a profile page</li>
</ul>
</p>
</div>
<div class="modal-footer">
<a class="button" onClick="_gaq.push(['_trackEvent', 'User Status', 'Clicked Register Link (Why Register? Box)', '/thanks-for-downloading-max/?filepivot_alias=mac-epii4']);" href="/wp-signup.php">Create an Account</a>
</div>
</div>
</div><!-- mainnav-user -->
</div><!-- header-inner -->
</div><!-- header-wrapper -->
<div id="header-nav-wrapper" class="hidden-phone">
<div id="header-nav-inner" class="container">
<div id="header-nav">
<div class="menu-header-no-dropdown-container"><ul id="menu-header-no-dropdown" class="row menu span12"><li id="menu-item-249712" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249712"><a href="http://cycling74.com/products/">Products</a>
<ul class="sub-menu">
<li id="menu-item-270853" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270853"><a href="http://cycling74.com/products/max/">Max – <span class="description">visual programming</span></a></li>
<li id="menu-item-270875" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270875"><a href="http://cycling74.com/products/gen/">Gen – <span class="description">code generation</span></a></li>
<li id="menu-item-270851" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270851"><a href="http://cycling74.com/products/maxforlive/">Max for Live – <span class="description">extend Ableton Live</span></a></li>
<li id="menu-item-270854" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270854"><a href="http://cycling74.com/products/mira/">Mira – <span class="description">iPad Max controller</span></a></li>
<li id="menu-item-270852" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270852"><a href="http://cycling74.com/products/m/">M – <span class="description">composition system</span></a></li>
<li id="menu-item-270856" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270856"><a href="http://cycling74.com/products/cycles/">Cycles – <span class="description">sample collections</span></a></li>
<li id="menu-item-270857" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270857"><a href="http://cycling74.com/products/cyclops/">Cyclops – <span class="description">tracking in Max</span></a></li>
<li id="menu-item-270855" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270855"><a href="http://cycling74.com/products/c74music/">C74 Music Label – <span class="description">our collection</span></a></li>
<li id="menu-item-270874" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270874"><a href="http://cycling74.com/products/soundflower/">Soundflower – <span class="description">OS X utility</span></a></li>
</ul>
</li>
<li id="menu-item-249716" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249716"><a href="http://cycling74.com/shop/">Shop</a></li>
<li id="menu-item-249713" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249713"><a href="http://cycling74.com/downloads/">Downloads</a></li>
<li id="menu-item-249715" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249715"><a href="http://cycling74.com/support/">Support</a>
<ul class="sub-menu">
<li id="menu-item-270858" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-270858"><a href="http://cycling74.com/category/articles/tutorials/">Tutorials</a></li>
<li id="menu-item-270859" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270859"><a href="http://cycling74.com/support/authorization/">Authorization</a></li>
<li id="menu-item-270860" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270860"><a href="http://cycling74.com/support/faq/">FAQ</a></li>
<li id="menu-item-270861" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270861"><a href="http://cycling74.com/max6-bug-form/">Report a Problem</a></li>
<li id="menu-item-270862" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-270862"><a href="http://cycling74.com/category/articles/">Articles</a></li>
<li id="menu-item-270863" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270863"><a href="/wiki/index.php?title=Max_Documentation_and_Resources">Documentation</a></li>
</ul>
</li>
<li id="menu-item-249714" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249714"><a href="http://cycling74.com/community/">Community</a>
<ul class="sub-menu">
<li id="menu-item-270878" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270878"><a href="/project/">Projects</a></li>
<li id="menu-item-270866" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270866"><a href="/toolbox/">Tools</a></li>
<li id="menu-item-279491" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-279491"><a href="/max-workspace/">Workspaces</a></li>
<li id="menu-item-270867" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270867"><a href="/wiki">Wiki</a></li>
<li id="menu-item-270868" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-270868"><a href="http://cycling74.com/category/articles/interview/">Interviews</a></li>
<li id="menu-item-270869" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270869"><a href="http://cycling74.com/videos/">Videos</a></li>
<li id="menu-item-270870" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270870"><a href="http://cycling74.com/wiki/index.php?title=Category:PeoplePlaces">Places to Learn Max</a></li>
</ul>
</li>
<li id="menu-item-249717" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-249717"><a href="/forums/">Forums</a></li>
<li id="menu-item-000" class="menu-item"><a href="#"><i class="icon-user"></i> Account</a><ul class="sub-menu" id="menu-item-000" style="display: none;"><li class="menu-item"><a href="http://cycling74.com/wp-login.php?redirect_to=%2Fthanks-for-downloading-max%2F%3Ffilepivot_alias%3Dmac-epii4">Log in</a></li><li class="menu-item"><a href="http://cycling74.com/wp-login.php?action=register">Create An Account</a></li><li class="menu-item"><a href="#why_register_box" data-toggle="modal" onClick="_gaq.push(['_trackEvent', 'User Status', 'Clicked Why Create An Account? Link', '/thanks-for-downloading-max/?filepivot_alias=mac-epii4']);">Why Create An Account?</a></li></ul></li></ul></div>
</div><!-- header-nav -->
</div>
</div>
<div id="header-nav-wrapper-sticky" class="hidden-phone" style="display:none;">
<div id="header-nav-inner-sticky" class="container">
<div id="header-nav-sticky">
<div class="menu-header-no-dropdown-container"><ul id="menu-header-no-dropdown-1" class="row menu span12"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249712"><a href="http://cycling74.com/products/">Products</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270853"><a href="http://cycling74.com/products/max/">Max – <span class="description">visual programming</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270875"><a href="http://cycling74.com/products/gen/">Gen – <span class="description">code generation</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270851"><a href="http://cycling74.com/products/maxforlive/">Max for Live – <span class="description">extend Ableton Live</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270854"><a href="http://cycling74.com/products/mira/">Mira – <span class="description">iPad Max controller</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270852"><a href="http://cycling74.com/products/m/">M – <span class="description">composition system</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270856"><a href="http://cycling74.com/products/cycles/">Cycles – <span class="description">sample collections</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270857"><a href="http://cycling74.com/products/cyclops/">Cyclops – <span class="description">tracking in Max</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270855"><a href="http://cycling74.com/products/c74music/">C74 Music Label – <span class="description">our collection</span></a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270874"><a href="http://cycling74.com/products/soundflower/">Soundflower – <span class="description">OS X utility</span></a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249716"><a href="http://cycling74.com/shop/">Shop</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249713"><a href="http://cycling74.com/downloads/">Downloads</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249715"><a href="http://cycling74.com/support/">Support</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-270858"><a href="http://cycling74.com/category/articles/tutorials/">Tutorials</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270859"><a href="http://cycling74.com/support/authorization/">Authorization</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270860"><a href="http://cycling74.com/support/faq/">FAQ</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270861"><a href="http://cycling74.com/max6-bug-form/">Report a Problem</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-270862"><a href="http://cycling74.com/category/articles/">Articles</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270863"><a href="/wiki/index.php?title=Max_Documentation_and_Resources">Documentation</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-249714"><a href="http://cycling74.com/community/">Community</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270878"><a href="/project/">Projects</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270866"><a href="/toolbox/">Tools</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-279491"><a href="/max-workspace/">Workspaces</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270867"><a href="/wiki">Wiki</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-270868"><a href="http://cycling74.com/category/articles/interview/">Interviews</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270869"><a href="http://cycling74.com/videos/">Videos</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-270870"><a href="http://cycling74.com/wiki/index.php?title=Category:PeoplePlaces">Places to Learn Max</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-249717"><a href="/forums/">Forums</a></li>
<li id="menu-item-000" class="menu-item"><a href="#"><i class="icon-user"></i> Account</a><ul class="sub-menu" id="menu-item-000" style="display: none;"><li class="menu-item"><a href="http://cycling74.com/wp-login.php?redirect_to=%2Fthanks-for-downloading-max%2F%3Ffilepivot_alias%3Dmac-epii4">Log in</a></li><li class="menu-item"><a href="http://cycling74.com/wp-login.php?action=register">Create An Account</a></li><li class="menu-item"><a href="#why_register_box" data-toggle="modal" onClick="_gaq.push(['_trackEvent', 'User Status', 'Clicked Why Create An Account? Link', '/thanks-for-downloading-max/?filepivot_alias=mac-epii4']);">Why Create An Account?</a></li></ul></li></ul></div>
<div id="search-sticky" class="hidden-phone span3">
<!--<div id="cse-search-form-sticky" style="width: 100%;">Loading</div>
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load('search', '1', {language : 'en', style : google.loader.themes.MINIMALIST});
function googleSearchCallback() {
var customSearchOptions = {}; var customSearchControl = new google.search.CustomSearchControl(
'013850683032301720298:rdjozxlucte', customSearchOptions);
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
var options = new google.search.DrawOptions();
options.enableSearchboxOnly("http://cycling74.com/search-results/");
customSearchControl.draw('cse-search-form', options);
customSearchControl.draw('cse-search-form-sticky', options);
};
google.setOnLoadCallback(googleSearchCallback, true);
</script>-->
</div><!-- search -->
</div><!-- header-nav -->
</div>
</div>
<script type="text/javascript">
jQuery(document).ready(function() {
$('.sub-menu').each(function() {
// add an ID to the parent li
var menuID = $(this).parent().attr('id');
$(this).attr('id', menuID);
});
$('#menu-header-no-dropdown .menu-item a').each(function() {
$(this).on('mouseenter', function(e) {
$('.sub-menu').removeClass('current');
$('.sub-menu').hide();
// get the ID of the matching sub-menu and show it
var subMenu = $(this).parent().attr('id');
$('#'+subMenu+'.sub-menu').addClass('current');
$('#'+subMenu+'.sub-menu').slideDown();
// add/remove 'current' class
$('#header-nav a').parent().removeClass('current');
$(this).parent().addClass('current');
});
});
$('#menu-header-no-dropdown').mouseleave( function() {
$('.sub-menu').hide();
});
$('.sub-menu').mouseleave( function() {
$('#header-nav a').parent().removeClass('current');
$('.sub-menu').hide();
});
$('.sub-menu').mouseenter( function() {
$('#header-nav a').parent().removeClass('current');
$('.sub-menu .menu-item a').unbind('mouseenter');
});
});
</script>
<div id="mobile-nav" class="visible-phone">
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<i class="icon-chevron-down"></i>
</a>
<a class="brand" href="http://cycling74.com/"><img src="http://cycling74.com/wp-content/themes/cycling74-2012/img/c74-icon-fff.png" alt="C74 Logo" width="50px"></a>
<!-- Everything you want hidden at 940px or less, place within here -->
<div class="nav-collapse collapse">
<ul id="menu-header-mobile" class="nav"><li id="menu-item-250516" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-250516"><a href="http://cycling74.com/products/">Products</a></li>
<li id="menu-item-250518" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-250518"><a href="http://cycling74.com/support/">Support</a></li>
<li id="menu-item-250517" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-250517"><a href="http://cycling74.com/community/">Community</a></li>
<li id="menu-item-250519" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-250519"><a href="/forums/">Forums</a></li>
<li class="nav"><a href="http://cycling74.com/wp-login.php">Log In</a></li></ul> </div>
</div>
</div>
</div>
</div><!-- mobile-nav -->
<div id="top-container" class="container">
<div id="content-container" class="row-fluid">
<!-- <script type="text/javascript" charset="utf-8" src="http://cycling74.com/wp-content/themes/cycling74-2012/js/browser-detect.js"></script> -->
<style type="text/css">
#user-nav,
#mainnav,
#mobilenav,
.footer {
display: none;
}
</style>
<div id="main">
<div id="content" class="max-post-download row-fluid">
<div id="post-download-thanks" class="span12">
<p>Thank you for downloading Max 6.1. Your download should start at any moment. <br />If your download does not begin in five seconds, you can download Max manually: <br /><a href="http://filepivot.com/projects/maxmspjitter/files/mac-epii4">Macintosh</a>, <a href="http://filepivot.com/projects/maxmspjitter/files/win-32-epii4"> Windows 32bit</a>, or <a href="http://filepivot.com/projects/maxmspjitter/files/win-64-epii4"> Windows 64bit</a>.
</p>
</div><!-- post-download-thanks -->
<h1 id="post-download-title">Can we help you get started?</h1>
<div class="row-fluid">
<div id="post-download-video-embed" class="span12">
<iframe width="500" height="300" src="http://www.youtube.com/embed/cSatrZW4XLI" frameborder="0" allowfullscreen></iframe>
</div>
<div id="post-download-options" class="span9">
<ul>
<li><a href="/category/articles/tutorials/" title="Watch videos and get patches.">
<img class="icon" src="/wp-content/themes/cycling74-2012/img/icons-tutorials.png"></a><br />
<a class="button" href="/category/articles/tutorials/">Tutorials</a></li>
<li><a href="/videos/" title="Take a video tour of Max, including artist interviews and feature projects that utilize our software.">
<img class="icon" src="/wp-content/themes/cycling74-2012/img/icons-video.png"></a><br />
<a class="button" href="/videos/">Max User Videos</a></li>
<li><a href="http://cycling74.s3.amazonaws.com/support/version_6_1_6.html" title="Read through all the bug fixes and new features in this version of Max.">
<img class="icon bug" src="/wp-content/themes/cycling74-2012/img/icons-fixes.png"></a><br />
<a class="button" href="http://cycling74.s3.amazonaws.com/support/version_6_1_6.html">Bug fixes & new features</a></li>
</ul>
<ul>
<li>
<a href="/shop/" title="Purchase your copy of Max.">
<img class="icon" src="/wp-content/themes/cycling74-2012/img/icons-max6.png"></a><br />
<a class="button" href="/shop/">Purchase Max 6</a></li>
<li><a href="/wiki/" title="Find out more about objects, features, and techniques, as well as proper configuration and setup.">
<img class="icon" src="/wp-content/themes/cycling74-2012/img/icons-wiki.png"></a><br />
<a class="button" href="/wiki/">Max Wiki</a></li>
<li><a href="/support/faq_max6/" title="Browse frequently asked questions about Max—such as system requirements and compatibility issues.">
<img class="icon" src="/wp-content/themes/cycling74-2012/img/icons-faq.png"></a><br />
<a class="button" href="/support/faq_max6/">FAQ: Max 6</a></li>
</ul>
</div><!-- post-download-options -->
<div id="newsletter" class="span3">
<!-- Begin MailChimp Signup Form -->
<link href="http://cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css">
<style type="text/css">
#mc_embed_signup{background:#fff; clear:left; font:14px; }
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
</style>
<div id="mc_embed_signup">
<form action="http://cycling74.us5.list-manage.com/subscribe/post?u=7f0831ae7b10cc1d53c88215e&id=6c9cf10ad2" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<h4>Not a customer yet?<br />
Keep in touch with our bimonthly newsletter.</h4>
<div class="mc-field-group">
<label for="mce-EMAIL">Email Address <span class="asterisk">*</span>
</label>
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</div>
<div class="mc-field-group input-group">
<strong>Email Format </strong>
<ul><li><input type="radio" value="html" name="EMAILTYPE" id="mce-EMAILTYPE-0"><label for="mce-EMAILTYPE-0">html</label></li>
<li><input type="radio" value="text" name="EMAILTYPE" id="mce-EMAILTYPE-1"><label for="mce-EMAILTYPE-1">text</label></li>
<li><input type="radio" value="mobile" name="EMAILTYPE" id="mce-EMAILTYPE-2"><label for="mce-EMAILTYPE-2">mobile</label></li>
</ul>
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
</form>
</div>
<!--End mc_embed_signup-->
</div>
</div><!-- row-fluid -->
</div><!-- content -->
</div><!-- main -->
</div><!-- content-container -->
</div><!-- container -->
</div>
<!-- <div class="footer-illo"></div> -->
<div id="footer-wrapper" class="row-fluid">
<div class="container">
<!--
<div id="infobar" class="row-fluid">
<!~~ <div class="span5 subinfo">
<label>ABOUT THE COMPANY</label>
<div class="row-fluid">
<div class="span4">
<img src="/wp-content/themes/cycling74-2012/img/footer/logo-seat-1999.png" width="100%">
</div>
<div class="span8">
Input text here
</div>
</div>
</div> ~~>
<!~~
<div class="span8 subinfo">
<label>Sometimes it just needs to be said</label>
<div class="row-fluid">
<div class="span3">
<img alt='' src='http://1.gravatar.com/avatar/feb60889fa4752fff7437f9599fb2426?s=60&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D60&r=G' class='avatar avatar-60 photo' height='60' width='60' /> </div>
<div class="span8">
"I will add drawing a 74 in cappuccino foam to my to-do list." <br />- David Z.<br /><a href="/company/people/">Meet more people <i class="icon-double-angle-right"></i></a>
</div>
</div><!~~ row-fluid ~~>
</div>
~~>
<!~~
<div class="span4 subinfo">
<!~~ Begin MailChimp Signup Form ~~>
<div id="mc_embed_signup">
<form action="http://cycling74.us5.list-manage1.com/subscribe/post?u=7f0831ae7b10cc1d53c88215e&id=6c9cf10ad2" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<label for="mce-EMAIL">Subscribe to our newsletter</label>
Let us tell you about notable Max projects, obscure facts, and creative media artists of all kinds.<br /><br />
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="green-button-cta button"></div>
</form>
</div>
<!~~ End mc_embed_signup ~~>
</div>
~~>
</div>
-->
<ul id="footernav" class="row-fluid">
<!--End mc_embed_signup-->
<!--</li> -->
<li class="footernav span2">
<ul id="menu-footer-products" class="menu"><li id="menu-item-10612" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10612"><a href="http://cycling74.com/products/">Products</a></li>
<li id="menu-item-10613" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10613"><a href="http://cycling74.com/products/max/">Max</a></li>
<li id="menu-item-14142" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-14142"><a href="http://cycling74.com/products/gen/">Gen</a></li>
<li id="menu-item-10614" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10614"><a href="http://cycling74.com/products/maxforlive/">Max For Live</a></li>
<li id="menu-item-10615" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10615"><a href="http://cycling74.com/products/soundflower/">Soundflower</a></li>
<li id="menu-item-10616" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10616"><a href="http://cycling74.com/products/cyclops/">Cyclops</a></li>
<li id="menu-item-10617" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10617"><a href="http://cycling74.com/products/m/">M</a></li>
<li id="menu-item-10618" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10618"><a href="http://cycling74.com/products/c74music/">C74 Music Label</a></li>
</ul> </li>
<li class="footernav span2">
<ul id="menu-footer-download" class="menu"><li id="menu-item-10606" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10606"><a href="http://cycling74.com/downloads/">Downloads</a></li>
<li id="menu-item-251542" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-251542"><a href="http://cycling74.com/downloads/">Max</a></li>
<li id="menu-item-10609" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10609"><a href="http://cycling74.com/products/soundflower/">Soundflower</a></li>
<li id="menu-item-10610" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10610"><a href="http://cycling74.com/downloads/">M</a></li>
<li id="menu-item-10611" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10611"><a href="http://cycling74.com/downloads/discontinued/">Discontinued Products</a></li>
</ul> </li>
<li class="footernav span2">
<ul id="menu-footer-community" class="menu"><li id="menu-item-10593" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10593"><a href="http://cycling74.com/community/">Users</a></li>
<li id="menu-item-10594" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10594"><a href="/forums">Forums</a></li>
<li id="menu-item-10595" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10595"><a href="/project">Projects</a></li>
<li id="menu-item-10596" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10596"><a href="/toolbox">Toolbox</a></li>
<li id="menu-item-21948" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21948"><a href="http://cycling74.com/wiki/">Max Wiki</a></li>
<li id="menu-item-10597" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-10597"><a href="http://cycling74.com/category/articles/interview/">Interviews</a></li>
<li id="menu-item-10598" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-10598"><a href="http://cycling74.com/category/articles/">Articles</a></li>
<li id="menu-item-21886" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21886"><a href="http://cycling74.com/wiki/index.php?title=Category:PeoplePlaces">Schools That Teach Max</a></li>
</ul> </li>
<li class="footernav span2">
<ul id="menu-footer-support" class="menu"><li id="menu-item-10620" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10620"><a href="http://cycling74.com/support/">Support</a></li>
<li id="menu-item-11006" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11006"><a href="/forums/">Forums</a></li>
<li id="menu-item-10621" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10621"><a href="http://cycling74.com/support/authorization/">Authorization</a></li>
<li id="menu-item-10622" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10622"><a href="http://cycling74.com/support/faq/">FAQ</a></li>
<li id="menu-item-10623" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-10623"><a href="http://cycling74.com/category/articles/did-you-know/">Did You Know?</a></li>
<li id="menu-item-10624" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-10624"><a href="http://cycling74.com/category/articles/tutorials/">Tutorials</a></li>
<li id="menu-item-21860" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21860"><a href="http://cycling74.com/wiki/index.php?title=Max_Documentation_and_Resources">Documentation & Books</a></li>
</ul> </li>
<li class="footernav span2">
<ul id="menu-footer-contact" class="menu"><li id="menu-item-10600" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10600"><a href="http://cycling74.com/company/">Company</a></li>
<li id="menu-item-10601" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10601"><a href="/company/">About Us & Contact</a></li>
<li id="menu-item-20890" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20890"><a href="http://cycling74.com/company/newsletter/">Newsletter</a></li>
<li id="menu-item-10602" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-10602"><a href="http://cycling74.com/category/company/press-releases/">Press Releases</a></li>
<li id="menu-item-10603" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10603"><a href="http://facebook.com/cycling74">Facebook</a></li>
<li id="menu-item-10604" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10604"><a href="http://twitter.com/cycling74">Twitter</a></li>
<li id="menu-item-15630" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15630"><a href="http://www.youtube.com/user/cycling74com">YouTube Channel</a></li>
<li id="menu-item-252291" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-252291"><a href="https://plus.google.com/100536393816379595897">Google+</a></li>
</ul> </li>
<li class="footernav span2">
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form action="http://cycling74.us5.list-manage1.com/subscribe/post?u=7f0831ae7b10cc1d53c88215e&id=6c9cf10ad2" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<label for="mce-EMAIL">Subscribe to our newsletter</label>
Let us tell you about notable Max projects, obscure facts, and creative media artists of all kinds.<br /><br />
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required style="width: 80%">
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="green-button-cta button"></div>
</form>
</div>
<!-- End mc_embed_signup -->
</li>
</ul>
<p><a href="/feed"><i class="icon-rss"></i> C74 RSS Feed</a> | © Copyright Cycling '74</p>
</div><!-- footer -->
<script type='text/javascript' src='http://cycling74.com/wp-content/plugins/gd-bbpress-attachments/js/gd-bbpress-attachments.js?ver=1.9.2_b1285_free'></script>
<script type="text/javascript">
var _sf_async_config={uid:9105,domain:"cycling74.com"};
(function(){
function loadChartbeat() {
window._sf_endpt=(new Date()).getTime();