Changeset 20
- Timestamp:
- 01/24/07 01:47:22 (2 years ago)
- Files:
-
- worldkit/com/brainoff/worldkitImages.as (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
worldkit/com/brainoff/worldkitImages.as
r19 r20 82 82 83 83 /* 84 swftemplate: a way to specify a tiling on a single level 85 this should be our base representation of images -- a single image is a special case of tiling 86 */ 87 var l=0; 88 for (var s in conf.swftemplate) { 89 imagemc.createEmptyMovieClip(s, layer + conf.swftemplate[s].layer); 90 if (conf.swftemplate[s].layer > l) { 91 l = conf.swftemplate[s].layer; //REVIST tangled interplay of config iterator, layer, etc 92 } 93 } 94 layer += l; 95 96 checkSwfTemplate(); 97 98 /* 84 99 swflayer can actually load in any type of image 85 100 with additional positioning parameters … … 93 108 } 94 109 95 /*96 swftemplate: a way to specify a tiling on a single level97 this should be our base representation of images -- a single image is a special case of tiling98 */99 var l=0;100 for (var s in conf.swftemplate) {101 imagemc.createEmptyMovieClip(s, layer + conf.swftemplate[s].layer);102 if (conf.swftemplate[s].layer > l) {103 l = conf.swftemplate[s].layer; //REVIST tangled interplay of config iterator, layer, etc104 }105 }106 layer += l;107 108 checkSwfTemplate();109 110 110 111 if (startLoading == 0) {
