Softmotion can't load examples

Hi ,
I want to open an example from Softmotion module , but i get this screen :
If you wonder if i have Softmotion module , currently installed and/or activated , i post the following images :
So i dont know why i can't open the example , any help would be appreciated!
Thanks in advance,
Regards,
Albert

Hello Albert,
These are older examples which require the NI SoftMotion Development Module. I think these two links will do a better job of explaining the difference than me.
http://digital.ni.com/public.nsf/allkb/11D158F0B442409E86257626005DCD10
http://digital.ni.com/public.nsf/allkb/C219E49C1A6F6E898625760F0052CD66
Let me know if this makes sense.
Best Regards,
Nick C.
Cardiff University

Similar Messages

  • From Labview 7.1 help, can't load example vi's

    Quick question:
    When in Labview 7.1 Help, I can no longer load example vi's. I receive a message: "An error occurred – The NI HelpServer could not be found."
    A search on the NI website finds this issue listed & a solution given for Labview version 7.0. It is suggested to:
    Solution: NI HelpServer is one of two services which open TCP/IP ports to communicate with other NI applications running on your computer, such as the NI Example Finder and the LabVIEW Help. By default, LabVIEW 7.0 will launch this service at startup, however, if it has been disabled you will get this error message. In order to enable the HelpServer, navigate to C:\Program Files\National Instruments\LabVIEW 7.0\resource\system and run the HelpServer.llb. On the front panel of the Set HelpServer Config Settings__NATIONAL INSTRUMENTS.vi you will see a boolean control to enable the server. Turn this switch on and run the VI. The LED indicator in the HelpServer.vi will turn on and you will be able to access the shipping examples from the NI Example Finder.
    One finds a HelpServer.llb / HelpServer Config Settings routine in Labview 7.1 as well, and after setting the LED green, the new error message reads:
    Error 63 occured while trying to open this example using the NI Example VI Finder.
    Help!

    Hi Targa,
    Please make sure that you are not blocking the "Port Used" by other applications or firewalls. You might also want to stop and restart the HelpServer.vi several times to access an available port.
    Let me know if you keep getting the error.
    - Philip Courtois, Thinkbot Solutions

  • How can I load an external SWF into a movie clip that's inside other movie clip?

    Hi.
    I creating my first flash (actionscript 3.0) website but I'm
    stuck with a visual effect I want to create.
    I have a window on my website called contentWindow. Every
    time you click a button this window is supposed to leave the stage,
    load the requested content and return to the stage.
    The sliding window is a movie clip with 83 frames, 21 to
    enter the stage, 21 to leave the stage again, 20 for nothing (its
    just to simulate the loading time) and 21 to return to the stage.
    Now my goal is, when the user clicks on a navigation button,
    the window exits the stage, loads an external SWF with the content,
    and then returns to the stage.
    I've the "window" movie clip with an instance name of
    "contentWindow". Inside there is another movie clip with an
    instance name of "contentLoader". The content that the user
    requested should appear inside the "contentLoader".
    Now, when the contentWindow leaves the stage, I get this
    error message:
    quote:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at rwd_fla::MainTimeline/trigger()
    If I switch
    "contentWindow.contentLoader.addChild(navLoader);" for
    "contentWindow.addChild(navLoader);" it works fine, but the
    external SWF doesn't move with the window.
    How can I load an external SWF into a movie clip that's
    inside other movie clip?

    Hi,
    Recently, I have been putting together a flash presentation.
    And I am just wondering if the following might help you, in your
    communication with the said swf file:
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE,
    onComplete);
    function onComplete(event:Event):void
    event.target.content.thinggy_mc.y -= 100;
    Not the best example, but this allows you to target a mc
    within an external swf file. I think if you look up this code, you
    will have an answer ;)
    Kind Regards,
    Boxing Boom

  • Transaction data can be loaded into the Fact table without loading the

    Transaction data can be loaded into the Fact table without loading the corresponding master data (Example : Sales analysis transaction data can be loaded without populating any of its  dimension’s master data)
    a.     True
    b.     False

    Hi Kutti,
    True - You need to select the option in the infopackage - alwyas load even if no master data exists.
    Bye
    Dinesh

  • Can we load and unload the files in the run time?

    Can we load and unload the files in the run time?
    For example there are four files named "test1.h & test1.c" and another set "test2.h & test2.c" (I attached them as attachment to this post).
    test1.h contains code:
    int variable; //variable declared as integer
    test1.c contains code:
    variable = 1; //variable assigned a value
    test1.h contains code:
    char *variable; //variable declared as string
    test1.c contains code:
    variable = "EXAMPLE"; //variable assigned a string
    So here, in this case can I dynamically load / unload the first & second group of files so that the same variable name "variable" can be used both as integer and string? And if yes, how is that to be done?
    Solved!
    Go to Solution.
    Attachments:
    test.zip ‏1 KB

    What do you mean by "dynamically"?
    If you want to have a variable that either is an int or a char in the same program run, I'm afraid your only option is to define it as a variant and assign from time to time the proper data type in the variant according to some condition. Next, every time you access the variable you must firstly check which data type is stored in it, next access it in the proper way.
    If on the other hand your option or to have a run in which the variable is an int, next you stop the program and in a following run it is a char, you may have it by using some appropriade preprocessor clause:
    #ifdef  CHAR_TYPE
    #include "test1.h";        // variable defined as a char
    #else
    #include "test2.h";        // variable defined as int
    #endif
    Next, every time you want to access the variable you must proceed in the same vay:
    #ifdef  CHAR_TYPE
      variable = "string";
    #else
      variable = 1;
    #endif
    Does it worth the effort?
    Additionally, keep in mind that this "dynamical" approach can work only in the IDE, where you can properly #define your CHAR_TYPE or not depending on your wishes: when you compile the program, it will have only one #include depending on the definition of the macro.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Can I load xml file from SWC without using @embed

    I'm developing a mobile application in which I need to load xml files from File.applicationDirectory. This works great if the xml files are part of the main application swf. But I would like to move these xml files into a SWC so they could be shared across multiple applications.
    Using FlashBuilder 4.5, when a SWC is built, I can specify files to embed in the library that are not assets (Assets Tab of Flex Library Build Path). For various design reasons, I do NOT want to embed the xml files via @embed.
    When the swc is built and I open it up using a zip utility, I see the xml files in there just fine. So they are being bundled with the SWC. But how can I load these files in my main application that does not involve using @embed? When the main application is built, the swc setting for link type is "merged into code".
    I wouldn't expect the application to automatically pull out the xml files from the swc and place them in the File.applicationDirectory on the mobile device. I've tried loading from there just in case but file.exists is false (as expected).
    I've searched the web (and continue to do so) and all the answers seem to be to use @embed. Is there another way?
    Randy

    It's actually a lot easier than you think.
    Just reference the file like any'ol URL using a path relative to the SWC's src directory.
    So if you include the file "assets/xml/some.xml", just use that same string like you would any remote resource.
    For example:
    var loader:URLLoader = new URLLoader( new URLRequest("assets/xml/some.xml"));
    I believe it would also work like this "/assets/xml/some.xml", but I prefer relative paths so the link doesnt break if moved out of the SWC...

  • How can I load a screen in a splitter control?

    Hello!
    How can I load a screen in a splitter control?
    g

    Hello Gerald
    You cannot. It is the other way around:
    You can display a splitter container on a screen.
    For an example see How to handle two hot spot clicks on one screen
    Regards
      Uwe

  • Can't load thumbnail photo from file 'BBThumbs.dat'

    Hi everybody,
    I'm developing an application on BB to take and view photo. My problem is can't load the thumbnail photos from file 'BBThumbs.dat'. I'm using code as below:
    public byte[] getThumb(String fileName) {
    String DB = fileName.substring(0, fileName.lastIndexOf('/'))
    + "/BBThumbs.dat";
    fileName = fileName.substring(fileName.lastIndexOf('/') + 1, fileName
    .length());
    if (thumbsMap == null) {
    thumbsMap = new Hashtable();
    byte b[] = null;
    FileConnection fc = null;
    InputStream in = null;
    try {
    fc = (FileConnection) Connector.open(DB, Connector.READ);
    if (!fc.exists()) {
    return null;
    byte[] temp=new byte[(int)fc.fileSize()];
    in = fc.openInputStream();
    DataInputStream is=new DataInputStream(in);
    // b = getThumbNail(first, thumbsMap, fileName, in);
    is.readFully(temp);
    b=readThumbs(temp, fileName);
    } catch (Exception e) {
    } finally {
    if (fc != null) {
    try {
    fc.close();
    } catch (Exception e) {
    if (in != null) {
    try {
    in.close();
    } catch (Exception e) {
    return b;
    please give my any idea or suggestions. Thanks 

    Try:
    !Section=Dimensions
    'Name;DimensionClass;DimensionAlias;CustomDimensionID
    SKU;Generic;;
    !Members=SKU
    'Name;DataType
    Brand1;Unspecified
    Brand2;Unspecified
    !Hierarchies=SKU
    'Parent;Child;DataStorage
    #root;Brand1;StoreData
    #root;Brand2;StoreData
    Tho I would add MemberValidForPlan#;Plan#Aggregation, where # is a number of your application which this member is valid for or even has a specific aggregation, as well
    example:
    !Hierarchies=SKU
    'Parent;Child;DataStorage;MemberValidForPlan1;MemberValidForPlan2;MemberValidForPlan3;Plan1Aggregation;Plan2Aggregation;Plan3Aggregation;UDA
    #root;Brand1;StoreData;Y;Y;Y;+;+;+;
    #root;Brand2;StoreData;Y;Y;Y;+;+;+;
    Even more as an idea use pipes, maybe.
    But you will need to say something about Aliases as well if this is a planning application.

  • 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.

  • Got "Can't load AMD 64-bit .dll on a IA 32-bit platform"error on 64-bits VM

    Hello all:
    I created a jnlp file, which includes a executable jar and a wrapped dependent jar of two DLL files inside. When I launched JWS, I received the error: "Can't load AMD 64-bit .dll on a IA 32-bit platform".
    Now the basic facts:
    1. the JVM is 64-bit:
    Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
    Java HotSpot(TM) 64-Bit Server VM (build 19.1-b02, mixed mode)
    2. I can see the extracted dll files under "C:\Users\John\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\7\6bf8cfc7-4da2ddf0-n",
    3. If I copied the executable jar file to the aforementioned location and run it, it works w/o complains.
    Also when I tried to clean the cache by clicking the "Delete Files..." button in the control Panel -> java applet, it seems not working - the files are still there.
    My OS is windows 7, the removal seems working on Win XP.
    Thanks,
    John.

    I don't know if you are still having this problem but it is related to the browser that is used to launch the JNLP file.
    Most browsers are still 32bit and use the 32bit version of the JRE. So that means when you click the link for the JNLP, from Firefox for example, it launches the 32bit version of Java because the java plugin for Firefox is still 32bit.
    Thats why it works when launching is locally because it uses the default JRE which is the 64 bit one for 64 bit operating systems (as long as it is installed).
    Hope that helps,
    Mike

  • Sax Loader example vs XSLT

    mdrake,
    your Sax Loader example in the FAQ (found here: Sax Loader example )
    is very timely. I've been working around this issue for several days.
    Like the example, I have a very large document that is really a collection of smaller documents.
    Until I read your example, I was leaning towards using XSLT to break out the smaller documents.
    The huge document would be in XML DB in one folder, but without any namespace.
    I was hoping that XSLT could be used
    a) to read that huge document,
    b) to parse out the smaller documents,
    c) to create a new file in XML DB in an output folder for each of the smaller documents in the huge document,
    d) while creating each of the smaller documents, to add a namespace reference to the document so that the document would be shredded as it is added to the output folder.
    I admit I'm a newb. Can XSLT be used for this? Any guesses as to which approach would take less elapsed time?
    Thanks

    mdrake,
    a followup question
    Your SaxLoader example at
    Sax Loader example is for 10g.
    There is a similar one for 9i and I have found a readme for the 9i version at http://www.oracle.com/technology/sample_code/tech/xml/xmldb/saxloader/StandAlone_Install.html, but it's incomplete.
    Is there a readme for the 10g? If so, I can't find it. Will you provide a link to a 10g version of the readme?
    Also, is the 10g version designed (as written) only to work inside an Oracle server, or will it work at a command line prompt under Window/Unix/Linux?
    Thanks

  • My macbook can't load java

    I am surprised to find out that all of a sudden the applet (java) can't load properly.
    Before today, 31 July, I was able to use any website that require java platform and the applet doesn't have any problem loading.  For example, I could go to a bank's website to do internet banking and transfer.  Today, I couldn't.
    I've tried many methods that I've come across in the web community but nothing is helping.
    Please help!
    Julia
    PS: My Macbook's on Lion OS and my iMac on Snow Leopard... both can't load the applet / Java platform.

    The latest drivers here:
    http://support.apple.com/kb/DL1398
    The new driver is 9.04

  • Error can't load Servlet org.apache.struts.action.ActionServlet

    Hi,
    I have SAP J2EE 6.20 installed on linux machine. I am trying to deploy struts framework based application and while deploying it..... I am getting error message:
    Error can't load Servlet org.apache.struts.action.ActionServlet : java.lang.NoClassDefFoundError: org/xml/sax/SAXException
    07 19:27:48 -  ***********************************************************
    08/10/07 19:27:48 -  Applying user role management mappings.
    08/10/07 19:27:48 -  Start updating EAR-file...D:\SAPJ2EE Client\deploying\sambodh\sambodh.ear
    08/10/07 19:28:26 -  Temp files deleted...
    08/10/07 19:28:26 -  Ear-file updated successfully for 37860ms.
    08/10/07 19:28:27 -  Start deploying ...
    08/10/07 19:30:35 -  Ear-file uploaded to server for 128047ms.
    08/10/07 19:30:37 -  Successfuly deployed! Deployment took 1953ms.
    08/10/07 19:30:37 -  WARNING : Deploy service return folowing WARNINGs:
                         Error can't load Servlet org.apache.struts.action.ActionServlet : java.lang.NoClassDefFoundError: org/xml/sax/SAXException
                          Deployment took 1953ms.
    08/10/07 19:30:37 -  ***********************************************************
    First time when I got this error, I added struts.jar in my server's <inst_dir>/alone/additional_libs/...... but then also error still exists... Do I have to start  SAP J2EE instance once again and then deploy my application?
    Can anyone help me out in this as this is very very very imp.
    regards

    Hi,
    As per your actions above I believe you have already found SAP Note 435363.
    Basically for a struts application there are no special requirements other than
    1. Make a reference to the inqmyxmltoolkit from the application that is going to use struts before the deployment
    2. Put the struts library into WEB-INF/lib of the application (struts can't be shared among applications)
    3. Deploy the application
    For making the reference you can:
    1. Telnet to the Engine (if you run it as a service and do not have access to its shell directly)
    If telnet port on the Engine dispatcher is 2323
    telnet localhost 2323
    2. Jump to the server node
    for example if the application node's cluster id is 4001
    jump 4001
    3. Execute the commands
    add deploy
    changeref -m  MyApplication library:inqmyxml
    So if it does not work, then I see two reasons possible:
    1. You are using a really old version of the 6.20 Engine - check if you are on PL41.
    2. You have misspelled the name of your application in the reference. The names are case sensitive so you need to be careful. MyApplication is not the same as myApplication or myapplication.
    Regards,
    Iavor

  • How can I load awd viewer in my swf?

    How can I load awd viewer in my swf? (awd is away builder's file extension)
    I found awd viewer example file in away builder website.
    http://awaytools.com/awaybuilder/tutorial-01/AwayBuilderTutorial01_SampleFiles.zip
    it's works well.
    but it's not working when I'm loading it to my parent swf.
    my parent swf file's code is just this.
    private function init(e:Event = null):void
    loadSWF("AWDViewer.swf");
    private function loadSWF(url:String):void
    var urlRequest:URLRequest = new URLRequest(url); loader = new Loader(); loader.load(urlRequest); addChild(loader);
    how can i solve this problem? plz help me.
    below is zip file of my swf
    https://www.dropbox.com/s/vz2c268ubzfg37k/Flash3DViewer.zip?dl=0

    LD_LIBRARY_PATH doesn't always work well on linux. Try copying the library to /usr/lib and then refreshing the cache by issuing "ldconfig -v" and verify that your library has been catalogued. If your library needs to be located in another path, you may have to edit "/etc/ld.so.conf" prior to running ldconfig.

  • Can't load com.birosoft.liquid.LiquidLookAndFeel

    I'm getting errors that state com.birosoft.liquid.LiquidLookAndFeel could not be loaded. For example, I created a simple applet and tried to view it using appletviewer:
    $ appletviewer applet.html
    Exception in thread "AWT-XAWT" java.lang.Error: can't load com.birosoft.liquid.LiquidLookAndFeel
            at javax.swing.UIManager.initializeDefaultLAF(UIManager.java:1176)
            at javax.swing.UIManager.initialize(UIManager.java:1257)
            at javax.swing.UIManager.maybeInitialize(UIManager.java:1245)
            at javax.swing.UIManager.getDefaults(UIManager.java:556)
            at javax.swing.UIManager.getColor(UIManager.java:590)
            at com.sun.java.swing.plaf.motif.MotifBorders$BevelBorder.<init>(MotifBorders.java:43)
            at com.sun.java.swing.plaf.motif.MotifLookAndFeel.initComponentDefaults(MotifLookAndFeel.java:197)
            at sun.awt.X11.XAWTLookAndFeel.initComponentDefaults(XAWTLookAndFeel.java:81)
            at javax.swing.plaf.basic.BasicLookAndFeel.getDefaults(BasicLookAndFeel.java:97)
            at sun.awt.X11.XToolkit.initUIDefaults(XToolkit.java:232)
            at sun.awt.X11.XToolkit.run(XToolkit.java:437)
            at java.lang.Thread.run(Thread.java:595)
    java.lang.Error: can't load com.birosoft.liquid.LiquidLookAndFeel
            at javax.swing.UIManager.initializeDefaultLAF(UIManager.java:1176)
            at javax.swing.UIManager.initialize(UIManager.java:1257)
            at javax.swing.UIManager.maybeInitialize(UIManager.java:1245)
            at javax.swing.UIManager.getUI(UIManager.java:851)
            at javax.swing.JPanel.updateUI(JPanel.java:104)
            at javax.swing.JPanel.<init>(JPanel.java:64)
            at javax.swing.JPanel.<init>(JPanel.java:87)
            at javax.swing.JPanel.<init>(JPanel.java:95)
            at javax.swing.JRootPane.createGlassPane(JRootPane.java:482)
            at javax.swing.JRootPane.<init>(JRootPane.java:313)
            at javax.swing.JApplet.createRootPane(JApplet.java:134)
            at javax.swing.JApplet.<init>(JApplet.java:122)
            at MyApplet.<init>(MyApplet.java:4)
            at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
            at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
            at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
            at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
            at java.lang.Class.newInstance0(Class.java:350)
            at java.lang.Class.newInstance(Class.java:303)
            at sun.applet.AppletPanel.createApplet(AppletPanel.java:721)
            at sun.applet.AppletPanel.runLoader(AppletPanel.java:650)
            at sun.applet.AppletPanel.run(AppletPanel.java:324)
            at java.lang.Thread.run(Thread.java:595)I also get the same errors when trying to open Netbeans 5.0.
    I'm using SuSE 10.1.
    java -version shows:
    $ java -version
    java version "1.5.0_07"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_07-b03)
    Java HotSpot(TM) Client VM (build 1.5.0_07-b03, mixed mode, sharing)Any idea what's causing this?
    - Keith

    I have this problem too. I'm trying to start a .jar archive (jasmin assembler interpreter), but nothing helped. I started with -cp /usr/share/java linked the liquid*.jar to the current directory, but still the same error(s).
    java -jar Jasmin-RC3.jar -cp $CLASSPATH:./liquidlnf.jar:/usr/share/java
    java -jar -cp $CLASSPATH:/usr/share/java/liquidlnf-0.2.6.jar Jasmin-RC3.jarI don't get it. Why doesn't it work ? :-(

Maybe you are looking for

  • Problem with memory card slot on nokia c5 03

    Sir, I have a Nokia C5 03 from the last 8 months..... Working very well. Recently, my memory card stopped working. I thought that there might be a problem in the memory card and bought a new one. Even though i inserted new card in my phone, i am gett

  • GarageBand (4.1.2) only allows 1 software track using Korg MicroStation Plug-in Editor as software sound generator.

    I'm using a Korg Microstation with GarageBand (4.1.2,2008), and installed the included plug-in editor to create software-based tracks per instructions. The first (default, grant piano) track allows me to select the Korg Microstation as the sound gene

  • Charset in Linux???

    hi! I have some problems with special german letters like �,�,�,� and so on. I use RedHat Linux. I want to program a class which replaces these character in a String with the replaceAll function, but when i compile this class it doesn�t work! All the

  • Restore original icons?

    I had been using Candybar free preview, didn't want to pay the $30, and now, well after the 2 week preview, I cannot restore my original icons. I've tried "command x".  What am I missing?  I have been pouring thru the FAQ's and I'm fed up.  I *will*

  • CMC Authentication takes 15 minutes to display

    Why is it taking 15 minutes or more to bring up the Authentication pop-up window in the CMC? I just click on the Authentication "lock" icon and select Windows AD and a blank page page with "Loading" appears and then it sits - 15+ minutes before it po