During Pivotal Development often we need to be able to track which version the users/testers are running against. Below is the sample client script code to show the version number. The version number itself stored as a global variable. Please note that you need to make the client script as global script.
1 Dim strVersion
2 Dim objNewCell
3
4 strVersion = “5.9.1.1″
5
6 Set objNewCell = _
7 UIMaster.documentMenu._
8 getElementsByTagName(“TABLE”)(0). _
9 insertRow(1).insertCell(0)
10
11 objNewCell.className = “FindTitleCell”
12 objNewCell.innerText = “BM Version: “ + strVersion
May 24, 2007 at 11:01 am
Very useful !
Is there a way I can do the same sort of thing for a WAM client?
May 24, 2007 at 2:58 pm
Good question. Let me think about it.