Upload in progress screen like subsilver2
Posted: 23 Jul 2010, 10:58
Adds the pop up upload in process screen like on subsilver2, upload progress bar is like windows vista style.
Download this progress.zip folder extract and copy the files with in to your forums root styles/prosilver/*.*
Open styles prosilver/template/posting_editor.html
find:
add after:
Open styles prosilver/template/posting_attatch_body.html
find:
replace with:
Refresh template for prosilver.
pic:
Download this progress.zip folder extract and copy the files with in to your forums root styles/prosilver/*.*
Open styles prosilver/template/posting_editor.html
find:
Code: Select all
<script type="text/javascript">
// <![CDATA[
onload_functions.push('apply_onkeypress_event()');
// ]]>
</script>
Code: Select all
<script type="text/javascript">
// <![CDATA[
/**
* Show upload progress bar
*/
function popup_progress_bar()
{
close_waitscreen = 0;
// no scrollbars
popup('{UA_PROGRESS_BAR}', 400, 200, '_upload');
}
// ]]>
</script>
<!-- IF S_CLOSE_PROGRESS_WINDOW -->
<script type="text/javascript">
// <![CDATA[
close_waitscreen = 1;
// ]]>
</script>
<!-- ENDIF -->
find:
Code: Select all
onclick="upload = true;" />
Code: Select all
onclick="popup_progress_bar();" />
pic: