Not being a coder, I decided to take a crack myself. I think I have found a make do hack, until it can be solved properly.
Edit your ‘autosave.js’ file which can be found in ‘WP-includes’>’JS’>’autosave.js’
There are some values on line 5-7:
jQuery(function($) {
autosaveLast = $('#post #title').val()+$('#post #content').val();
autosavePeriodical = $.schedule({time: autosaveL10n.autosaveInterval * 1000, func: function() { autosave(); }, repeat: true, protect: true});
All i did was take a guess and increase these values to some silly high number.
So far, after creating a post and manually saving it, the autosave has not kicked in. This giving me time to actually write a post etc.
Im not too sure what these values equate to in time wise, milliseconds etc, but it appears to work.
You could try removing the complete ‘autosave.js’ file and see what happens, I may try that later. Just back it up.
Hope that helps for the time being.
[sig moderated]