Customized dial script for conference bridge meeting ID

Hello, first time poster, here.
I have the 8830 and want to peform the following actions:
open an apointment which contains a meeting ID for a conference call (when you dial into a bridge)
have an option with the 'blackberry' button to 'copy' that value
(similar to current built-in function to call a number (two 'bb' button pushes), but instead to autoselect on the word boundary and 'copy')
Then select the conference bridge dial-in number and, prior to dialing, insert a pause at the end of the phone number, then tack that ID number onto the end
Then dial the full number, including the ID value after the pause (allowing the autoattendant to answer), which will then feed it the ID and press pound
Is there a way to script this in the BB OS environment?  Any info on tools to access these capabilities?
I'm a technical guy but new to the BB OS.
Thanks in advance.
Eric

In the Outlook invitation type the bridge numbers in this format.  Use no more than 2 dashes in the bridge phone number.  Skip one space.  Type an x, the PIN and the # sign.  The participants can sign on now with one BB click.  The meeting organizer will still have to manually key in the start code, but can still one click the bridge to that point.
EXAMPLE:  +1555-222-3456 x123456#

Similar Messages

  • Custom calculation script for checkboxs

    Hello,
    Can anyone help me out with custom calculation script for this?  I have two mutually exclusive checkboxes that, when checked, I want to populate data into other text fields.
    If Checkbox1 is checked:
    Company1=Warehouse Alpha
    Address1=1234 Any Street
    City/State/Zip1= Los Angeles, CA 90020
    Contact Name1= Mr. Nice Guy
    Phone Number1= 213-854-8565
    Email1=[email protected]
    If Checkbox2 is checked:
    Company2=Warehouse Beta
    Address2= 5678 Awesome Blvd.
    City/State/Zip2= San Bernardino, CA 96545
    Contact Name2= Mr. Handsome
    Phone Number2= 909-824-8265
    Email2=[email protected]
    Thanks,
    Bryan

    So one has two check boxes and one wants them to be mutually exclusive. Name them the same and change the export value of the field. Try it and observe what happens as you check the different check boxes.
    You have described what happens if either box is checked but what happens when a checked box Is unckecked?
    One can place scripts in many locations. I would use a mouse up action for both the check boxes, use the same script for both check boxes.
    I would assume you are using the following names for the fields to populate:
    Company
    Address
    CityStateZip
    ContactName
    PhoneNumber
    Email
    // Mouse up action for both check boxes;
    // initial value for the fields:
    this.getField("Company"),value = "";
    this.getField("CityStateZip"),value = "";
    this.getField("ContactName"),value = "";
    this.getField("PhoneNumber"),value = "";
    this.getField("Email"),value = "";
    // test for check box value for selected box;
    if(event.value == 1) {
    this.getField("Company"),value = "Warehouse Alpha";
    this.getField("CityStateZip"),value = "1234 Any Street";
    this.getField("ContactName"),value = "Los Angeles, CA 90020";
    this.getField("PhoneNumber"),value = "213-854-8565";
    this.getField("Email"),value = "[email protected]";
    if(event.value == 2) {
    this.getField("Company"),value = "Warehouse Beta";
    this.getField("CityStateZip"),value = "5678 Awesome Blvd.";
    this.getField("ContactName"),value = "San Bernardino, CA 96545";
    this.getField("PhoneNumber"),value = "Mr. Handsome";
    this.getField("Email"),value = "[email protected]";
    // end Mouse up action for both check boxes;

  • Custom Calculation Script for building in a percentage increase

    Hello all,
       Looking for a custom calculation script that will apply a percentage increase to a default value when the value of another cell goes above certain numbers. Crude example below.
    Y is the cell that the script will be applied to.
    if value of cell X > 10 then value of cell Y = default value * .10 ..... for 10%
    if value of cell X > 20 then value of cell Y = default value * .20...... for 20%
    if value of cell X > 30 then value of cell Y = default value * .30....... for 30%
    Pleaes forgive me. I know my example above is not in true Java form because I really do not know Java that well. Thanks for any help that you all may provide!

    I've inserted the picture above to help. This is a sizing form for pants for a fire department that will be filled out at the department by the firefighter. The manufacturer that makes the pants passes along a 10% upcharge for anyone with a waist 44-50, a 20% upcharge for anyone with a waist 52-54, and a 30% upcharge for anyone with a waist 56-58. The $42.95 in the "Price" cell is the default price for anyone with a waist that does not meet up-charging penalties (Less than a 44 waist). What I am trying to do is if the firefighter plugs in let's say a waist of 50" the "price' cell will update to show an increase of 10%. ($47.24). If he plugs in a waist of 52" the "price" cell will update to show an increase of 20% ($51.54). If he plugs in a waist of 56" the "price" cell will update to show an increase of 30% ($55.83). I hope that makes sense. I know it can be frustrating helping someone that may not know all the ins and outs like a lot of you do so I greatly appreciate your patience and your help!

  • Custom calculation script for a lease (please help)

    I have so little experience with this it isn't funny.  I prior to now have never used javascript.  But Im trying to get my lease form to auto calculate a tenants pro-rate that would be due if they moved in on the middle of the month for example.
    I created the below script and im sure there is a few things or more than a few things wrong with it...can anyone give me some pointers.
    // Custom Calculate script
    (function () {
        // Get the input field values, as strings
        var leasemonth = getField("LeaseBegMonth").valueAsString;
        var leasestartday = getField("LeaseBegDay").valueAsString;   
        var rentamount = getField("MonthlyRent").valueAsString;
        // calculate how many days in the month
        if ( leasemonth=1
                var leasedays = 31
        elseif (leasemonth=2
                var leasedays = 28
        elseif (leasemonth=3
                var leasedays = 31
        elseif (leasemonth=4
                var leasedays = 30
        elseif (leasemonth=5
                var leasedays = 31
        elseif (leasemonth=6
                var leasedays = 30
        elseif (leasemonth=6
                var leasedays = 30
        elseif (leasemonth=7
                var leasedays = 31
        elseif (leasemonth=8
                var leasedays = 31
        elseif (leasemonth=9
                var leasedays = 30
        elseif (leasemonth=10
                var leasedays = 31
        elseif (leasemonth=11
                var leasedays = 30
        elseif (leasemonth=12
                var leasedays = 31
        //CALCULATE HOW MANY DAYS REMAIN
        var daysremain = LeaseBegDay-leasedays   
        //CALCULATE THE PRORATE AND DISPLAY IT
        event.value = (rentamount/leasedays)* daysremain
    Thanks for your help!!

    Thank you thank you thank you!  Here is the revised script with the changes.  about to go plug it in and see if it works.
    // Custom Calculate script
    (function () {
        // Get the input field values
       var leasemonth = Number(this.getField("LeaseBegMonth").valueAsString);
       var leasestartday = Number(this.getField("LeaseBegDay").valueAsString);   
       var rentamount = Number(this.getField("MonthlyRent").valueAsString);
       var leasedays = 0
        // calculate how many days in the month
    if ( leasemonth==1)
           leasedays = 31;
    else if (leasemonth==2)
           leasedays = 28;
    else if ( leasemonth==3)
           leasedays = 31;
    else if (leasemonth==4)
           leasedays = 30;
    else if ( leasemonth==5)
           leasedays = 31;
    else if (leasemonth==6)
           leasedays = 30;
    else if ( leasemonth==7)
           leasedays = 31;
    else if (leasemonth==8)
           leasedays = 31;
    else if ( leasemonth==9)
           leasedays = 30;
    else if (leasemonth==10)
           leasedays = 31;
    else if ( leasemonth==11)
           leasedays = 30;
    else if (leasemonth==12)
           leasedays = 31;
        //CALCULATE HOW MANY DAYS REMAIN
        var daysremain = leasestartday-leasedays   
        //CALCULATE THE PRORATE AND DISPLAY IT
        event.value = (rentamount/leasedays)* daysremain

  • Indesign Contact Sheet script for Adobe Bridge 1.0.4.6

    Our company currently has all the Adobe CS2 products but as stand alone applications and not part of the Creative Suite. Therefore, we don't seem to have all the functionality of the suite.
    In particular the script to create Contact Sheets from Indesign CS2 of items through the script in Adobe Bridge.
    Can anyone tell me if there is a way to add the functionality of the contact sheet script for Indesign to Bridge without having the Adobe Creative Suite? And Why?
    We are looking for something to replace an extension used by Quark to create contact sheets from Badia software. I am loath to upgrade this extension unless absolutely necessary. We receave thousands of photo's a week and output contact sheets for our editors to pick and choose which photos they want/like.
    Thanks in advance.
    Scott

    [email protected] wrote:
    > Larry
    > for us to process thousands of photos this way would take hours.
    Why? Are you talking CPU hours or staff-hours? Does your workflow require heavy
    user interaction or is something else the problem?
    -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • How to Enable Custom Java Scripts for forms in Planning 11.1.2.2

    I am working on Planning 11.1.2.2 right now.
    Planning admin guide says, there is no explicit requirement to enable java Script for planning forms.
    I set simple alert to see text "Hello World" in function validateForm() function in custom/validateData.js file - to see and test that alert when I save data for my selected application/form.
    Closed javascript file and workspace, and planning application web page. Since I have not to do anything new to enable this java script alert, I opened that form and saved data to see if I can see my alert.. I got no alert, except "data are saved".
    Has anything changed since last version? Am I missing something? Or, do I need to recycle services to get this alert?
    thanks in advance.

    Thanks guys, for your quick replies..!
    Not sure what I missed, but I still have a hard time finding my "Hello World" alert.
    What I did, is here.
    a. Cleared all cookies and temp files from IE.
    b. Updated validateData.js file from ear / war files using 7-zip program at given path from your link.
    c. Stopped EPM services
    d. Dropped tmp folder.
    e. Started EPM services and let system deploy ear file (with my java script code).
    All services are up. I can see EAR file deployed and java script file ValidateData.js has all my changes in new tmp folder now.
    I am able to open my application and form.
    But, my "Hello World" alert is still not appearing. Form is saved and saw message as usual.
    One exception I noticed in my path. I have ....user_projects\domains\EPMSystem\servers\EPMServer0\.... in place of ....user_projects\domains\EPMSystem\servers\Planning_0\.... in my path. Planning_0 is replaced by EPMServer0 in this version. Rest is all same.
    Any clue? thanks in advance,

  • Custom Calculation Script for invoice

    This is very simple therefore very frustrating that it's not working!
    1. I have a "subtotal" field which is the sum of 6 field. That works fine.
    2. I have a first "gst" tax of 5% field coded as:
    var f = this.getField(“subtotal”);
    event.value = f.value * 0.05;
    There's no error, but it doesn't work. The value in that field remains 0.
    3. I also have a second "qst" tax 7.5% that is more complex.
    The 7.5% is on the sum of the "subtotal" and the "gst", coded as:
    var f = this.getField(“subtotal”) + this.getField(“tps”);
    event.value = f.value * 0.075; 
    (Now I'm not sure about that one) I didn't get a error warning but it doesn't work either.
    The value in that field remains 0.
    What seems to wrong in both taxes?

    Now the problem seems to be the second tax (qst 7.5%)
    What it does, it calculates 7.5% of only the subtotal instead of the sum of the subtotal and the gst (first tax).
    And the all the field are at zero, the qst field does not reset itself. Exemple: when all the field shows $0.00 it shows $0.11
    and for some reason it adds up.
    Here is the script you sent me:
    var total = this.getField("subtotal").value + this.getField("tps").value;
    event.value = total * 0.075;

  • Custom Calculation Script for percentages

    Hi everyone,
    can someone help me, I am trying to write a script, but I face some unsatisfactory results
    I upload the form so you can have a look at it:
    http://cjoint.com/?BGrwV2Sq5d2
    he re is the scenario:
    so after selecting the different module code
    the fields: Excellent, Good, Satisfactory and Unsatisfactory have different values (they have a script)
    eg. if Y1H3 is selected, excellent will be at 33.33 % etc...
    but then I would like that when the Grade is selcted (Grade 1, Grade 2 ....) the fields ( MarksRow1, MarksRow2 ...) take the correspondant value of the fields: Excellent, Good, Satisfactory and Unsatisfactory
    I've tried to write for each of the field MarksRow1, MarksRow1 etc...  the following script this but it doesn't work
    (function () {
        var z = getField("Grade 1").value;
    if (z === 0) {
            event.value = "";
    if (z === 3) {
            event.value = getField("Excellent").value;
    if (z === 4) {
            event.value = getField("Good").value;
    if (z === 5) {
            event.value = getField("Satisfactory").value;
    if (z === 6) {
            event.value = getField("Unsatisfactory").value;
    I would like after that to work out the total in the MarksTotal field by adding the value of ( MarksRow1, MarksRow2 ...)
    can you help me please?
    thanks

    hi George,
    thank you for your interest
    I've just realised that I was complety wrong in the differents tests,  there is no 5 and 6 but only 0,1,2,3 and 4
    and now it's working, thanks
    yes for the total, basically after selecting the different grade, it will display a percentage on the marks column fields ( "MarksRow1"- "MarksRow11" )
    I would like to add this percentages and display the total in the MarksTotale field
    also I would like to leave this field (MarksTotal) empty if nothing has been selected
    I've tried to to do this, but there is a zero when nothing has been selected and it doesn't display the % sign next the total
    here is the form: http://cjoint.com/?BGstXulF9PX

  • Custom Calculation Script for If, If Else

    I have a field named Freq01 where three values can be input; 1, 2, or 3 or it can be left blank. I have another field, Cost01, where I want one of three values to appear, depending upon what number is input in Freq01. Seemed to be a simple enough function!!! I'm using an old version of Acrobat Pro, 6.0.2, Mac OS X, 10.3.9.
    In Excel the function input in cell D11 is:
    =IF((D11=1),3200,(IF(D11=2,3000,(IF(D11=3,2700,0)))))
    And I think the JavaScript code would be:
    I've been trying to figure out how to write it in this AcroJS and I can't get it!!!
    I've tried various combinations of the following, having == instead of = , this.getField("Freq01").value instead of Freq01.value , event.value instead of FullPrice.value , having " " or not...
    if (Freq01.value = "1")
    FullPrice.value = "3200"
    else if
    (Freq01.value = "2")
    FullPrice.value = "3000"
    else if
    (Freq01.value = "3")
    FullPrice.value = "2700"
    Thanks!!!
    rd

    Thanks for the quick response.  I have managed to solve the problem myself. 
    There are 2 states with 12 products each.  Variable to each is selected by combo box.  Product list is fairly stable.  Prices may be updated quarterly.
    Not being a seasoned programmer I may have left a hole or two.  Here is the code with a partial product list. 
    // set variable for State
    var v0 = getField("ComboBox8").valueAsString;
    //set variable for product
    var v1 = getField("ComboBox6").valueAsString;
    if (v0=="GA") {
    // Set up a "Charges" object to associate field value with Charge
    var charge = {
        "Bi-W $150": 15.22,
        "Bi-W $250": 27.84,
        "Bi-W $300": 32.88
    Else
    // state <>”GA”
    var charge = {
        "Bi-W $150": 13.74,
        "Bi-W $250": 25.68,
        "Bi-W $300": 30.72
    // Set default value for this field
    var v2 = "";
    // Get charge from charges object and assign it to this field's value
    if (typeof charge[v1] != "undefined") {
        v2 = charge[v1];
    event.value = v2;

  • Dial In Conference Bridge

    Hello all. We have CCM 4.1(3)sr1 and Unity. We currently have a pub and a sub and have each configured as a software conference bridge for meetme's and adhoc's. Is it possible with this equipment to set up a permanent conference bridge that we can map and external DID that we can give to users to join a repeating weekly conference? If not, what is needed to make this happen, or can you direct me to the docs to find out? Thanks
    Brian

    Meetme number can be configured as its DID number itself (9725425900 for callers calling from outside. Telco sends 5900 to your PRI, 5900 is a meetme number)
    or
    you can create a Translation pattern which maps to a Meetme number. The Translation pattern could be a DID number. So your meet me number in this case will be a non-DID number say 5800. You create a translation pattern 5900 (which is a DID number) and translate that to 5800.
    The conference host should dial 5900 at the right time of the conference so that people calling in will be added to the bridge.
    HTH
    Sankar.
    PS: please remember to rate posts!

  • Preview custom text presets for AE via Bridge

    Hi there,
    Can I preview custom text presets for After Effects via Bridge?
    If so, can I control it somehow via scripting?
    Thanks in advance.

    Version of Bridge? OS? Are you up to date? Mine works just fine on OSX 10.10.1 and Bridge 6.1.0.115

  • Web Conference for Join Lync Meeting with supplier

    Hi,
    I would like to know Web Conference for Join Lync Meeting with supplier  
    Please kindly to explain.
    Thank you in advance.
    Supannee. 

    The Web Conferencing service manages conference data collaboration, including native support for PowerPoint presentations, document sharing, whiteboard, polling, compliance logging, annotations, and handouts. While
    scheduling and joining a conference remain the same as with other modalities, the client communicates with the Web Conferencing service by using the Persistent Shared Object Model (PSOM) protocol. PSOM is a custom protocol that is used for transporting web
    conferencing content.<o:p></o:p>
    Lisa Zheng
    TechNet Community Support

  • Recieveing "OnUCAppointmentGetVisible" error in Outlook 2013 (64 bit) - "Custom UI Runtime Error in Lync Meeting Add-in for Microsoft Office 2013"

    Hi All,
    I originally posted this in the MS Support forums (http://answers.microsoft.com/en-us/office/forum/office_2013_release-outlook/recieveing-onucappointmentgetvisible-error-in/1a40eca2-8cd1-40f1-a92f-cb08f0af6b72), but was directed over here.
    I have recently upgraded an installation of Office 2010 to 2013 (both 64 bit) but am now receiving an error which says:
    Window Title - "Custom UI Runtime Error in Lync Meeting Add-in for Microsoft Office 2013"
    An error occured while calling the callback: "OnUCAppointmentGetVisible"
    This seem to happen when I initially open a calender entry, and when I close the entry (most only the first time I close the entry).
    I did have some developer tools installed for Office 2010 and VS 2010 which played around with Excel,2013 but I have now uninstalled these.
    In addition, BCM 2010 was installed (but for the time being has been uninstalled), but I don't think that is the culprit.
    The issue is being caused be an Outlook add-in. I have three COM add-in enabled, but the one causing the issue in the "Lync Meeting Add-in for Microsoft Office 2013".
    We are currently trialling Lync in a demo installation which is in a different domain to any of the Exchange accounts, but should this cause a problem? For the time being I have disable this add-in.
    Regards,
    Chris
    Chris

    Hi,
    Sorry for my misunderstanding. If the issue is determined to be caused by Lync Meeting Add-in, please remove this add-in from Outlook, then go to Control Panel to repair Office 2013 program. After repairing,
     this add-in would be automatically reinstalled. Please check whether the issue persists. About how to repair Office programs, please refer to:
    http://office.microsoft.com/en-us/outlook-help/repair-office-programs-HA010357402.aspx
    If the Lync Meeting Add-in is not automatically reinstalled, please try to manually add this add-in by the following steps:
    1. Starting Outlook 2013 as an Administrator (right click, run as Admin).
    2. Click File > Options > Add-ins, Manage Com Add-Ins Go... > Add..., C:\Program Files (x86)\Microsoft Office\Office15\UCAddin.dll, OK.
    3. Close Outlook and start it as a normal user.
    Regards,
    Winnie Liang
    TechNet Community Support

  • Where do I install Custom File Input Panels for CC Bridge?

    I am trying to install the CustomPanel_allWidgets.xmp sample xmp file on a Mac in Adobe Bridge CC 6.1.0.115.
    I've tried about every application and user folder combination for Library ▸ Application Support ▸ Adobe ▸ XMP ▸ Custom File Info Panels ▸ 4.0 to no avail.
    Please advise.
    Thanks!

    Amit,
    Thanks for the response. Unfortunately, that didn't work for me. I'm starting to think that the xml file I was using isn't valid or somehow not picked up.
    What I am attempting to do is add a simple custom file info panel that allows one to input four text fields to be read by a downstream application. Is there an "Adobe Bridge CC Custom Info Panels for Dummies" or some other tutorial showing how this is done? The video on Adobe TV appears to be out of date as it references an older version of Bridge.
    Thanks for you guidance on this.

  • Does anyone have access to the Roadrunner dial up script for Mac?

    Hello,
    I'm getting authentication error when connecting to Roadrunner through their dial up service. I'm told I need a dial up script. The URL they provided leads to a file not found error.
    I would also appreciate knowing where I would put this script once I get it.
    Thank you in advance,
    Mark

    There is no dial-up script for RR. There's a dial-up script for the modem you are using, and that's selected in the modem configuration through Network preferences.
    Authentication errors occur when the userid and/or password provided for the dial-up account are not correct. They are not caused by the dial-up script itself unless RR uses some sort of non-standard authentication dialog. It's been a long time since I ever used their dial-up, but I don't recall they used a non-standard dialog at the time.
    In earlier versions of OS X it was possible to open the dial-up terminal manually so you could observe the remote dialog and enter responses to the dial-in procedure. You could then save the resulting dialog into a login script that would be used once the dial-up connection was made. Unfortunately, I haven't used dial-up in several years, so I'm afraid I'm not much help in this regard. You could do some exploring in Mac Help from the Finder's Help menu to see if you find a help article.

Maybe you are looking for