How to access job parameters in PluginPreLoad script

Hi
I need to access some of the job options in a PluginPreLoad script. Whats the easiest way to do this?

Cheers
Bonsak

Hey Bonsak,

First you get the plugin, then you get the job, then you get the woman (youtube.com/watch?v=XJ7HZATMKBY):

Modified from: thinkboxsoftware.com/deadlin … ptingjobs/

[code] (copy & paste may break due to weird HTML spaces)
from System.IO import *
from Deadline.Scripting import *

def main( *args ):
deadlinePlugin = args[0]
job = deadlinePlugin.GetJob()
print(job.JobName)
[/code]

Haha! Thanks!

-b