Using ties in a Score

Using LP8 to make a lead sheet. I have two successive notes on one word, so they should be tied. Seems I have to draw a tie by hand. When what I really want to do is select the two notes and declare that they be tied.
Thoughts?
thanks.

it's still not clear what it is you are trying to do.
do you mean you want to see a tied note showing the beat where the consonant of mile (ie the 'le' bit) is placed?
or do you mean you want a slur (not a tie) to from the D to the G?
both are possible but i am assuming you may have made a nomenclature error and mean the latter.
yes you can assign a KC for a slur. it is as simple as selecting the notes you want slurred and hitting the KC.

Similar Messages

  • Problem in using PARTITION BY with SCORE

    Hi
    I have a table in which I have list of products along with the name of the company that offers that product. Table structure is as shown below:
    PRD_ID NUMBER
    PRD_NAME VARCHAR2(100)
    COMPANY_NAME VARCHAR2(100)
    PRD_DESC VARCHAR2(500)
    DUMMY CHAR(1)
    I have created an Intermedia Index on PRD_NAME and PRD_DESC with
    PRD_NAME and PRD_DESC as two separate field sections.
    Now I want to retrieve up-to 3 products per company that match the searched keywords. Now if a user searches for Candle Holders then I write following query
    SELECT A.*, ROWNUM FROM
    (SELECT SCORE(1) AS SC,
    PRD_ID,
         PRD_NAME,
         COMPANY_NAME,
         ROW_NUMBER() OVER (PARTITION BY COMPANY_NAME ORDER BY SCORE(1) DESC) AS RK
    FROM PRODUCTS
    WHERE CONTAINS(DUMMY,'(Candle Holders)*7, ($Candle $Holders)*5, (Candle% Holders%)*3) within PRD_NAME)'
    ,1) > 0 ) A
    WHERE A.RK <= 3
    ORDER BY A.COMPANY_NAME, SC DESC;
    I have many records in my database that should get a score of 100 in the above query - e.g.
    Glass Candle Holder Comp1
    Iron Candle Holder Comp1
    Metal Candle Holder Comp2
    Votive Candle Holder Comp3
    Silver Plated Candle Holder Comp4
    Gold Plated Candle Holder Comp4
    Copper Plated Candle Holder Comp4
    Platinum Coated Candle Holder Comp4
    and so on.
    My query is returning upto 3 records per company, but it is not giving 100 as score.
    If I remove the row_number() partition by clause, then my query returns 100 score.
    I want to restrict the query from returning product at a certain cut-off score.
    Please advise what is wrong in the above query and what can I do to fix the problem
    Regards
    Madhup

    I am unable to reproduce the problem given only what you have provided. I get the same score no matter what. What version of Oracle are you using? The only thing I can think of is to put the query without the row_number in an inline view and add a condition where rownum > 0 to try to materialize the view, then apply your row_number in an outer query, as in the last query in the example below.
    SCOTT@10gXE> CREATE TABLE products
      2    (PRD_ID           NUMBER,
      3       PRD_NAME      VARCHAR2(100),
      4       COMPANY_NAME  VARCHAR2(100),
      5       PRD_DESC      VARCHAR2(500),
      6       DUMMY           CHAR(1)
      7  )
      8  /
    Table created.
    SCOTT@10gXE> INSERT ALL
      2  INTO PRODUCTS VALUES (1, 'Glass Candle Holder', 'Comp1', NULL, NULL)
      3  INTO PRODUCTS VALUES (2, 'Iron Candle Holder', 'Comp1', NULL, NULL)
      4  INTO PRODUCTS VALUES (3, 'Metal Candle Holder', 'Comp2', NULL, NULL)
      5  INTO PRODUCTS VALUES (4, 'Votive Candle Holder', 'Comp3', NULL, NULL)
      6  INTO PRODUCTS VALUES (5, 'Silver Plated Candle Holder', 'Comp4', NULL, NULL)
      7  INTO PRODUCTS VALUES (6, 'Gold Plated Candle Holder', 'Comp4', NULL, NULL)
      8  INTO PRODUCTS VALUES (7, 'Copper Plated Candle Holder', 'Comp4', NULL, NULL)
      9  INTO PRODUCTS VALUES (8, 'Platinum Coated Candle Holder', 'Comp4', NULL, NULL)
    10  SELECT * FROM DUAL
    11  /
    8 rows created.
    SCOTT@10gXE> BEGIN
      2    FOR i IN 1 .. 10 LOOP
      3        INSERT INTO products (prd_id, prd_name, company_name)
      4        SELECT object_id, object_name, 'Comp1' FROM all_objects;
      5    END LOOP;
      6  END;
      7  /
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> COMMIT
      2  /
    Commit complete.
    SCOTT@10gXE> EXEC CTX_DDL.CREATE_PREFERENCE ('your_multi', 'MULTI_COLUMN_DATASTORE')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> BEGIN
      2    CTX_DDL.SET_ATTRIBUTE ('your_multi', 'COLUMNS', 'PRD_DESC, PRD_NAME');
      3  END;
      4  /
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> EXEC CTX_DDL.CREATE_SECTION_GROUP ('your_sec_group', 'BASIC_SECTION_GROUP')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> BEGIN
      2    CTX_DDL.ADD_FIELD_SECTION ('your_sec_group', 'PRD_DESC', 'PRD_DESC', TRUE);
      3    CTX_DDL.ADD_FIELD_SECTION ('your_sec_group', 'PRD_NAME', 'PRD_NAME', TRUE);
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@10gXE> CREATE INDEX your_index ON products (dummy)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS
      4    ('DATASTORE     your_multi
      5        SECTION GROUP your_sec_group')
      6  /
    Index created.
    SCOTT@10gXE> EXEC DBMS_STATS.GATHER_TABLE_STATS ('SCOTT', 'PRODUCTS')
    PL/SQL procedure successfully completed.
    SCOTT@10gXE>
    SCOTT@10gXE> COLUMN prd_name      FORMAT A30
    SCOTT@10gXE> COLUMN company_name FORMAT A10
    SCOTT@10gXE> COLUMN prd_desc      FORMAT A8
    SCOTT@10gXE> SELECT A.*, ROWNUM FROM
      2  (SELECT SCORE(1) AS SC,
      3  PRD_ID,
      4  PRD_NAME,
      5  COMPANY_NAME,
      6  ROW_NUMBER() OVER (PARTITION BY COMPANY_NAME ORDER BY SCORE(1) DESC) AS RK
      7  FROM PRODUCTS
      8  WHERE CONTAINS(DUMMY,'(((Candle Holders)*7, ($Candle $Holders)*5, (Candle% Holders%)*3) within PRD_NAME)'
      9  ,1) > 0 ) A
    10  WHERE A.RK <= 3
    11  ORDER BY A.COMPANY_NAME, SC DESC
    12  /
            SC     PRD_ID PRD_NAME                       COMPANY_NA         RK     ROWNUM
            28          1 Glass Candle Holder            Comp1               1          1
            28          2 Iron Candle Holder             Comp1               2          2
            28          3 Metal Candle Holder            Comp2               1          3
            28          4 Votive Candle Holder           Comp3               1          4
            28          8 Platinum Coated Candle Holder  Comp4               1          5
            28          7 Copper Plated Candle Holder    Comp4               2          6
            28          6 Gold Plated Candle Holder      Comp4               3          7
    7 rows selected.
    SCOTT@10gXE> SELECT A.*, ROWNUM FROM
      2  (SELECT SCORE(1) AS SC,
      3  PRD_ID,
      4  PRD_NAME,
      5  COMPANY_NAME
      6  FROM PRODUCTS
      7  WHERE CONTAINS(DUMMY,'(((Candle Holders)*7, ($Candle $Holders)*5, (Candle% Holders%)*3) within PRD_NAME)'
      8  ,1) > 0 ) A
      9  ORDER BY A.COMPANY_NAME, SC DESC
    10  /
            SC     PRD_ID PRD_NAME                       COMPANY_NA     ROWNUM
            28          1 Glass Candle Holder            Comp1               1
            28          2 Iron Candle Holder             Comp1               2
            28          3 Metal Candle Holder            Comp2               3
            28          4 Votive Candle Holder           Comp3               4
            28          5 Silver Plated Candle Holder    Comp4               5
            28          6 Gold Plated Candle Holder      Comp4               6
            28          7 Copper Plated Candle Holder    Comp4               7
            28          8 Platinum Coated Candle Holder  Comp4               8
    8 rows selected.
    SCOTT@10gXE> SELECT SCORE(1) AS SC,
      2           PRD_ID,
      3           PRD_NAME,
      4           COMPANY_NAME
      5  FROM   PRODUCTS
      6  WHERE  CONTAINS
      7             (DUMMY,
      8              '(((Candle Holders)*7,
      9            ($Candle $Holders)*5,
    10            (Candle% Holders%)*3) within PRD_NAME)',
    11              1) > 0
    12  /
            SC     PRD_ID PRD_NAME                       COMPANY_NA
            28          1 Glass Candle Holder            Comp1
            28          2 Iron Candle Holder             Comp1
            28          3 Metal Candle Holder            Comp2
            28          4 Votive Candle Holder           Comp3
            28          5 Silver Plated Candle Holder    Comp4
            28          6 Gold Plated Candle Holder      Comp4
            28          7 Copper Plated Candle Holder    Comp4
            28          8 Platinum Coated Candle Holder  Comp4
    8 rows selected.
    SCOTT@10gXE> SELECT *
      2  FROM   (SELECT sc, prd_id, prd_name, company_name,
      3                ROW_NUMBER () OVER
      4                  (PARTITION BY company_name ORDER BY sc DESC) AS rk
      5            FROM   (SELECT SCORE(1) AS SC,
      6                     PRD_ID,
      7                     PRD_NAME,
      8                     COMPANY_NAME
      9                 FROM   PRODUCTS
    10                 WHERE  CONTAINS
    11                       (DUMMY,
    12                        '(((Candle Holders)*7,
    13                      ($Candle $Holders)*5,
    14                      (Candle% Holders%)*3) within PRD_NAME)',
    15                        1) > 0
    16                 AND    ROWNUM > 0))
    17  WHERE  rk <= 3
    18  /
            SC     PRD_ID PRD_NAME                       COMPANY_NA         RK
            28          1 Glass Candle Holder            Comp1               1
            28          2 Iron Candle Holder             Comp1               2
            28          3 Metal Candle Holder            Comp2               1
            28          4 Votive Candle Holder           Comp3               1
            28          5 Silver Plated Candle Holder    Comp4               1
            28          6 Gold Plated Candle Holder      Comp4               2
            28          7 Copper Plated Candle Holder    Comp4               3
    7 rows selected.
    SCOTT@10gXE>

  • Empty univers list when using tier 3 connection

    Hello,
    I am having a problem on webi / deski with tier 3 connection mode.
    If i whant to create a new report, the list of univers ll be empty. When modifying a report, the only available univers will be those that are already used in one of the queries.
    When using direct connection to the databases, the whole list of univers is shown.
    I didn t make the original installation but wasn t able to reproduce the problem when installing a new server.
    This problem occured in SP2.7 and applying 6.3 didn t solve it.
    Does anyone have any leads ?
    Best regards,

    I checked the error logs of webi rich client and i found this one :
    accessRepoProxy.cpp:176:void __thiscall repoProxyAccessImp::ShowError(const class bo_utf8string &,const class bo_utf8string &,int): TraceLog message 1
    2014/06/03 20:47:34.107|>>|E| | 4352|7712| |||||||||||||||Error! repoProxyAccessImp::getAllAvailUniverseList() : [repo_proxy 36] UniverseFacade::getAllLightUniverseList - (com.crystaldecisions.sdk.exception.SDKException$PropertyNotFound: La propriété portant l'ID SI_FILES n'existe pas dans l'objet) [repo_bridge - BridgeUniverseFacade::getAllLightUniverseList]
    <The property with id SI_FILES doesn t exist in the object>

  • HELP!! using Key switches and score editor.

    Hey guys,
    I'm in need of some help here.
    so I was wondering if there is a way to hide notes that are being used for keyswitching between various samples?
    the idea is so that I can keep a tidy score that I can print out as well.
    while using EWQL or VSL I do use notes outside of the range of the specific instrument to switch between various articulations, but I would like to have these notes "hidden" in the score view, so that if I print out the score it is clean and makes sense.
    any ideas would be greatly appreciate it it and thanks in advance.
    sincerely
    David

    Hey there,
    so the only place I saw where I could change the range was in the inspector for the midi track in the arrange window. I changed it there, however, the notes that are out of range still show up in the score window.
    sorry if I sound dumb, I'm not used to using score editor in Logic I normally use Sibelius for this and I really appreciate your help.
    thank you
    David

  • No go on Overstock CLI? Using 3 mo old score?

    tiger_uppercut wrote:
    Shann0n_marie wrote:
    Ughhhhhhhhh!  I can't get a CLI on Overstock for the life of me!  So I realizedf from a denial letter that they are using my score from when I originally opened the card in May?  My credit score has increased 43 pts since that time.   Is it that I have to wait for them to AR me first?  Do they do every 3 mos?  Because it should happen any day then. I've been getting CLI left and right from everywhere else.  You need to give it a bit more time. May is too new. I would try next month and you should be good to go. It took 3-4 months before the luv button worked for me, and since then I get a CLI every month like clockwork.I feel your pain,  comenity likes me, just not very much to start.  I have a VS card (7 months, no luv),  Overstock ( 2 months, no luv),  Modells visa (brand new, no luv) Some people get the red carpet with cli and some just have to wait.  Guess we just have to wait.  LOL

    alottacards wrote:
    tiger_uppercut wrote:
    Shann0n_marie wrote:
    Ughhhhhhhhh!  I can't get a CLI on Overstock for the life of me!  So I realizedf from a denial letter that they are using my score from when I originally opened the card in May?  My credit score has increased 43 pts since that time.   Is it that I have to wait for them to AR me first?  Do they do every 3 mos?  Because it should happen any day then. I've been getting CLI left and right from everywhere else.  You need to give it a bit more time. May is too new. I would try next month and you should be good to go. It took 3-4 months before the luv button worked for me, and since then I get a CLI every month like clockwork.I feel your pain,  comenity likes me, just not very much to start.  I have a VS card (7 months, no luv),  Overstock ( 2 months, no luv),  Modells visa (brand new, no luv) Some people get the red carpet with cli and some just have to wait.  Guess we just have to wait.  LOLI feel your pain as well.  I opened several Comenity accounts last month and I read some get increases after the 31st day.   No go for me!  And I won't even try the Sportsmanship Visa, Modell Visa or the TR Visa.  I will wait the full 6 months for them and garden like crazy!  

  • Can Samsung ATIV 32 bit OS, 1.80GHz, Windows 8 be networked for Remote access using Tier Medical software

    I was able to successfully download and connect to my employer's Tier Software.  I  tried to run the TIER training module and received an error message with a code number and problem with Tier.exe.  When I contacted our system
    administrator as directed by this error message I was told that my screen was not big enough because it was a tablet and the screen is 10.1 inches. New Hires are required to have a computer or a laptop that runs The Tier Medical software purchased at
    our expense.  There is no Full -time computer administrator.  I would like to encourage the employer to consider a consultation with a Tier consultant or computer consultant and what the approximate cost would be.  This could resolve my problem
    and at least 2 other health service professionals the expense of buying a new computer.  Please advise me about some alternative solutions if there are any.

    Unfortunately your post is off topic here, in the TechNet Site Feedback forum, because it is not Feedback about the TechNet Website or Subscription.  This is a standard response I’ve written up in advance to help many people (thousands, really.)
    who post their question in this forum in error, but please don’t ignore it.  The links I share below I’ve collected to help you get right where you need to go with your issue.
    For technical issues with Microsoft products that you would run into as an
    end user of those products, one great source of info and help is
    http://answers.microsoft.com, which has sections for Windows, Hotmail, Office, IE, and other products. Office related forums are also here:
    http://office.microsoft.com/en-us/support/contact-us-FX103894077.aspx
    For Technical issues with Microsoft products that you might have as an
    IT professional (like technical installation issues, or other IT issues), you should head to the TechNet Discussion forums at
    http://social.technet.microsoft.com/forums/en-us, and search for your product name.
    For issues with products you might have as a Developer (like how to talk to APIs, what version of software do what, or other developer issues), you should head to the MSDN discussion forums at
    http://social.msdn.microsoft.com/forums/en-us, and search for your product or issue.
    If you’re asking a question particularly about one of the Microsoft Dynamics products, a great place to start is here:
    http://community.dynamics.com/
    If you really think your issue is related to the subscription or the TechNet Website, and I screwed up, I apologize!  Please repost your question to the discussion forum and include much more detail about your problem, that could include screenshots
    of the issue (do not include subscription information or product keys in your screenshots!), and/or links to the problem you’re seeing. 
    If you really had no idea where to post this question but you still posted it here, you still shouldn’t have because we have a forum just for you!  It’s called the Where is the forum for…? forum and it’s here:
    http://social.msdn.microsoft.com/forums/en-us/whatforum/
    Moving to off topic. 
    Thanks, Mike
    MSDN and TechNet Subscriptions Support <br/> Read the Subscriptions <a href="http://blogs.msdn.com/msdnsubscriptions">Blog! </a>

  • Creating ties

    Hello:
    I am in Logic express 8.
    I am using the notation editor to create a lead sheet and I want to tie notes in the score. First, I select the given notes I want to tie; then I go into attributes and select tie, but it doesn't tie the notes. There must be something I don't understand. Any help would be greatly appreciated.
    Thank You,
    James G

    You have confused ties with slurs. Ties are for joining the same note to itself; for example, when a note continues across a bar line. Slurs are for joining two or more separate notes into a group.
    So don't use ties; use slurs.

  • Score Logic Express 9 Score Playback

    Grateful any thoughts on using dynamics with the Score in playback. Things like accents, ties, slurs, cresc and dim. It would be fantastic to have this.

    Midi is not reflected as ornaments in scores but the reverse is true for notation software. You can use ornaments like rit, acc, dim, etc in notation software (Sibelius, Finale,...) and they will be seen as events in the midi file if the tempo map is included. This means that you have to start with, e.g., Sibelius or Finale and then move over to Logic. I don't use Logic's notation except for quick testing of changes. My final output is sheet music and for that you have to use "real" notation software. Logic's notation capabilities are, of course, very nice and helpful when you do your preliminary drafts.
    Leander

  • HT5527 But what on earth can I use this storage for?

    I got the email this morning. It's somewhat annoying that I've just signed up for iTunes Match and will have to pay for that when I could have opted to just send my music to the cloud, which I thought was going to be reduced to 5gb.
    So I'd like to find out what I can use this free space for.
    When I had an iDisk I used it to store work files so they were easily available at work and at home. I also put treasured photos and documents for the family to see there. I often used it to store scores of music I've written to add another layer of security in case everything got lost this end in case we got struck by lightening or something. I'm not sure how much of that I'll be able to put in iCloud storage now.
    So far I'm using it for email and calendar and I'm using a very small amount of space. I've paid for iTunes Match, which is considerably bigger. Perhaps I could put my audio books in there? I'm still not going to use 55GB.
    The only real use I can see for it would be to email all my important documents such as the music notation scores to myself - and then I suppose I will have put them into the cloud. But if I'm going to lose it all in a year's time I'm not sure I want to go to all that trouble.
    Any other suggestions would be gratefully received.

    So really, they can offer us 55GB of space for a year, which seems a very generous offer given that they are not charging well over £100 as I used to pay for my maxed out iDisk. But there's probably not a single user who is going to fill 55GB with the kind of documents that can be stored there. Only photographs could fill that space; and even then it would take a massive amount of those to use up 55GB.
    And having found every last word processing document and photograph I can lay my hands on to fill the space, would it be worth it if I knew that at the end of the year I'd have to remove it all and back it all up somewhere else?
    One wonders why they bothered! It is no replacement for my iDisk. Now if we have a flood or a fire, I've lost the lot, no matter how much backing up I've done. Unless I turn to DropBox, that is. Maybe I will. What Apple has done is handed me a huge trunk and told me I can keep only unboxed cufflinks and earrings in it for a year, while I'm desperately looking around for somewhere to put my boots!
    Thanks for the comments, guys. I think you'll agree with me that this is a statement of bewildered disbelief rather than a problem and that there's no solution unless Apple changes the way iCloud works.

  • How to change the alpha of a graphic symbol in flash depending on score

    i'm making a game and i don't know what script to use to change the alpha color of the graphic symbol i used.
    the game is a shooting game, ex: target points is 50, if the score is 25 the alpha color should be at 50%, if  score is 50 alpha is at a 100%
    hope someone could help..thanks!!!

    if that's a movieclip button and skeleton_mc is on the same timeline as the button, you'll need to use:
    _parent.skeleton_mc._alpha = score*2;
    if that doesn't work, in that button press, add:
    trace("button "+this);
    and on the timeline that contains skeleton_mc, add
    trace("skeleton "+skeleton_mc);
    and paste the output panel results here.

  • Score & Hyper Draw

    When using hyperdraw in the score editor, the pop up menu that displays cc data does not appear. Anyone else have the same issue?

    Hi
    Go to View Hyperdraw:Articulation ID and select "any"
    Then try to display Hyperdraw velocity
    Note that the 'Articulation ID" option has disappeared ;-)
    Now you see it
    Now you don't.... but you do see Note velocity in Hyperdraw
    CCT
    Message was edited by: CCTM.... typo

  • Use of RMS in Game

    Hello to All
    I want to store highest score of my game. I think, I will have to use RMS for this.
    So how can we use RMS for storing score of my game.
    If any new user has make higher score then previous one then previous scroe should be deleted and new score should be stored in memory.
    Please help me.
    Any one can reply me on my personal id [email protected]
    Thanks in advance.
    Mukund

    Hello Christiaan Willemsen Sir,
    Thanks for ur reply.
    Actualy I dont know how can we use RMS I read tutorial on Sun site about RMS.
    But I used sample code from sun's site .
    But I want to use this code in paint(Graphics g) method.
    becouse in paint() method I am checking condition for winner . so I want to use these code in paint method.
    waiting for ur reply
    Mukund

  • MM Vendor Evaluation Score Card Program RM06LBAT

    Hello MM gurus,
    I am trying to figure out what record selection criteria SAP uses in calculating a score in the Vendor Evaluation score card program RM06LBAT.  We have our applicability period set to 090 days in configuration. Does the program look at records in S013 for the last 090 days from the run date of RM06LBAT? Or does the program look at records in S013 since the last vendor score card was generated?  Is applicability period used in running the score card?  How is the applicability period used in SAP for vendor evaluation?
    We would like to run the score card program every 090 days (or once per quarter) and have SAP only evaluate scores for activity generated over the 090 day period.
    I appreciate your assistance.
    Regards,
    Julie

    HI,
    The information you need from vendor evaluation is contained in the criteria on-time delivery.
    The market price is a dat you introduce in the info record.
    There is a very good information in the online help:
    [http://help.sap.com/saphelp_erp60_sp/helpdata/EN/8d/b97cde414511d188fc0000e8322f96/frameset.htm]
    Best Regards,
    Arminda Jack

  • Using modulation function in GarageBand '08

    I am creating a software instrument track using the Caribbean Steel Drum from one of the Apple Jam Packs. I am not using an external keyboard, I'm just doing it within GarageBand.
    When playing steel drums, you either hit the note singly with one stick, or you hold it by "rolling" the note like a drum roll. I have been frustrated for months because sometimes when I enter a note to be held (say, a 1/2 or whole note), it will roll when entered- but when I play it back, it won't. I have finally discovered in some documentation that the way to roll a note is by using the modulation function. However, nowhere do I see instructions on how to use it. What I want to do is go back and use that function to make the appropriate notes roll (usually not very many).
    Can I do this? If so, how EXACTLY? Is there a better way? Does '09 do it any better?

    Solved, despite Apple not being able to help me. To use modulation on the score, shift to advanced mode, select modulation and... wait for it... hold down the command key and click in the field at the beginning of the note- which you won't see in the field, but in the "piano roll" at the top of the window. Command-click again at the end. Drag the first dot to 100%, drag the 2nd one to 0%. Command-click on the lines that form to shape the modulation any way you want.

  • SCORM 1.2 and Saba - Reporting a 0 Score for Track Slide views

    Good morning,
    We have just transitioned over to our new LMS, Saba.  To say the transition has been rocky would be an understatement.   So, here is what I am dealing with:
    I have a very basic reader course where I want to grant someone credit once they have viewed all slides.  I am using SCORM 1.2 and setting either "User Access Only" or "Slide Views Only."  If I use slide views, I set it to 1, it sends a 0 score to the LMS, even if the user views all slides.  I have been able to create a fix by assigning a point value to a click box or button at the screen where I want the user to get credit.  However, this does not seem to be what was intended.
    Below are screen shots of my publishing commands, Saba screens, and communication report between Saba and CP.
    Content Communication Log with Saba
    Content Communication Log
    July 14, 2011 5:34:43 AM PDT
    Command Received = LMSInitialize
    Content Item: Super_Instructor_Role
    July 14, 2011 5:34:43 AM PDT Response data (Data sent by Saba LMS to content) =
    cmi.core.student_id = EEFIELDS1
    cmi.core.student_name = Fields, Eric
    cmi.core.credit = credit
    cmi.core.entry = ab-initio
    cmi.core.lesson_mode = normal
    cmi.launch_data =
    cmi.suspend_data =
    cmi.core.lesson_location =
    cmi.core.lesson_status = not attempted
    cmi.core.score.raw =
    cmi.core.score.min =
    cmi.core.score.max =
    cmi.core.total_time = 00:00:00
    cmi.comments =
    cmi.comments_from_lms =
    cmi.student_data.mastery_score =
    cmi.student_data.max_time_allowed =
    cmi.student_data.time_limit_action = exit,message
    cmi.student_preference.audio = 0
    cmi.student_preference.text =
    cmi.student_preference.language = 0
    cmi.student_preference.speed = 0
    July 14, 2011 5:34:45 AM PDT
    Command Received = LMSCommit
    Data sent by content to Saba LMS:
    cmi.core.lesson_status = completed
    cmi.core.lesson_location = 0
    cmi.core.exit =
    cmi.core.score.raw = 0
    cmi.core.score.max = 0
    cmi.core.score.min = 0
    cmi.core.session_time = 00:00:01
    cmi.suspend_data = A1Enone%24nP000AA000AA
    cmi.student_preference.audio = 0
    cmi.student_preference.language = 0
    cmi.student_preference.speed = 0
    cmi.student_preference.text = 0
    cmi.comments =
    July 14, 2011 5:34:45 AM PDT Response data =
    error=0
    July 14, 2011 5:34:59 AM PDT
    Command Received = LMSFinish
    Data sent by content to Saba LMS at the time of exit:
    July 14, 2011 5:34:59 AM PDT Response data =
    error=0
    Any help would be greatly appreciated.
    Thanks,
    Eric Fields
    Sr. eLearning Consultant
    Coventry Health Care

    I would suggest you try using Percent instead of Score, and set the Slide View completion percentage to 100 instead of 1.
    Change Reporting Level to Score instead of Interactions and Score.
    You haven't shown the screen for Quiz > Pass or Fail settings, but you need to set the passing percentage there to 100% as well if you intend that the learner must view every single slide.
    Bear in mind that when using slide views, if you have any navigation buttons on the slides that are set to jump to the next slide when clicked, then the learner does not get a completion mark for those slides.  In Captivate you have to watch a slide all the way to the last frame in order to get it marked as completed.  If for some reason you need to get slides marked as completed despite not being viewed (e.g. when using branching) then you can use our TickTOC widget to gain credit for those slides that are missed or not watched to the end.
    http://www.infosemantics.com.au/ticktoc
    If you suspect that not all slides will be viewed, you can adjust the Pass/Fail percentage to something less than 100% to allow for the missed ones.
    Try these changes and see if it works.
    Once you DO find the settings that allow Captivate to work with SABA I would be very interested to know what they were.  I've got a page on my website where I want to show the Captivate config settings for SABA: http://www.infosemantics.com.au/lms_guide/saba  I don't have access to this LMS myself, but perhaps you or other SABA users on this forum can contribute information to make it easier for others to work with it.

Maybe you are looking for