Any way to store if a user visited a slide?

Hi! NewB here.
I was wondering if there is a way to know whether a user has
visited a certain slide or not. I was thinking along the lines of a
variable, although I don't see a direct shot to coding. I do see
that JavaScript (JS) is available. I have never used JS, but if
this would be possible with JS, I could look into it.
Here is what I'm trying to do in case I'm going about this
the wrong way: I have set up a simulation assessment. Although
points are being captured, I don't care about the grading. This
will be part of a Help file or technical support document.
Our application has one (parent) object with many pieces
(children) that are on tabs in the user interface. For this
particular tutorial, they are learning how to set something up, and
to do so, they need to access and make changes to 3 different tabs
on the object. Since the 3 things they need to do are not
sequential, they can start on tab1, tab2, or tab3, and I'd rather
let them have that freedom in the simulation.
I have set up click-boxes for each tab. Now, once they click
on a particular tab, I force them to stay there by giving them
error messages if they don't do the next task. Once they complete
one tab, the click-boxes are again enabled on the other 2 tabs.
Also, the OK button is enabled, so really, they could shortcut the
whole simulation at any time by hitting that. Also, if they have
previously finished one tab, they can still click on one they have
already completed, at which time they will be led back to the
"before" slide for that tab.
Is there any way to make this work without forcing them to go
in a certain order (that's why I was wondering if I could store a
value if they have visited a slide and use that later)? I'm not
sure there is but thought I would check. Thanks so much!
Stephanie

Hi,
There are methods to get the name, meta info of components etc. But they can be called only from within the component. You can check out the methods of if_wd_rr_component, if_wd_component. All these can be called only from within components.
What exactly do you want to do? If you want to include components dynamically, you can create a component usage group, and add new usages of components dynamically. That will solve your problem I think.
Regards
Nithya

