Vicky Stamatopoulou on 14. May 2012
When managing a project with Merlin you create your tasks and assign them to your resources. As your resources work on their task, you as a PM update your project by entering the actual values. That means, you enter the percentage of the completed work and the actual start date. If updating the tasks in absolute mode, you can enter the actual work or remaining work and duration.
Next time the resource works on the task, and reports its progress to update the data, you enter the new ‘% complete’ and if updating the tasks in absolute mode, the amount of actual work and remaining work so far.
Some users however would like to be able to pause the works on a task, to plan the remaining work sometime later on. This is also a good idea, if wanting to vary the utilization of a resource on a task in time. So to do so in Merlin, you would need to create two tasks. One for the first part of the works on the task, and a second for the remaining.
To quicken this procedure, we wrote an applescript sample which requires Merlin 2.8.4, and creates the two sub-activities based on the planned and actual values of the task in progress.
If interested, feel free to download, use or modify as you like. (more…)
Tags: Applescript, Completed, Merlin, Progress, Split
Vicky Stamatopoulou on 27. March 2012
When using Merlin to manage and plan your projects on Mac OS X you can enhance its functions by AppleScript. We have posted various AppleScript samples in this blog. Feel free to download, use but also modify any way you think appropriate.
Some notes on this:
…you will see it placed under: Your Mac > Your hard disk > Users > Your User Name > Library > Application Support > Merlin > SendToMenuTags: Applescript, Lion, Scripts Folder
Vicky Stamatopoulou on 3. February 2012
This is a small “how to” showing how to access elements in Merlin projects over Applescript.
If you want to access all elements of a currently opened Merlin project:
tell application "Merlin"
set proj to root project of document 1
set myElements to deep elements of proj
repeat with aObj in myElements
get aObj
end repeat
end tell
If you want to access elements of the currently selected activity rows:
tell application "Merlin"
set myselection to selected object of main window of document 1 as list
repeat with aObj in myselection
get element of aObj as list
--to iterate in them
repeat with anElement in element of aObj as list
display dialog title of aObj & ": " & title of anElement
end repeat
end repeat
end tell
![]()
elements of… asks for the elements attached on the object itself. While deep elements of… asks also for elements attached in sub objects as well.
Tags: Applescript, Elements