Unable to load any Learning Interaction

When attempting to go to the Learning Interactions menu choice from the Interactions top menu, the window that appears loads blank at first, then some of the learning interactions choices appear, but the window does not scroll down to see more samples, and when I click the insert button attempting to insert any of the choices that finally appear in the window, another small window appears saying "Not a valid widget". I have restarted captivate 8.1 on my Mac O.S. 10.9.5. several times, as well as tried this on a number of projects. Please help!
Thanks,

Which version do you use?  Is CP installed on your system, not on a network drive, and are the folders pointing to your CP-files and cache both on your system as well? Are you connected to the WWW, because there are regular updates and your system will try to download them? Do you run Captivate as administrator? Can you find the interactions, they should normally be copied to a Public folder, under 'Adobe\eLearningAssets' but I don't know where it is on Mac (using PC myself).

Similar Messages

  • Firefox is unable to load any new websites

    Every now and then after running normally for some time Firefox is unable to load any new websites. Instead I get the message "Verbinden..." (I use the German version of firefox). Internet Explorer works as usual when this happens. If I then close firefox I am unable to restart because the Firefox process is still running. Instead I have to stop Firefox running in Task Manager and then restart firefox. It usually works ok for while until it crashes again.

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Check the connection settings.
    *Tools > Options > Advanced > Network : Connection > Settings
    *https://support.mozilla.org/kb/Options+window+-+Advanced+panel
    If you do not need to use a proxy to connect to internet then try to select "No Proxy" if "Use the system proxy settings" or one of the others do not work properly.
    See "Firefox connection settings":
    *https://support.mozilla.org/kb/Firefox+cannot+load+websites+but+other+programs+can
    See also:
    *"Hang at exit": http://kb.mozillazine.org/Firefox_hangs
    *"Firefox hangs when you quit it": https://support.mozilla.org/kb/Firefox+hangs

  • Unable to load any mobile players

    I used to be able to run the emulator for flashlite 2.0 in
    flash professional 8 but for some reason it is unable to load any
    mobile players. I've checked extension manager and loaded the
    latest updates, i can see the phones in device settings but if i
    test movie a get a pop up error message
    Unable to load any mobile players.
    has anyone seen this before am i missing something?
    thanks in advance
    Greg

    hi,
    try repairing/reinstalling Flash from add/remove programs.
    // chall3ng3r //

  • In Firefox, I'm unable to load any website using cloudflare but the same sites load fine in Safari.

    Whenever I try to load any website using cloudflare in Firefox, I get this error message:
    "Error 1000 DNS points to prohibited IP. You've requested a page on a website that is on the CloudFlare network. Unfortunately, it is resolving to an IP address that is creating a conflict within CloudFlare's system."
    But the same sites load up fine with no problems in Safari. I've tried everything suggested in related support pages - cleared cache (my browser's set to do that on close anyway), cleared cookies, set to no proxy, disabled add-ons, etc. Nothing worked!
    EDIT: Just noticed that 1 cloudflare page was able to load after disabling the add-on called "Modify Headers" v7.1.1 However, I don't know if this will work for all cloud flare sites. Unfortunately, I did not keep a list of sites that didn't load, so I can't test by loading them now.

    This is the dump from my ModifyHeaders settings:
    [{"action":"Add","name":"X-Forwarded-For","value":"76.74.254.121","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"97.24.26.128","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"24.143.196.56","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"69.22.138.131","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"200.111.172.46","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"209.112.44.10","comment":"Canada","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"209.81.89.10","comment":"","enabled":true},{"action":"Modify","name":"X-Requested-With","value":"209.81.89.10","comment":"","enabled":true},{"action":"Add","name":"X-Do-Not-Track","value":"209.81.89.10","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"83.98.74.165","comment":"UK","enabled":true},{"action":"Add","name":"X-Requested-With","value":"83.98.74.165","comment":"UK","enabled":true}]

  • Unable to load any XML from JAR - Please help!!

    Hi All,
    I am a student in the final days of my degree. I have been working on my final project for some time now, an applet which converts input text to a signal plot for line encoding schemes - AMI, NRZ etc. It is pretty much finished, but one small bug threatens to scuttle the entire project! I have been searching the web all day long for answers with little success, and as the castor forum still appears to be down I am posting here. Any suggestions or advice would be greatly appreciated.
    The applet uses the castor databinding framework to load various XML data. I am using Eclipse 3.01 for development - when the program is run locally as an applet, everything works fine. When the program is bundled into a JAR file and nested into a clean folder with a html page and the jar file, when the command to read in XML is given, a NullPointerException occurs, indicating that castor was unable to access the XML files.
    Below is one of the methods used to make castor load XML data:
         public CodeSet loadCodeXML(String _codesetFilename)
              String _mappingURI = "schema/codes/codesets-mapping.xml";
              String _codesetURI = "schema/codes/" + _codesetFilename;
                    // Create a new Castor mapping object
              Mapping mapping = new Mapping();                         
            try                                                                 // Attempt to load in the selected XML character set
                 mapping.loadMapping(_mappingURI);                    // Initialize 'mapping' with the map file
                Unmarshaller unmar = new Unmarshaller(mapping); // Create a new XML Unmarshaller that uses 'mapping'
                // The line below creates a new CharSet object called _codeset and populates it with the XML data
                CodeSet _codeset = (CodeSet)unmar.unmarshal(new InputSource(new FileReader(_codesetURI)));
                // The character set was successfully loaded, so pass new CharSet object back to caller and end
                return _codeset;
            } catch (Exception e) {
                 // If an error occurs while extracting the XML data, this block will execute:
                JOptionPane.showMessageDialog(null, e);               // Display a message dialog containing the exception error
                return null;                                             // Do not return a CharSet object to caller
         }It would seem to me the problem lies within
              String _mappingURI = "schema/codes/codesets-mapping.xml";
              String _codesetURI = "schema/codes/" + _codesetFilename;I have read that files inside a JAR can be accessed in this way ( http://archive.codehaus.org/castor/user/msg00025.html ) but it won't appear to work.
    If these are set to a full system path (outside any JAR) i.e. "/home/me/proj/schema/codes/codesets-mapping.xml", the application operates fine. Clearly this is no good however, as the XML data must reside within the JAR package. I have tried many permutations such as "jar://schema/..." , "/schema/..", "schema/..", with no success. I have read of using InputStream and getResource methods to access files within the jar but have had no success. I have checked the schema dir is being put into the JAR archive.
    Could anyone suggest an appropriate way of loading XML files from within a JAR file in this context?
    Thanks in advance for any replies.

    Hi, me again..
    Re: mr_doghead - the filename of the file is passed from the calling function
    public CodeSet loadCodeXML(String _codesetFilename)eg loadCodeXML(ami.xml) will return a CodeSet object containing the ami xml data
    Anyway, I've manged to fix it up. The problem actually lies within castor, not my code at all. This is a known bug in castor that the dev's deemed 'not important' to fix, but I have to say the work around is EXTREMLY poorly documented online. Hence, this post is just to say how to fix it up if ne1 else is having trouble...
    To load mappings, use:
    mapping.loadMapping(getClass().getResource(_mappingURI).toString());where _mappingURI is a string such as "/xml/mapfile.xml"
    However, the unmarshalling method takes in a file object, so getResourceAsStream must be used:
    CharSet _charset = (CharSet)unmar.unmarshal(new InputSource(getClass().getResourceAsStream(_charsetURI)));Where CharSet is your custom object you are marshalling into, and _charsetURI is a relative path to your xml file.
    Ugly as hell? Very.
    Does it work? Perfectly.
    take it ez guys, time for me to go hand this sht in! ;D

  • Netweaver Developer studio completely crashed? Unable to load any WD proj-s

    Good day.
    I was working in the studio when it said, that some error happend, please restart. OK, I closed studio, then opened it, but...
    When I load it - it says "Problems occurred restoring workbench.
      Unable to restore perspective: Workspace - Resource."
    Then "Internal error has occured":
    Plugin name: Metamodel Core
    Plugin ID: com.sap.ide.metamodel.core
    Class: com.sap.ide.metamodel.core.plugin.MetamodelManager
    Method: getJavaProjectClassPaths
    Message: project has no Java Nature. projectName =  LocalDevelopmentxxxxxx.com
    Exception: org.eclipse.core.internal.resources.ResourceException: Missing project nature class for org.eclipse.jdt.core.javanature.
    That message appeared with an every attempt to load every project.
    When I try to create a new Dynpro project it gives an exception also...
    What happend? Have I to reinstall the studio?

    Kirill,
    First you need to find out if where the problem is:
    - workspace metadata files corrupted
    or
    - NWDS files have issues.
    In most cases the problem is the workspace.
    Go to Windows->Prwferences->Workbench->Workspace
    Point to a new location and restart NWDS.
    If it comes up OK, NWDS is fine and you will need just to repair/recreate the workspace.
    Сообщи результат.
    Regards,
    Slava

  • Firefox is unable to load any webpage in the security section of the Microsoft website.

    Regardless of whether I try to access the page from Google or from another page on the Microsoft website, the browser repeatedly flips without end between "connecting" to and "loading" the page. Is there some Firefox or firewall setting I should change? The security pages are accessible through Chrome and IE.

    Do a malware check with some malware scan programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Unable to Load any songs

    I got my nano about a week ago and loaded some songs on to it. After about 60 songs, it told me I was out of room. I removed all of those songs, and yet I still have a little over 3.6 GB filled. I've tried resetting it, reinstalling, all of that. I really have no idea what to do.

    Hi Maus,
    Welcome to Apple Discussions
    If it's full then the problem is with the conversion bit rate used when loading the CD into iTunes.
    Convert
    iTunes gives you the ability to convert music files from one file format to another. You can also convert a file to the same format, but use different options. For example, you can convert some high-bitrate MP3 files to a lower bitrate to fit more of them on an MP3 CD. Note that music purchased from the iTunes Music Store can't be converted.
    Search iTunes help for Convert to find instructions on how to change the bit rate to a lower setting.
    Full instructions from Apple here iTunes: About the Add to Library, Import, and Convert functions
    Regards
    Colin R.

  • Unable to load any webpages....

    So basiclly   I updated my software a day ago. And after that I couldn't connect to internet though it was from O2 but 2nd day I can't  connect to internet so I called them there isn't ap roblem with them told me to regester my phone but It has happen already on the very first time  Iswtiched with the new softaware... What else could I possibly do ?

    Hi and Welcome to the Forums!!
    I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    3) Batt Pull Reboot
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you will need to continue to work with your wireless service provider.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Formatted Windows 8 drive from the Vista dual boot, now unable to load any O/S

    I have a Vista laptop and I installed Windows 8 trial version on a different partition. Later I wanted to reinstall windows 8 so foolishly I formatted the windows 8 partition when I was logged in from Vista. Now when I start my laptop the Windows 8 screen
    pops up and attempting to repair. It goes on for hours. 
    I dont have a Windows 8 disk, I download the trial ISO and installed it. Now I tried to run my laptop's vista recovery bu it doesnt seem to work. Usually it goes to factory setting when I press ALT + F10 at the bootscreen. (I have a acer which came with
    Vista). (The recovery stuff are in a different partition which was unharmed.)
    I don't know how to recover my laptop. Please help. Is there a way to make the laptop load vista instead of trying to recover Windows 8? My Vista partition is perfect. Please help. 

    Pranav
    You cannot use a win 8 trial to repair a vista partition.  If you dont have a win 8 disk how did you install it? 
    Win 8 installs a hidden "boot" folder.
    If you have or can find a vista dvd you can delete win 8 and install vista but it has to be OEM version of vista since it came with the computer.
    There is a convoluted method using BCD to change the boot order but some foreknowledge of BCD and the computer is necessary.
    Since there is no longer support for vista this may be a good time to update to win 8 but you would have to purchase a license
    Here is a primer on BCD http://pcsupport.about.com/od/fixtheproblem/ht/rebuild-bcd-store-windows.htm
    Wanikiya and Dyami--Team Zigzag

  • My Firefox doesnt load ANY site. It tells me it is not able to connect, and the site might be to busy exc. Please help.

    I downloaded Firefox, thinking it would be better for my computer and what not. Well when I tried to use it, a screen came on saying, "Unable to connect. Firefox can't establish a connection to the server at www.google.com. The site could be temporarily unavailable or too busy. Try again in a few moments.If you are unable to load any pages, check your computer's network connection. If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web."
    Under that it has a try again button. But the button doesnt do anything besides refresh and tell me the same thing.

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    * https://support.mozilla.com/kb/Server+not+found
    * https://support.mozilla.com/kb/Firewalls

  • I am unable to load games after sync?!

    hi
    I was trying to update to IOS 5 but the operation didn't start after doign the sync oiperation
    i disconneted my Iphone from itunes - now i am unable to load any game
    thank you

    I was trying to update to IOS 5 but the operation didn't start after doign the sync oiperation
    On your iPhone tap Settings > General > About
    If it's not 5.0 then the update did not finish.
    You can re sync your apps using iTunes.
    Never disconnect an iOS device such as your iPhone when syncing with iTunes on your compter until the process is completed.

  • STILL CAN'T LOAD ANY WEBSITES IN FF, ALTHOUGH NO PROBLEMS WITH IE OR AOL. I BELIEVE I'VE TRIED EVERYTHING SUGGESTED.

    Mozilla FF page loads, but no websites whatsoever will open in FF. I've checked the No Proxy box, I've turned off my Windows Firewall. There is a Firewall for my Norton, but that's been there since day 1. One day I'm doing all of my FF things with no problem; the next morning I turn the computer on & nothing in FF will work. IE works fine; AOL works fine so my internet connection is not the issue. This is the message I get no matter what website I try to open (I also copied the troubleshooting text below this): Thank you for any help - this is truly driving me nuts!
    Unable to connect
    Firefox can't establish a connection to the server at www.aol.com.
    The site could be temporarily unavailable or too busy. Try again in a few moments.
    If you are unable to load any pages, check your computer's network connection.
    If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.
    Troubleshooting "copy text to clipboard"
    Application Basics
    Name: Firefox
    Version: 33.0.2
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0
    Multiprocess Windows: 0/1
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: AVG SafeGuard toolbar
    Version: 17.1.3.3
    Enabled: false
    ID: avg@toolbar
    Name: InfoAtoms
    Version: 1.5.0.0
    Enabled: false
    ID: [email protected]
    Name: Norton Toolbar
    Version: 2014.7.8.23
    Enabled: false
    ID: {2D3F3651-74B9-4795-BDEC-6DA2F431CB62}
    Name: PasswordBox
    Version: 1.20.0.2308
    Enabled: false
    ID: [email protected]
    Name: RealDownloader
    Version: 1.3.3
    Enabled: false
    ID: {DF153AFF-6948-45d7-AC98-4FC4AF8A08E2}
    Name: Skype Click to Call
    Version: 6.13.0.13771
    Enabled: false
    ID: {82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}
    Graphics
    Adapter Description: Intel(R) G41 Express Chipset
    Adapter Drivers: igdumd64 igd10umd64 igdumdx32 igd10umd32
    Adapter RAM: Unknown
    Device ID: 0x2e32
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16571)
    Driver Date: 2-11-2011
    Driver Version: 8.15.10.2302
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 11 (OMTC)
    Vendor ID: 0x8086
    WebGL Renderer: Google Inc. -- ANGLE (Intel(R) G41 Express Chipset Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: true
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.frecency_experiment: 1
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.upgradeBackup.latestBuildID: 20141027150301
    browser.startup.homepage_override.buildID: 20141027150301
    browser.startup.homepage_override.mstone: 33.0.2
    extensions.lastAppVersion: 33.0.2
    gfx.direct3d.last_used_feature_level_idx: 1
    network.cookie.prefsMigrated: true
    places.history.expiration.transient_current_max_pages: 103947
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    privacy.sanitize.migrateFx3Prefs: true
    Important Locked Preferences
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.7
    Version in use: 4.10.7
    NSS
    Expected minimum version: 3.17.1 Basic ECC
    Version in use: 3.17.1 Basic ECC
    NSSSMIME
    Expected minimum version: 3.17.1 Basic ECC
    Version in use: 3.17.1 Basic ECC
    NSSSSL
    Expected minimum version: 3.17.1 Basic ECC
    Version in use: 3.17.1 Basic ECC
    NSSUTIL
    Expected minimum version: 3.17.1
    Version in use: 3.17.1
    Experimental Features
    ---------------------

    An update: as mysteriously as this began last Fri., it fixed itself (apparently) today. I left my computer on when I went out early this afternoon after again trying to open all kinds of websites in FF with no luck. When I returned from my errands it was back to normal - able to open all websites again. Evidently, the firefox elves snuck into my house while I was out & fixed whatever the issue was. I'd love to know what!

  • Can't load any webpages but internet works

    I ran into an odd issue on a work computer running OS X Mavericks 10.9.2.
    Every morning when I come in, the computer is unable to load any webpages using Chrome or Safari. Other things that rely on an internet connection (but are not accessed through the browser) still work (i.e. LogMeIn Hamachi, Accessing a remote file server, etc).
    I don't think it's a DNS issue. I am able to successfully ping any website. AFP requests that rely on DNS lookup also go through. But I am unable to access any website, located on the internal network or the internet even if I know the IP address.
    I tried manually setting the DHCP settings and rotating the DNS servers. Still can't load webpages.
    I also tried restarting mDNSresponder and it still didn't work. The only thing that works is restarting the computer.
    This happens every once in a while on other computers in the office, too.
    I'm stumped. Any ideas?
    Thanks in advance.

    Log out under the Apple in the Menu bar.
    Log into Guest
    Open Safari and see if you see the same behavior
    If no, it's an issue in your User's folder.
    If yes, it's an base issue.
    Even though you are fully updated, running the combo updater can help.
    MORE INFO ON WHY RUNNING COMBO FIXES ISSUES
    Apple updates available from the Software Update application are incremental updates. Delta updates are also incremental updates and are available from Apple Downloads (software updates are generally smaller than delta updates). The Combo updates contain all incremental updates and will update files that could have become corrupted.
    Combo updaters will install on the same version as they're applying--no need to roll back or do a clean install.
    "Delta" updaters can only take you from one version to the next. For example: 10.9.3 to 10.9.4. If somehow the 10.9.3 is missing something it should have, and that something isn't changed between 10.9.3 and 10.9.4 it will still be stale after the delta update.

  • Hi i am not able to load any google sites ie gmail,orkut,youtube(login),,etc

    hi i am not able to load any google sites ie gmail,orkut,youtube(login),,etc
    when i tryied to open sites like www.gmail.com i got error msg as:
    The connection was interrupted
    The connection to www.google.com was interrupted while the page was loading.
    * The site could be temporarily unavailable or too busy. Try again in a few
    moments.
    * If you are unable to load any pages, check your computer's network
    connection.
    * If your computer or network is protected by a firewall or proxy, make sure
    that Firefox is permitted to access the Web.
    i am currently using firefox 3.6.10 so what to do to fix this pblm?

    Make sure that your security software (firewall) isn't blocking or interrupting that connection.
    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    <br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

Maybe you are looking for