Advertisement
Advertisement
| 03.04.2008 at 07:30AM PST, ID: 23212873 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
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: |
-----------------------------------------------------------------------
Our MP3 Player SCRIPT code that needs to be parsed and executed, the SQL result sets are generated by the ASP script that is called by the AJAX events. (MP3 Player is a third party widget from dmxzone.com).
<SPAN ID="dv_flashMP3Player1"></SPAN>
<SCRIPT TYPE="TEXT/JAVASCRIPT">
var flashMP3Player1 = new dmxMP3Player("micro", "fl_flashMP3Player1", "125", "16");
flashMP3Player1.setScriptLibrary("/ScriptLibrary");
flashMP3Player1.addVariable("mp3s", "<%=(ap_doc__selected.Fields.Item("doc_url_image_2").Value)%>");
flashMP3Player1.addVariable("playerColor", "0x<%=(ap_bizamajig__meta_data__cache.Fields.Item("meta_data__ia_layout_public_article_accent_color__0x").Value)%>");
flashMP3Player1.addVariable("startPlaying", "true");
flashMP3Player1.addVariable("startVolume", "75");
flashMP3Player1.write("dv_flashMP3Player1");
</SCRIPT>
-----------------------------------------------------------------------
Our AJAX functions are here:
function processArticleCategoryReview(url,callback) {
if (window.XMLHttpRequest) {
req = new XMLHttpRequest();
} else if (window.ActiveXObject) {
req = new ActiveXObject("Microsoft.XMLHTTP");
}
try {
req.open("GET", url, true);
req.onreadystatechange = function() {
// only if req shows "loaded"
if (req.readyState == 4) {
// only if "OK"
if (req.status == 200) {
var temp = new Array();
temp.push(req.responseText);
callback.apply(callback,temp);
} else {
alert("There is a problem connecting to the internet: \n" + req.statusText);
}
}
};
req.send(null);
} catch(e) {
alert(e.message);
}
}
function setDocSectionArticleReview(url,id) {
var callback = function(result) {
document.getElementById(id).innerHTML = result;
}
processArticleCategoryReview(url, callback);
}
|