Similar Messages

  • Any way to store password and user names on my mini?

    Good morning.
    Is there anything available on my mini (in OS X) or some type of software that will let me store my logon ids and passwords for various sites (i.e., banking, etc.)
    Thanks.

    Hi,
    yes, you have something on your mini to store id's and passwords: the keychain!
    Check this:
    http://www.apple.com/support/mac101/work/1/
    If you go approx. halfway down the page there is a section called "Storing Passwords in Keychain".
    HTH,
    Koinseb

  • Cisco 2504 Local radius configuration, is their any ways for backing up the user db? In case the WLC dies

    Cisco 2504 Local radius configuration, is their any ways for backing up the user db?  In case the WLC dies

    Please find the guide to keep the backup:-
    http://www.cisco.com/en/US/partner/docs/wireless/controller/7.0/configuration/guide/c70mfw.html#wp1063850

  • Is there any way to store your app store password?

    I'm new to the whole Apple scene, so be kind
    As the title states, is there any way to store my password so that I don't have to enter it in every time I download an app from the app store?  So far, I've only used free apps and it asks for the password every time...a bit annoying, right?
    Thanks in advance!
    Jeff

    ..Tcodes SP01. SP02 etc are used for spool . Any one can use this tcodes
    TSP01 is the table.
    Any of your objects that you give for print are stored as spools in this Tcode. Sometimes based on the attributes you set spool gets created and then deleted. Or you can retain the spool.
    Goto SP01 and give your Uname and you can check the spool id's over there. Click on them to see the content.
    SP01 - Spool Control.
    You can maintain the spools: delete, print, save local file etc.

  • I have various devices with different capacities, but my iphone 5 won't sync as it says i'm overcapacity? it there any way to store onto the icloud and not the device?

    I have an ipad and iphone 3gs 32gb, an iphone 5 and nano 16gb and also purchased 15gb on icloud. My iphone 5 won't sync as it says it is over capacity. Is there any way to store on icloud and not my device? Is having the various capacities on each device is pointless?

    Just select less to sync with the iphone 5.
    Each device will only sync what you select.

  • Is there any way to prevent non-admin user accounts to receive software update prompts?

    I am the admin account user on our MacBook Pro, and there is one standard user account on it as well. Generally we are both logged on so we can quickly switch between user accounts and 'spin the desktop'.
    For some reason, all the software update notifications seem to be received when the standard user account is the active one.
    I know that the standard user cannot actually update without my account password and my Apple ID, but a) The notifications confuse the non-admin user, and she gets flustered, and b) Even if she manages to cancel them from the notification area, she then has to remember to tell me verbally that she had had one.
    Is there any way to stop her receiving the update notifications altogether?
    Running OS X 10.8.2 on MacBook Pro.
    Thanks in advance.

    You should be able to do this by unchecking the software update service in the system preferences to prevent the system from running the check as the "_softwareupate" user and passing it to the notification service that broadcasts to all user accounts. Then you can check for the software update in an admin account using the following Terminal line:
    /System/Library/CoreServices/Software Update.app/Contents/Resources/SoftwareUpdateCheck -Check YES
    This line can be scripted via Terminal services to run on a schedule (ie, every few hours), and if there are found updates it will launch the App Store for that account and present them. Granted this approach circumvents the notification service, but should work. To try this, open TextEdit on your computer and in a new document choose "Make Plain Text" from the Format menu.
    Then copy and paste the following text into the new document:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Label</key>
              <string>local.softwareupdatecheck</string>
              <key>ProgramArguments</key>
              <array>
                        <string>/System/Library/CoreServices/Software Update.app/Contents/Resources/SoftwareUpdateCheck</string>
                        <string>-Check</string>
                        <string>YES</string>
              </array>
              <key>StartInterval</key>
              <integer>21600</integer>
    </dict>
    </plist>
    When done, save the document to your desktop as "softwareupdatecheck.plist" or anything as long as it ends with ".plist." Then get information on the file in the Finder to ensure its name ends with plist and not anything else like "plist.txt" (rename it accordingly in the Info window's "Name & Extension" section.
    With the file name appropriate, hold the Option key and choose the "Library" option in the Finder's "Go" menu. Then locate the folder called "Launch Agents" in the library and drag the text file to this folder. Then log out and log back into your account.
    This text file is a launch agent script that instructs the system to run the program arguments every 21600 seconds (6 hours) whenever the user is logged in. The program arguments here are simply those to check for software updates for the system. You can change this time interval to be any number of seconds you would like, but there are other options to use besides the "StartInterval" key for scheduling the task. This approach simply has it repeat every number of seconds, but you can use other options to have it only run on specific hours or days, or only have it run once when you log in, etc.
    If this works for you, then if you'd like to explore these other options write back here and we can go over them for you.

  • Any way App Store (iPhone/Mac) can be LEGALLY set on two different countries?

    I am Italian, I used to live in the US and I have a bank account both in Italy and the US, meaning I can easily switch App Store country just by updating my account info on the App Store. Having purchased my latest unlocked iPhone in the US, I've been set on the American store for almost two years now--it just offers more options--but my Italian apps (apps that are not available on the US store) won't update, and vice versa should I switch to Italy again. It's kind of a hassle because some apps just won't work if they're not updated, and I'm afraid there's a limit in the number of times I can switch country on the store.
    Is there any way Apple helps bypass this "problem" by allowing users to set there account on multiple countries, or can I just make sure updates will download automatically even when I'm not set on the "right" country?
    Hope my question is clear. I appreciate any useful pointers!
    Enrica

    i have two iphones one i use in uk and one i use in portugal
    how about if i sync one with windoze for the portugal store and one with my mac for the uk store would that work?

  • Any Way to Save a pdf User Manual?

    I seem to recall that in previous versions of FCS apps, including Motion, you had the Help option to open (usually in Preview) a pdf User Manual. From there, via the Print dialog, you could do a "Save as PDF", into the folder of your choice.
    I often like to have a searchable User Manual which I can access without having to launch the app itself. So I created a special folder into which I would save separate pdf copies of user manuals which had been incorporated into the apps themselves. But in Motion 4, all I'm seeing is an HTML Help Document, and trying to "Save as PDF" via the Print window only seems to let me save the one currently visible page, nothing more.
    So -- is there still any way to create a separate, searchable User Manual for Motion (and for the other FCS3 apps), or have even pdf help documents gone the way of those two-ton paper manuals of yesteryear?
    Thanks,
    John Bertram
    Toronto

    John Bertram wrote:
    So -- is there still any way to create a separate, searchable User Manual for Motion (and for the other FCS3 apps), or have even pdf help documents gone the way of those two-ton paper manuals of yesteryear?
    Yeah, the PDF functionality is lost within the FCS3 apps themselves. The Pro Apps team wanted to be able to continually update the Help files, so they were made (exclusively) web-based.
    That resulted in a bit of an outcry. Thankfully, the team listened, we have to now visit the Help pages for each app (here's the one for Motion) and open/download from the View as PDF link.

  • Is there any way to create fields reports users can enter data into?

    I am using Crystal XI to develop reports for my company and have not received any formal training on it.  I'm learning it fairly well through the help files. 
    One of the reports I need to create summarizes our scrap, rework, and additional incurred expenses for our monthly quality reports.  Most of the information is stored in the main program used by all employees, a very small amount of it is not.  I have created sub-reports for each of the different types of costs that are tracked in the system.
    Is there any way to create an area on the report that our QA people can use to enter the items not tracked in the main system?  I am imagining that it would be through another sub-report of some kind, but do not know how to create the fields needed. 
    Thank you very much for any assistance you can provide, even if it is to tell me "You can't do that, ma'am..."  At least then I would know and wouldn't beat my head against the desk trying to figure out how to do it.

    Is defining parameter prompts in the Crystal Report and displaying it in the report a possible workaround? 
    If you define parameter prompts, then Crystal will query the user before running the report - so this would be problematic if the user needs to reference data in the report to enter appropriate values (one possibility then is to use interactive parameters feature available in CR 2008).
    Sincerely,
    Ted Ueda

  • Is there any way to prevent non-root users from rebooting the system?

    This question seems to be addressed many times on the web, but the problem is that none of the wannabe-howtos work on my system. In particular, this doesn't work and this doesn't work either, because (1) I need to keep policykit installed for udisks and other dependencies to function and (2) renaming (or removing) the file /usr/share/polkit-1/actions/org.freedesktop.login1.policy has (again) no effect on the users' ability to reboot and shut down the system. Even more surprisingly, adding the following to /etc/polkit-1/rules.d/20-disable-shutdown.rules has no effect at all:
    polkit.addRule(function(action, subject) {
    if (
    action.id == "org.freedesktop.login1.power-off" ||
    action.id == "org.freedesktop.login1.reboot" ||
    action.id == "org.freedesktop.login1.suspend" ||
    action.id == "org.freedesktop.upower.suspend" ||
    action.id == "org.freedesktop.login1.hibernate" ||
    action.id == "org.freedesktop.upower.hibernate"
    return polkit.Result.NO;
    As a result, ordinary users (not in the wheel group and with no special permissions) can simply reboot the machine by typing reboot. I remember that a simple polkit rule (as proposed on the Fedora forum) worked fine just a few months ago, but this doesn't work nowadays. The action IDs mentioned there are no longer listed in pkaction, so it's quite obvious that some changes (and bugs) have been introduced since then. I just need to prevent the users from rebooting the machine and to keep policykit installed. Is there any way to do this?

    karol wrote:Do said users have the ability to push the Power or Reset buttons?
    No, they don't.
    But come on, access permissions are a matter of principle rather than a matter of what you can possibly do with a hammer in your hand. That makes your question somewhat irrelevant to this issue. Imagine someone asking: "How can I protect my home directory from access by other users?" You would then probably ask: "Do said users have the ability to pull out the hard drive and mount it on their computer?"
    Even if the users had physical access to the ACPI buttons, rebooting the computer by mistake (via software) would still be much more likely than pressing (or even holding) the ACPI buttons by mistake.
    If I call rm -Rf / as a normal user, nothing should happen to the system in terms of availability to other users. Only my home directory and temporary files would vanish, but that's all. This is what permissions are there for. Similarly, when I type reboot as a normal user (no matter if I'm on SSH, on a local terminal or logged into KDE), it should be possible to simply disallow rebooting.
    The idea that users logged in locally can restart the computer may be fine for laptops under certain conditions, but it is a bad idea in almost all other cases. In a "kiosk" type environment, for example, the ability to reboot and get to the bootloader can be a huge security hole, unless all your disks are encrypted, and a huge "reliability hole" in any case. Suppose you use a desktop as a home server. You want everyone to be able to log in and to connect a USB flash drive (using polkit and udisks). But you simply don't want the machine to be rebooted. Why is such a simple thing so hard to do?
    Last edited by andrej.podzimek (2014-03-10 02:15:35)

  • Any way to store websites outside of iweb?

    I have built a few websites in iweb including one that has pics of my daughter's field hockey games for the entire fall season. Even with the photo sizes reduced, the volume of pics (over 3000, yes, we went a little nuts) is huge and is really slowing down everything I am doing in iweb.
    So is there a way to store the files somewhere else so that they are not clogging everything up?
    (I did already post the site to my server, but I can't use those files if I want to make any changes.)
    Thanks!
    Alison

    Alison:
    See the end of this description for how to separate a domain file with multiple sites into multiple domain files each with one site:
    I use iWebSites to manage over 75 individual sites. It lets me create multiple sites and multiple domain files.
    *+THIS IS THE PART I'M REFERRING TO+:*
    If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites. Be sure to make a backup copy of your original Domain.sites files before starting the splitting process and move it to another location on your HD until you're satisfied the separation process is completed and what you want.
    This lets me edit several sites and only republish the one I want.
    OT

  • Any way to give Help Desk Users access to tickets by Category?

    As far as I know, there's just no way to do this.  The user roles are not very flexible and really don't provide any middle ground by design.  You can either see all tickets or you can see only tickets assigned to you.

    So we have our first level Help Desk people that get ALL the tickets that come in.  They are Help Desk Admins as they route things around and manage the system.
    We also have our Database team that we sometimes have to assign tickets to.  We don't want them to see all the tickets so I think I have to set them as Help Desk Users.
    Based on the documentation, this means they won't see anything except what's already assigned to them personally.
    What we'd like to be able to do is create a Category called Database and set the Database users up so they can see their own tickets and any ticket that's assigned to the Database Category.  Is there any way to do this or an alternative way that we can accomplish the same end result?
    Thanks.
    This topic first appeared in the Spiceworks Community

  • Any way to downgrade only one user's account?

    My son's school has informed us that we need to downgrade Firefox to version 3.5 in order for him to be able to use PowerSpeak for his German lessons. I do not feel safe in doing this. Is there any way to just change the version of the browser on one user's account, instead of on my entire computer?

    It gets a bit complicated when doing that; all users are affected when it comes to the "default browser" being the last installed version. Your best course of action is to install an older version of Firefox Portable in that one user account, as the Portable version installs in its' own folderset and doesn't write to the Windows Registry.
    http://portableapps.com/apps/internet/firefox_portable/localization#legacy35

  • Wrt54g - any way to block selected wireless users for a limited time ?

    i work with info on the internet. i share my internet connection with my sister (lives in the same building), but sometimes i try to access some page in the middle of the night and she is downloading videos or music and i get a veeeery slow connection. Is there any way to drop her wireless connection for a limited time without having to change the routers password ?
    thanks

    hi.. 
    i think yOu can block other wireless computers by permitting selected wireless computers only to connect to yOur network...
    its the MAC filter feature(allow all) on yOur router then enter the MAC address of the wireless computers that yOu want to connect to yOur network....

  • Is there any way to store data larger than 4000 bytes?

    Hi,
    Could someone here know which data type to store database column size larger than 4000 bytes.
    VARCHAR2 has the limit of 4000 bytes in database column. Is there ways to store data larger than 4000 bytes?
    Thank you very much!

    CLOB
    You use the CLOB datatype to store large blocks of character data in the database, in-line or out-of-line. Both fixed-width and variable-width character sets are supported. Every CLOB variable stores a locator, which points to a large block of character data. The size of a CLOB cannot exceed four gigabytes.
    CLOBs participate fully in transactions, are recoverable, and can be replicated. Changes made by package DBMS_LOB can be committed or rolled back. CLOB locators can span transactions (for reads only), but they cannot span sessions.
    Joel P�rez

Maybe you are looking for

  • Keeps asking for authentication

    Trying to move photos from my desktop into folders, and it keeps giving me the message "The item (photo name) can't be moved because (folder name) can't be modified." Then gives me two choies: "Authenticate" and "Cancel." I enter the password and it

  • How can i read a pages file on a non apple system

    I am trying to open a file .pages on a pc.  Help

  • Displaying text in a combo box.

    Hi, i was wondering if anyone could help me finish an application i am working on. I have two forms, one inputs dat to a text file and another retrieves it. i want to display the text in a combo box and then click an event in the combo box and a desc

  • Output Determination Analysis in Std SAP

    Hi all, Is there any Output Type which doesn't have an Output Determination Analysis in standard SAP? Regards, Ravikumar

  • Dashboards in WORD

    Hello! Is it possible to insert a dashboard in a WORD document in a specific area of the page and write around it, so it looks neat?,  When I have tried, the dashboard is exported to the WORD page OK but it is not possible to manipulate its location