Wednesday, August 31, 2005
[BB] Warning - Archive your courses, please
[BB] My Current Courses update
Monday, August 29, 2005
[BB] Strange behavior from Blackboard
Friday, August 26, 2005
[BB] Web encryption turned off
[BB] Oops - I seem to have disabled login
[BB] Chat tool and virtual classroom
Wednesday, August 24, 2005
[BB] NEW: Performance Dashboard - shows last login
Tuesday, August 23, 2005
[BB] Update completed
[BB] Update still pending
[BB] Overnight update was not performed.
[BB] Service requests
Monday, August 22, 2005
[BB] Service Pack 1 installed - adaptive release
Friday, August 19, 2005
[BB] Unavailable courses don't show up
[BB] New Tools box
Wednesday, August 17, 2005
[BB] Erratic performance from Blackboard?
[BB] Student lists and pictures
Monday, August 15, 2005
[BB] Special Characters
Saturday, August 13, 2005
[BB] SSL security enabled
[BB] Character problem resolved
Wednesday, August 10, 2005
[BB] Upgrade issues
Tuesday, August 09, 2005
[BB] Upgrade completed
[BB] Upgrade today - status report
[BB] Upgrade today
[BB] Blackboard Hands-on Training
Getting Started with Blackboard | |||||||
Introduction to the Blackboard course web site system for instructors that have never used the system before. | |||||||
| |||||||
Using SafeAssignment in Bb | |||||||
The SafeAssignment system checks student writing for originality. This hands-on training shows an instructor how to create a SafeAssignment and use the report that it generates. | |||||||
| |||||||
New Features in Blackboard 6.3 | |||||||
UM has upgraded from Bb 6.1 to Bb 6.3. This hands-on training will show instructors how to use a number of the new features that have been added. Participants should have either taught with Blackboard before or have taken the "Getting Started with Blackboard" training prior to this session. | |||||||
|
Monday, August 08, 2005
[BB] New Bb landing page
Friday, August 05, 2005
[BB] Online Forms for service requests
Wednesday, August 03, 2005
[BB] New features
- Assessment and Survey Results Download (http://www.blackboard.com/viewlets/assessmentsurvey.swf)
- Adaptive Release (http://www.blackboard.com/viewlets/adaptiverelease.swf)
- Randomize Multiple Choice Answers (http://www.blackboard.com/viewlets/Assessment_Enhancements.swf)
- Performance Dashboard (http://www.blackboard.com/viewlets/performance_dashboard.swf)
- What's New Module (http://www.blackboard.com/viewlets/WhatsNewModule.swf)
- Gradebook Null Option (this feature allows averages to accurately ignore items that have not been completed yet - http://www.blackboard.com/viewlets/GradebookNullOption.swf)
[BB] Blackboard will be down Tuesday
Tuesday, August 02, 2005
FW: [BLKBRD-L] prevent test printing in app pack 3
I have not promoted this at UM but I probably should. The code listed
below is supposed to go into one of the test items, I believe.
Bill Vilberg
305-284-3949 (work); 786-218-3052 (cell); 305-255-9138 (home)
-----Original Message-----
From: blkbrd-l - A list for Blackboard course administrators and faculty
[mailto:BLKBRD-L@asu.edu] On Behalf Of Brusca, Frank X
Sent: Monday, August 01, 2005 2:22 PM
To: BLKBRD-L@asu.edu
Subject: Re: [BLKBRD-L] prevent test printing in app pack 3
We've been using this code in exam instructions. It prevents printing
and copying (but not saving).
Frank Brusca
Instructional Technologist
Department of Information Technology
Roush Hall 015B
Otterbein College
Westerville, OH 43081
(614) 823-1875
(614) 823-1335 FAX
fbrusca@otterbein.edu
Basic Release 6.3.1.374/Win 2003/MS SQL 2000 SP2
<STYLE type=text/css>@media print {BODY
{display:none}!important}</STYLE>
<SCRIPT type=text/javascript>
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false") else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</SCRIPT>