Advertisement
Advertisement
| 04.08.2008 at 08:58AM PDT, ID: 23305141 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: |
Selection.setSharedFont = function(id) {
var text_field = eval(this.lastSelection[2]);
var begin = this.lastSelection[0];
var end = this.lastSelection[1];
var loaded_fmt = font_mng[id];
if (text_field) {
text_field.setTextFormat(begin, end, loaded_fmt);
text_field.setNewTextFormat(loaded_fmt);
var selected = true;
} else {
text_field = _root.example_txt;
text_field.setTextFormat(loaded_fmt);
text_field.setNewTextFormat(loaded_fmt);
var selected = false;
}
var selection_obj = this;
var interval = setInterval(function () {
clearInterval(interval);
if (selected) {
selection_obj.setFocus(text_field);
selection_obj.setSelection(begin, end);
}
}, 0);
};
|