Advertisement
Advertisement
| 05.13.2008 at 03:31AM PDT, ID: 23397195 |
|
[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: |
populateList = function () {
propertyList.removeAll();
var propertyXML:XML = new XML();
propertyXML.ignoreWhite = true;
propertyXML.load(_global.whichXML);
propertyXML.onLoad = function() {
var linkname:Array = this.firstChild.childNodes;
for (i=0; i<linkname.length; i++) {
mainMap.mapCont.develpment.onRollOver = function() {
trace(linkname[i].attributes.prjName);
};
}
};
};
populateList();
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.13.2008 at 04:24PM PDT, ID: 21560133 |
| 05.13.2008 at 04:29PM PDT, ID: 21560163 |
| 05.13.2008 at 09:28PM PDT, ID: 21561266 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
populateList = function () {
propertyList.removeAll();
var propertyXML:XML = new XML();
propertyXML.ignoreWhite = true;
propertyXML.load(_global.whichXML);
propertyXML.onLoad = function() {
var linkname:Array = this.firstChild.childNodes;
for (i=0; i<linkname.length; i++) {
mainMap.mapCont[linkname[i].attributes.prjRef].onRollOver = function() {
trace(linkname[i].attributes.prjName);
};
}
};
};
populateList();
|
| 05.14.2008 at 05:47AM PDT, ID: 21563484 |
| 05.14.2008 at 07:05AM PDT, ID: 21564329 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: |
activateMap = function (prjName, prjRef) {
mainMap.mapCont.prjName.onRollOver = function() {
trace(prjRef);
};
};
populateList = function () {
propertyList.removeAll();
var propertyXML:XML = new XML();
propertyXML.ignoreWhite = true;
propertyXML.load(list.xml);
propertyXML.onLoad = function() {
var linkname:Array = this.firstChild.childNodes;
for (i=0; i<linkname.length; i++) {
prjName = (linkname[i].attributes.prjName);
prjRef = (linkname[i].attributes.prjRef);
activateMap(prjName,prjRef);
}
};
};
populateList();
|
| 05.14.2008 at 07:45AM PDT, ID: 21564769 |
1: 2: 3: 4: 5: 6: 7: |
for (i=0; i<linkname.length; i++) {
currentMovie = mainMap.mapCont[linkname[i].attributes.prjRef];
currentMovie.myName = linkname[i].attributes.prjName;
currentMovie.onRollOver = function() {
trace(this.myName);
};
}
|
| 05.14.2008 at 09:01AM PDT, ID: 21565596 |
| 05.14.2008 at 07:15PM PDT, ID: 21570175 |
| 05.14.2008 at 09:50PM PDT, ID: 21570724 |