I actually had some luck with a very simple apple script.
As I mentioned above I had figured out how to use Alfred commands to have a hot key open the document in the application Pages.
I thought - If I print this manually all I'm doing is typing command-p and then when the print dialog box pops up typing enter, so what if a simple keystroke script would work - and it did! I Found this script online:
tell application "Pages"
activate
delay 0.2
tell application "System Events" to keystroke "p" using {command down}
tell application "System Events" to key code 36
end tell
Now I just need a command to quit the application. and I'm golden.
Thanks