JSFL: Round the x and y values of any selected objects


/ Published in: JavaScript
Save to your folder(s)

This code is pretty simple but massively useful. You can select any number of elements on the stage in Flash, then run this JSFL Command and it will round their x and y values to the nearest whole number. It's very handy when you want things to be on the whole pixel to prevent blurring or other wierdness.


Copy this code and paste it in your HTML
  1. var curr_doc = fl.getDocumentDOM();
  2.  
  3. for(i=0 ; i<curr_doc.selection.length ; i++ ) {
  4. curr_doc.selection[i].x = Math.round(curr_doc.selection[i].x);
  5. curr_doc.selection[i].y = Math.round(curr_doc.selection[i].y);
  6.  
  7. }

URL: http://www.cannedbanners.com

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.