This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $tstart = microtime(true); | |
| set_time_limit(0); | |
| require 'config.core.php'; | |
| require MODX_CORE_PATH . 'model/modx/modx.class.php'; | |
| $modx = modX::getInstance(); | |
| $modx->initialize('mgr'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var docRef = app.activeDocument; | |
| var currentWidth = docRef.width; | |
| var currentHeight = docRef.height; | |
| var aspectRatio = currentWidth / currentHeight; | |
| var mycolor = new SolidColor(); | |
| mycolor.rgb.hexValue = "ffffff"; | |
| app.backgroundColor = mycolor; | |
| if (aspectRatio < 0.8) { |
OlderNewer