Free Tutorial: Basic Mixing In Pro Tools - A Beginners Guide :: of Pro Tools; you can start your project in almost any Lets get down to mixing! 1 of 6. Prev Next. Index: Mixing In Pro Tools - A Beginners Guide http://homerecording.about.com/od/mixingyourmusic/ss/mixinglesson.htmHOME | I do not want to be a negative-nelly, I love vB that is why I went with it for my new business venture, but I really had higher hopes for Project. I wanted to use it for very basic project assignment and tracking. It has done that to an extent, but due to the fact that it does not track reads, the other users of the forum are never aware of any changes, additions, or issues unless they go in and look.
I tried this for about a month and inevitably people stopped checking it and it became a dead area.
How hard is it to implement changing icons for read/unread projects and updates?
If it is not going to happen, then I will be more then happy to setup a standard forum for this task, but it does seem like a bit of a waste for 50 bucks. I mean doesn't everybody assume it will show read/unread?
Thanks.
For the issue poster to be automatically assigned notification on creation of issue:
Create a plugin for the hook "projectpost_addissue_complete"
$subscribe_selected = array(
'donot' => '',
'none' => '',
'instant' => ' selected="selected"',
'daily' => '',
'weekly' => ''
);
To hide certain types of issues:
Create a setting for a product (mine is called skypthack_hide_closed) and put in the issue ids you want to hide separated by comma's.
then plugin:
project_issuelist_query
if (strlen($vbulletin->options['skypthack_hide_closed']) > 0)
$hook_query_where .= "AND issue.issuestatusid NOT IN(".$vbulletin->options['skypthack_hide_closed'].")";
To sign up a certain group to be notified of all issues posted and changes, create another setting (mine is called skypthack_group_id) and enter in the ID of the group you want to be notified.
Hook: projectpost_postissue_complete
$project_group_id = $vbulletin->options['skypthack_group_id'];
$project_managers = $vbulletin->db->query("
SELECT userid,email
FROM " . TABLE_PREFIX . "user
WHERE FIND_IN_SET($project_group_id,membergroupids)");
$subject = "Project Tools - New Issue posted";
$message = "A new issue has been posted by ".$vbulletin->userinfo['username']." :nn";
$message .= $vbulletin->GPC['message']. " nn";
$message .= $vbulletin->options['bburl']."/project.php?issueid=$issue[issueid] nn";
while ($project_manager = $vbulletin->db->fetch_array($project_managers)) {
handle_issue_subscription_change($issue['issueid'], '', 'instant',$project_manager['userid']);
vbmail($project_manager[email],$subject,$message,true);
}
Thats a big cookie for me to eat.
I'll give that a shot in a day or so, thanks for the advice.
Challenging Books For A 14 Year Old?
First guitar : acoustic or electric?
|