Quiz questions custom labels not appearing

Hi, I figured out how to change the custom pop-up labels after the user submits an answer on a quiz (yay!) but they
're not showing up. Any clue as to why? Here we have the way the questions look on screen and in the actual video:
but my actual responses SHOULD be what I have in the default labels screen:
Any reason why they're not? Also, I changed the bubbles' colors too, and that didn't take either. Thank you!

Hello,
Did you change the captions and the caption style after creation of the quiz slides? Try to create a new question slide, the text in the captions will be OK.
As for the Caption style: what and how did you change? Did you change the default Success/Failure/Hint caption styles with the Object Style Manager? Here it could be easier to change all styles of existing captions: change one on a question slide, a + sign will appear before the style (see screenshot, this one is for a simple Text Caption but idea is same for Quizzing captions). Use the third icon to apply this change to all captions of same style, and if you want to add more question slides, save this as default style with the second icon (yellow highlighted).

Similar Messages

  • Custom labels not during case

    custom labels not during case, during mixed case, any advice?

    Hello,
    Did you change the captions and the caption style after creation of the quiz slides? Try to create a new question slide, the text in the captions will be OK.
    As for the Caption style: what and how did you change? Did you change the default Success/Failure/Hint caption styles with the Object Style Manager? Here it could be easier to change all styles of existing captions: change one on a question slide, a + sign will appear before the style (see screenshot, this one is for a simple Text Caption but idea is same for Quizzing captions). Use the third icon to apply this change to all captions of same style, and if you want to add more question slides, save this as default style with the second icon (yellow highlighted).

  • Field label not appearing in OIM Report Page

    Hi,
    Though this sounds like a silly problem, but I am not able to figure out what could be the problem.
    I have created a new report in OIM and it is working perfectly fine as per the stored procedure. The only problem is that one of the label name is not appearing correctly in the report page display. It consists of the following fields:
    1. First Name
    2. Last Name
    3. User iD
    4. Custom field of the target application resource -say- abc.
    In the xlWebAdmin.properties file, I added a new property for the custom field -
    report.CustomReport.label.CustomField=abc
    The same value has been written in the XML metadata of the report.
    However, in the report page in OIM the label appears as - ???en_US.report.CustomReport.label.CustomField???
    Please advice.
    Regards.

    Actually, we are getting a few errors while running the script and hence I was looking for any alternate, if possible.
    java.io.IOException: java.io.IOException: /app/oracle/product/APP/10.1.3/j2ee/home/jsp/bin/ojspc: not found
    at java.lang.UNIXProcess.<init>(UNIXProcess.java:148)
    at java.lang.ProcessImpl.start(ProcessImpl.java:65)
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
    at java.lang.Runtime.exec(Runtime.java:591)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    It is unable to locate "ojspc" path. I am not sure as to where this path is referenced. I have to change it there, so that it refers to thecorrect one.
    Regards.

  • Custom filed not appearing in APO while ECC-APO CIF for Sales Order

    Hi,
    I require a custom field to be passed to APO while CIF.
    For this i created a custom field ZZKDGRP in CIFSLDCCUS in ECC and CI_SLDCCUS in APO.
    While CIF in ECC ,the field is passing to the structure CI_SLDCCUS in APO.
    but it is not appearing in product view /SAPAPO/RRP3.
    The characteristic column (Pyramid) is blank.
    Please help..suggest alternative..
    Useful answers will be rewarded.
    Thanks in advance.
    Kashyap

    Hi Kamath,
    Please try the below Enhancements/BADI
    APOCF010
    APOCF025
    APOCFPCO
    BADI :- /SAPAPO/SMOY_PUB_APP
    Regards
    R. Senthil Mareeswaran.

  • User Profile custom property not appearing in search crawled property

    Actually I have migrated search services from one server to another server in that server I have created new custom user profile property but it is not appearing in search service crawled property any one please help me out in this.

    I got the same problem and i fixed it.
    If you take a look on all User Profile properties(cutsom or standard) you will note that they are all mapped to the property "ContentsHidden"(in addition of its property).
    I concluded that you have to map all user profile properties to "ContentsHidden"
    Please mark as usefull if it resolved the problem.
    may this post help you
    http://moudhafersalhi.com/2014/04/27/user-profile-property-not-appearing-in-search/

  • SAP Portal custom themes not appearing in 'Personalize' link

    Hi.
    I am trying to make customised themes available to my users through the 'Personalize' link in the masthead. I have successfully customised the Personalize function so it now includes only the ability to choose themes - all other forms of personalisation have been stripped out. I have also successfully created a customised theme.
    My problem is that the custom theme I have created does not appear in the values list within Personalize -> Portal Theme. Only SAP standard themes are appearing in the list. I have managed to assign the theme to users through a display rule, so I know the theme works OK. I have tried exporting and re-importing the theme, this did not help.
    Does anybody know how I can make my custom theme available through the Personalize -> Portal Theme list?
    Thanks in advance for any help,
    Simon.

    Hi,
    Only the themes present in the desktop in which the users fall will be available in the personalize link.
    In detail
    System admin->portal display->Desktop and display rule ->open your desktop (in which the user falls)
    Add all your custom theme to the desktop.
    By now the custom theme will be present in personalize->custom theme.
    Regards
    Karthiheyan M

  • Custom painting not appearing on Windows XP JVM

    I have an applet that has a JComponent subclass with the following
    method:
    public void paintComponent(Graphics g)
      if(fBackgroundImage != null)
        fBackgroundImage.paintIcon(this, g, 0, 0);
    }where fBackgrounImage is a ImageIcon. Added to this component is
    another JComponent subclass, which sits in the middle of the
    original JComponent. The latter has this method:
    public void paintComponent(Graphics g)
      Graphics2D g2 = (Graphics2D)this.getGraphics();
      if(fHighQuality)
        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);
      if(fBackgroundImage != null)
        g2.drawImage(fBackgroundImage,
                     0,
                     0,
                     getWidth(),
                     getHeight(),
                     0,
                     0,
                     fBackgroundImage.getWidth(null),
                     fBackgroundImage.getHeight(null),
                     null);
      for(int i=0; i<fPathsX.size(); i++)
        int[] pathX     = (int[])fPathsX.elementAt(i);
        int[] pathY     = (int[])fPathsY.elementAt(i);
        int pathLength  =
    ((Integer)fPathLengths.elementAt(i)).intValue();
        int colour      = ((Integer)fColours.elementAt(i)).intValue();
        if(colour == COLOUR_WHITE)
          g2.setStroke(new BasicStroke(WIDTH_ERASER*fBaseLineSize));
        else
          g2.setStroke(new BasicStroke(WIDTH_PEN*fBaseLineSize));
        g2.setColor(fColourPalette[colour]);
        g2.drawPolyline(pathX, pathY, pathLength);
      if(fPathIndex > 0)
        if(fTool == TOOL_ERASER)
          g2.setStroke(new BasicStroke(WIDTH_ERASER*fBaseLineSize));
          g2.setColor(Color.WHITE);
        else
          g2.setStroke(new BasicStroke(WIDTH_PEN*fBaseLineSize));
          g2.setColor(fColourPalette[fColour]);
        g2.drawPolyline(fCurrentPathX, fCurrentPathY, fPathIndex);
    }(fBackgroundImage in this component is actually a BufferedImage)
    On Mac OS X, this all works beautifully - the parent component draws
    the background image, and the child component draws its bits on top.
    On Windows however, the child does not appear. It flickers to
    visible while dragging the mouse (most likely because the mousedragged method has a call to the child's repaint() method) but as soon as you stop drawing the child disappears again.
    How can I ensure that the child will be drawn on top of the parent?

    I didn't think of the QT version. I remember that
    when I exported the QT it did use the H.264 codec. I
    will try and re export the movies using MPEG-4 and
    let you know.
    MPEG-4 won't look as good as H.264 and won't be as small a file either. But it works.
    Any ideas why the container box is not being rendeed
    in the correct place on the page?
    You mean the template "frame" that is supposed to border the movie window? I don't know what happened....maybe if I could take a peek at your page?
    Does XP have QT pre installed? or would it be
    advisable to offer a link to download to view the
    content for non mac viewers (which I anticipate).
    Nope. No QuickTime preinstalled on XP. It would be a nice touch to offer a link to download QT. You can use http://www.quicktime.com I think.
    Would it be more compatable to use flash? if so how
    would I go about it.
    Flash definitely has its advantages. I have actually pretty much switched over to uploading my videos to Google and then letting them convert it to flash and stream it on my webpage. It takes a little bit of HTML editing, but it's not too bad. And the quality is pretty good too for the size of the movie window. If I had to do that with MPEG-4, then it would have been a huge file probably. Here are some examples from my site:
    http://funhouse.dirtdoog.com <==click on the baby with the McDonald's bag
    http://web.mac.com/jwtseng/iWeb/kate/MyWorld/6C457884-51D7-4643-9DA8-AB149E6B544 F.html
    http://web.mac.com/jwtseng/iWeb/kate/MyWorld/E3BD3E8E-FD71-4C44-AD4D-3F562413FFC C.html
    http://web.mac.com/jwtseng/iWeb/kate/MyWorld/24937660-2AE2-41D1-A81C-D12B99AC23E 7.html

  • Custom field not appearing in Japanese language in some pages of SRM portal

    Hi,
    We have a requirement to add a customer field(a check box) to the shopping cart. To do this we have enhanced a Webdynpro component along with the desired changes in the shopping cart header table.
    The problem that we are facing is that, this custom field appears perfectly fine in the SRM portal in English language. However, in Japanese language(By changing the language settings in the browser), we find that the check box label is not displayed in certain views, and is displayed in some other views (Note that the check box is visible in both views). I believe that this problem is not related to translation.
    Kindly help us if you are aware of a solution to this problem.
    Thanks.

    Hi,
    See the foll note:
    Note 1082243 - Customer field in account assignment tab
    Although this note is for SRM 6.0,you can check the required settings.
    Also as mentioned in note Note 672960 - User-defined fields 2,please carry the foll steps:
    If you define fields for the first time, the system generates a screen for the display. If you create or delete fields, the screen must be regenerated. To do this, start report BBP_DYNPROS_GENERATE, change the proposed program to SAPLBBP_PDH_CUF and execute the report. Select the checkbox for the screens with the descriptions BBP_PDS_HCF for the table-like fields at the header and/or with the description BBP_PDS_ICF for the table-like fields at the item. You can use the 'Copy' button to enforce a regeneration of the screens.

  • Why are my iCal custom colors not appearing on other divides

    When I set custom iCal colors in the past they sync across all devices. But recently (3-4 months) any calendar I add or adjust the color on the cloud will not change on my  iPad or my iPhone 5s. What is going on?  I only have so many default options and I need many calendars to be differentiated from another.

    It's just very hard to believe - 20+ networks!  Especially the ones that are very strong that say HOME-XXXX.  I am wondering a bit about those - there are 6 of them matching that naming pattern and the strength on all of them is quite good.  Like I said houses are not close together in my neighborhood, at least not to me.  It's not like we're talking farm country or a rural area, but the lots here are fairly large and widespread, for a suburb.
    How can so many strong, similarly-named signals be appearing?  I wish I could triangulate/locate the routers and know for sure where they are. 

  • Captivate 7, sequencing quiz question, answers are not reshuffled

    Hello,
    I have made a quiz using Cp7. The questions are all sequencing questions. The first time around, the answers are shuffled, as one would expect. Then the quiz-taker puts the answers in the correct order. However, the following times the quiz-taker does the quiz, the answers aren't shuffled! So if the quiz-taker gets Question 1 right the first time, when he or she tries the quiz again, the answers for Question 1 are in the right order when the question first opens.
    Does anyone know what's going on here?
    Thank you. Marvin DuBois

    Thank you again. And yes, I should make a formal request.
    I might just mention that I've found something of a work-around. (This won't be news to you, but others in the same boat as myself might appreciate this.) Note that this works within a very specific context, so it is by no means a complete solution. But here goes.
    We run the Cp quizzes in an LMS (and that means, of course, a specific LMS). The solution works in this context. When making up a Cp quiz, I add a regular (non-question) slide after the score slide. On this slide I put a button that opens a webpage via a URL. And this URL is for the quiz itself--i.e. it is the LMS's address for the quiz. Thus, clicking the button simply restarts the quiz all over again, and this takes care of the randomization issues.
    This solution has two major drawbacks:
    1.The resume option has to be off.
    2.The Cp quiz itself cannot keep track of the attempts at doing the quiz (since with each new retake, the counting restarts at '1').
    I don't like having to do without the resume function. But in our particular case, the second issue isn't all that important. The LMS itself tracks the attempts at taking the quiz, so this information is always available both to quiz-takers and to administrators/teachers. (On the score slide itself, I simply remove the fields for the number of attempts.)
    At the moment, I'm trying to come up with a solution that would allow us to retain the resume function. So far, no luck, but we'll see.
    Best regards,
    Marvin DuBois

  • Custom Icon Not Appear in iTune

    I am ready to submit my apps but I am stuck because of one simple problem that I cannot solve.
    When I go through Project > Export Release, the custom icon does not show up in iTune, but they are shown in my iPhone, iPod and iPad
    The default icon appears in the iTune but not the one I designed.
    I have already included the all the different size icons to your build (29, 48, 57, 72, 114, 128 and 512) and see if that solves your problem but this did not solve the problem.
    Please help me!
    Thank you very much.

    Hi,
    I have tried setting 512x512 image in the app.xml and i was able to get the icon image in iTunes.
    If you are using the same icon file in AIR and embedding it to set it dynamically at runtime then you might have an issue. In this case, please create a copy of same image and use it in app.xml file.
    Let me know if this helps.
    - Hari

  • Custom Images not appearing

    Hi,
    I have added two images to the folder path C:\OracleBI\web\app\res\s_ect\images\ as Image1.jpg and Image2.jpg size-2 kb.
    I added it as fmap:Images/Image1.jpg and added fmap:Images/Image2.jpg as required at different places
    but, Image1 is appearing correctly. But Image2 not coming properly. it shows up in criteria -->column properties --> style --> image but not in dashboard. i can able to see only a into sign.
    Am I missing something? is there any other way to get it?
    Thanks,
    Satheesh

    Hi,
    The proper way to do this is to have the same style 's_ect' and skin folders 'sk_ect' on the application server side (OC4j)
    Copy your s_ect\ to e.g C:\OracleBI\oc4j_bi\j2ee\home\applications\analytics\analytics\res
    restart OC4j and try again
    Regards
    Adil
    PS: Please don't forget to close the thread and assign points when your question is answered

  • Using a custom font: Not appearing in Adobe

    I am using a custom font for a project at work. The font has been installed on my machine and works great in other programs (Microsoft Word and Open Office, for example). The font is not displaying on the font list in Flash or Photoshop, however. How can I make the font appear?

    benkay wrote:
    You are correct. That's an incredibly annoying "feature" of the Java 1.4 spec.No, it's not. It's incredibly annoying how many people think this.
    Edit: It's takes an additional 30 seconds to give something a package and that's an incredibly small price to pay for doing something right.

  • Stacked Column Chart Data Labels Not Appearing

    I am using SetSytle in Actionscript to make the data labels in a stacked column chart appear inside but it's not working.
    A portion of the code I am using to create the chart is below:
                    //initialize column set for stacked columns
                    var colSet:ColumnSet = new ColumnSet();
                    colSet.type="stacked";
                     for each(var node:XML in _chartDP){
                         var k:int = 0;
                         //skip zero datapoints
                         if (parseInt(node.toString()) != 0) {
                             //if measure node does not exist, add as series
                             k = uniqueYCat(node.attribute("BillTo"));
                             if (k == -1){                                                        
                                    // Create the new column series and set its properties.
                                    var localSeries:ColumnSeries = new ColumnSeries();
                                    localSeries.setStyle("labelPosition","inside");
                                    localSeries.dataProvider = dataArray;
                                    localSeries.yField = node.attribute("BillTo");
                                    localSeries.xField = "ConfidenceStatus";
                                    localSeries.displayName = node.attribute("BillTo");
                                    localSeries.setStyle("showDataEffect", ChangeEffect);
                                    // Back up the current series on the chart.
                                    var currentSeries:Array = chart.series;
                                    // Add the new series to the current Array of series.
                                    currentSeries.push(localSeries);
                                    //Add Array of series to columnset
                                    colSet.series.push(localSeries); 
                                       //assign columnset to chart
                                    chart.series = [colSet];
    After some more research, I put a breakpoint inside ColumnChart.as in the following function:
        mx_internal function getSeriesLabelPos(series:Series):void
            if(series is ColumnSeries)
                var columnSeries:ColumnSeries = ColumnSeries(series);
                var position:String = columnSeries.labelPos;
                if(position == "inside" || position == "outside" || position == "none")
                    _needLabels = true;
            else if(series is ColumnSet)
                var setSeries:Array /* of Series */ = ColumnSet(series).series;
                for (var i:int = 0; i < setSeries.length; i++)
                    getSeriesLabelPos(setSeries[i]);
    the following line: var position:String = columnSeries.labelPos;
    returns postion as null. It looks like the setStyle is not passing the correct value to this function.
    Any ideas as to what is going on?

    chart appearance is controlled by xml files located in
    {cfroot}\charting\styles. the file for bar charts is
    default.xml
    you will want to:
    1) copy thisfile to your site's root or some other folder
    (i.e. same
    folder that the page displaying your chart is in)
    2) edit the file and change isHideOverlapped attribute of
    labelStyle
    property for xAxis to "false"
    3) point the STYLE attribute of your cfchart tag to this new
    file.
    hth
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • Formula Row/Col Custom Heading not appearing on the Grid Cell in FR Studio

    I'm building reports using Financial Reporting Studio Software.
    When i insert the formula row/column and give a custon heading, it is not reflecting on the GRID. The cell still shows blank.
    What should i do ? is this a bug?

    Which version of EPM you have is it 11.1.2 or 11.1.2.1 don't see fR studio > about it will show 11.1.2 if it is 11.1.2.1 then try 11.1.2.1.128 patch.
    because there is bug 14617522 - CUSTOM HEADINGS FOR THE ROWS BELOW THE TEMPLATE DISAPPEARS
    Infact try with latest 11.1.2.1 patch that is 133.
    Edited by: Neeraj Lahoti on Jun 3, 2013 9:45 PM

Maybe you are looking for