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
#!/bin/bash | |
if [ "$1" = "?" ] | |
then | |
B1="\033[1m"; | |
B2="\033[0m"; | |
echo -e ""; | |
echo -e "${B1}AUTHOR${B2}"; | |
echo -e " Marcelo Miranda Carneiro - [email protected]"; | |
echo -e ""; |
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
on run | |
tell application "Finder" | |
set file_list to the selection as list | |
if length of file_list > 0 then | |
set full_list to "" | |
repeat with x in file_list | |
if length of full_list = 0 then | |
set full_list to (POSIX path of file (x as text)) | |
else | |
set full_list to full_list & return & (POSIX path of file (x as text)) |
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
# add the current file path into the sources paths | |
$: << __FILE__.gsub( /[^\/]*$/,"") |
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
package aze.motion.specials | |
{ | |
import aze.motion.EazeTween; | |
import aze.motion.specials.EazeSpecial; | |
import flash.geom.* | |
/** | |
* scrollRect as eaze property | |
* @author igor almeida ialmeida.com/ | |
* @usage |
NewerOlder