"1046: Type was not found" for a custom class calling a custom class

This should be easy... but I've spent two days on nothing but this error.... I am absolutely at my wit's end.
Basically, I've got a "character" container linked to a MovieClip in the library that is supposed to act as a container for various body parts; head, shirt, pants, etc. For simplicity, I've just got Character class and Head class, both in a "char" package, both classes are named the same as their respective files (Character.as and Head.as, both in an actual file called "char"). Character class is supposed to create an instance of Head, but I always get this 1046 error. The problem is that I've got other body parts with nearly identical classes that ARENT throwing a 1046 error and are working just fine. I went and made a new project to see if I was still having the problem with just character calling 1 simple body part. I do.
In the symbol properties, it's Exported for Actionscript & Export in Frame 1... the class is "char.Head" and "char.Character" respectively. I have tried everything I can find or think of, I've done dozens of Google searches and sifted through dozens of forums. I can't find anything and I've been working on this problem for 24 straight working hours now. I'm completely exasperated......
package char {
import flash.display.MovieClip;
import flash.display.Stage;
import flash.display.Sprite;
import flash.events.Event;
import flash.geom.ColorTransform;
import fl.motion.Color;
import char.Head;
public class Character extends MovieClip {
// 1046: Type was not found or was not a compile-time constant: Head
private var _head:Head;
// reference to get the stage later
private var stageRef:Stage;
public function Character(stageRef:Stage=null) {
trace("NEW CHARACTER");
//1180 Call to a possibly undefined method Head;
_head=new Head();
And here's the contents of Head.as
package char {
import flash.display.MovieClip;
import flash.events.Event;
import flash.display.Stage;
import flash.geom.ColorTransform;
public class Head extends MovieClip {
private var skin_type:uint;
public function Head() {
trace ("NEW HEAD");
Now if I declare the head variable and create a new instance of it in my document class, no problem whatsoever. If I do it in my Character class, it just doesn't stop giving me this error!!! Somebody please help me.
1046: Type was not found or was not a compile-time constant: Head
1180 Call to a possibly undefined method Head;

There is a blank movieclip named Character in the library, yup.
Also in my main handler for my document class calls "mainCharacter = new Character(); "
Here's a chunk of the code from the document class. For the record, it calls "head" as just a test and that works fine. Just doesn't work in "Character"
import char.Character;
import char.Head;
public class MainHandler extends MovieClip {
private static var _instance:MainHandler;
public static function get instance():MainHandler { return _instance; }
public var mainCharacter:Character;
public var head_:Head;
public function MainHandler() {
_instance = this;
mainCharacter = new Character();
head_=new Head();

Similar Messages

  • Error 1046: Type was not found or was not a compile-time constant: Component Event.

    Hi Everyone..
    I am getting an Error 1046: Type was not found or was not a compile-time constant: Component Event.
    The ComponentEvent class has been imported,and also the event handling code is there. I am not sure what else is wrong, hope somebody can advise me. Thanks. The code is below, the point where the error occurs as indicated by the compiler has been highlighted.
    package 
    import flash.display.Sprite;
    import flash.media.Camera;
    import flash.media.Microphone;
    import flash.media.Video;
    import fl.controls.TextArea;
    import fl.controls.Button;
    import fl.controls.TextInput;
    import flash.events.SyncEvent;
    import flash.events.MouseEvent;
    import flash.events.FocusEvent;
    import flash.net.SharedObject;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.events.NetStatusEvent;
    import flash.events.FocusEvent;
    import flash.events.ComponentEvent;
    public class VideoChat extends Sprite
      private var button:Button;
      private var text_so:SharedObject; 
      private var textArea:TextArea;
      private var textInput:TextInput;
      private var chatName:TextInput; 
      private var nc:NetConnection;
      private var nsOut:NetStream;
      private var nsIn:NetStream;
      private var rtmpNow:String;
      private var msg:Boolean; 
      private var cam:Camera;
      private var mic:Microphone;
      private var vid:Video;
      public function VideoChat ()
       //Set up UI
       textArea = new TextArea();
       textArea.setSize(500,280);
       textArea.move(20,54);
       addChild(textArea);
       textInput = new TextInput();
       textInput.setSize(500,24);
       textInput.move(20,340);
       textInput.addEventListener(ComponentEvent.ENTER,checkKey);
       addChild(textInput);
       button = new Button();
       button.width=50;
       button.label="Send";
       button.move(20,370);
       button.addEventListener(MouseEvent.CLICK, sendMsg);
       addChild(button);
       chatName = new TextInput;
       chatName.setSize (100,24);
       chatName.move (80,370);
       chatName.text="<Enter Name>";
       chatName.addEventListener (FocusEvent.FOCUS_IN, cleanName);
       addChild(chatName); 
       //Connect
       rtmpNow="rtmp:/VideoChat ";  
       nc=new NetConnection;
       nc.connect (rtmpNow);
       nc.addEventListener(NetStatusEvent.NET_STATUS,doSO);
       cam = Camera.getCamera();
       mic=Microphone.getMicrophone();
       //Camera Settings
       cam.setKeyFrameInterval(15);
       cam.setMode (240, 180, 15, false);
       cam.setMotionLevel(35,3000);
       cam.setQuality(40000 / 8,0);
       //Microphone Settings
       mic.gain = 85;
       mic.rate=11;
       mic.setSilenceLevel (25,1000);
       mic.setUseEchoSuppression (true);
       //Video Setup
       vid=new Video(cam.width, cam.height);
       addChild (vid);
       vid.x=10, vid.y=20;  
       //Attach local video and camera
       vid.attachCamera(cam);  
      private function doSO(e:NetStatusEvent):void
       good=e.info.code == "NetConnection.Connect.Success";
       if(good)
        //Set up shared object
        text_so=SharedObject.getRemote("test", nc.uri, false);
        text_so.connect (nc);
        text_so.addEventListener(SyncEvent.SYNC, checkSO);
      private function checkSO(e:SyncEvent):void
       for (var chung:uint; change<e.changeList.length; chng++)
        switch(e.chageList[chng].code)
         case "clear":
          break;
         case "success":
          break;
         case "change":
          textArea.appendText (text_so.data.msg + "\n");
          break;
      private function cleanName(e:FocusEvent): void
       chatName.text="";
      private function sendMsg(e:MouseEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      private function checkKey (e:ComponentEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      //Create NetStream instances
      private function checkConnect  (e:NetStatusEvent):void
       msg=e.info.code == "NetConnection.Connect.Success";
       if(msg)
        nsOut=new NetStream(nc);
        nsIn=new NetStream(nc);
        //NetStream
        nsOut.attachAudio(mic);
        nsOut.attachCamera(cam);
        nsOut.publish("camstream");
        nsIn.play("camstream");

    Hi Guys...
    I have found out what is wrong. I was importing the wrong package the correct one should have been:
    import fl.events.ComponentEvent;
    instead of
    import flash.events.ComponentEvent;
    I hope this is helpful for anyone caught in a simillar situation as me...Thanks..

  • Trouble adding a web url link to an existing file: 1046: Type was not found or was not a compile-time constant:

    Hi There,
    We're trying to add a simple link to an existing Flash file. There looks to be at least 7 separate .as files and a separate swf that loads the main swf which all seems overly complex for what is essentially a page with six buttons on it.
    However, we need to add a URL to some of the text. So we converted the text to a button, added an instance name of <ssbpurchasetickets_btn> then added the following Actionscript into the actions layer on the frame the text/button appears:
    ssbpurchasetickets_btn.addEventListener(MouseEvent.CLICK, ssbButtonPurchase);
    function ssbButtonPurchase(event:MouseEvent):void
    navigateToURL(new URLRequest("http://www.url.com/tickets.html"));
    When we publish the file we get the following error which seems to cascade into a whole bunch more errors:
    Description: 1046: Type was not found or was not a compile-time constant: MouseEvent.
    Source: function ssbButtonPurchase(event:MouseEvent):void
    We added "ssb" onto the button and functions to ensure there were no conflicts but the same thing occurred. If we copy the button into a new file everything works so it must be conflicting with something in the main files.
    Any help would be MUCH appreciated!!!!
    Cheers

    Thanks for the reply Ned,
    The file is set to use AS3 and I'm pretty sure the original should be set to AS3 as the .as files look like AS3 syntax to me - here's a sample:
    protected function handleWwrdButtonClick(e:ButtonEvent):void {
    Browser.open(globalVar.xml.wwrd.item[0].@url, globalVar.xml.wwrd.item[0].@target);
    OmnitureTracker.trackFeaturedContentClick('http://www.url.com/movies/international', 'wwrd_button');
    timer.stop();
    timer.removeEventListener(TimerEvent.TIMER, onTimer);
    I'm wondering if all the Actionscript has be placed into one of the .as files as there isn't any Actionscript in the Flash project - a part from the odd stop()
    Really stuck on this one (I'm not an expert at all) so any help in deciphering the project would be much appreciated.
    Cheers

  • 1046: Type was not found or was not a compile-time constant: Event.

    I am more than a little frustrated.  I'm using Flash Professional CS5.5, attempting to publish ActionScript 3.0 for FlashPlayer 10.2
    My code begins with:
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.events.KeyboardEvent;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    Then much later I have:
    teamFourCar_mc.addEventListener(Event.ENTER_FRAME, trackPosition);
    function trackPosition (event:Event)
    and I keep getting a compiler error:
    Scene 1, Layer 'actions', Frame 1, Line 434
    1046: Type was not found or was not a compile-time constant: Event.
    I have imported the class "Events".  I have successfully used the same construction in other scripts... in fact, virtually the same construction is included in Code Snippets as Fade In and Fade Out.  Adding ":void" after (event:Event) makes no difference.  I have Googled - to no avail - and spent the better part of a day reading through the on-line help files, but the solution is still eluding me.
    It's probably so simple I'm going to smack myself in the forehead and mutter "Duh!" when I find a solution...
    If you can do anything to hasten that event (no pun intended) I (with the possible exception of my forehead) will be very grateful.
    TIA
    Terry

    Sinious:
    The entire code of the main movie clip is at http://pastebin.com/JYfLUhh1
    A sample of one of the four "problem" movie clips is at http://pastebin.com/gQGDyngx
    There is nothing wrong with the "problem" clip.  The problems are in the main movie clip:
    Scene 1, Layer 'actions', Frame 1, Line 427
    1046: Type was not found or was not a compile-time constant: Event.
    Scene 1, Layer 'actions', Frame 1, Line 612
    1046: Type was not found or was not a compile-time constant: Event.
    Scene 1, Layer 'actions', Frame 1, Line 1819
    1046: Type was not found or was not a compile-time constant: Event.
    There are the only three occurrences of a function with (event:Event).  Two are ENTER_FRAME (427 & 1819) The other is COMPLETE from Loader.info
    Auto format reported a syntax error "near 'if(movingCar.currentFrame == (dieRoll * 24) + movingCarPosition)' " but I can't detect what, if anything, is wrong with it.
    I'm not an experienced developer... in fact, the last programming I did before taking up Flash three months ago was with QuickBasic under DOS 6.2... therefore, please try not to roll your eyes too much when you see how inelegant the code is.
    I have a working version, but it's over 7,000 lines and a memory hog.  I'm trying to make it more elegant and more efficient.  BTW, the three (event:Event) functions are in the working version in more or less the same places, with the same calling code.
    I hope you can figure it out.
    Thank you in advance

  • Help! "1046: Type was not found or was not a compile-time constant:TimerEvent."

    I am getting the followiing error in my main document class:
    "1046: Type was not found or was not a compile-time constant:TimerEvent."
    It's showing in line 47 and 54 (in red below). Any help would be appreciated. BTW, this is my first time creating a main document class since graduating to class files!:
    package
        //**************** IMPORT STATMENTS *********************
        import flash.display.MovieClip;
        import com.greensock.TweenLite;
        import flash.utils.Timer;
        public class Main extends MovieClip
            //***************** Variables ***************************
            /*private var appStoreURL:URLRequest = new URLRequest("http://itunes.apple.com/us/artist/quackenworth/id518210161");
            private var facebookURL:URLRequest = new URLRequest("http://www.facebook.com/quackenworth");
            private var twitterURL:URLRequest = new URLRequest("http://www.twitter.com/quackenworth");*/
            private var MainScene:Main = new Main();
            private var PopUp_MoreApps:MoreApps_mc = new MoreApps_mc();
            private var PopUp_About:About_mc = new About_mc();
            //*****SPLASH SCREEN ***
            private var mc_timerSplash:Timer;
            private var splashScreen:mcSplashScreen;
            //*****************CONSTRUCTOR CODE ***********************************************************************************
            public function Main()
                mc_timerSplash = new Timer(3000,1);
                mc_timerSplash.addEventListener(TimerEvent.TIMER,  StartTimer);
                //When timer is finished stop the timer;
                mc_timerSplash.addEventListener(TimerEvent.TIMER_COMPLETE, timerCompleted);
                splashScreen = new mcSplashScreen();
                 addChild(splashScreen);
                splashScreen.x = stage.stageWidth / 2;
                splashScreen.y = stage.stageHeight / 2;
                mc_timerSplash.start();
            //*********** FUNCTIONS *********************************
            private function timerCompleted(e:TimerEvent):void
                    mc_timerSplash.stop();
                    mc_timerSplash = null;
            private function StartTimer(e:TimerEvent):void
                TweenLite.to(splashScreen, 1, {alpha:0, onComplete: SplashScreen});
            private function SplashScreen():void
                removeChild(splashScreen);
                addMainScene();
            private function addMainScene():void
                addChild(MainScene);
                MainScene.x = 489;
                MainScene.y = 350;
                //TweenLite.from(MainScene.wbbIntro_mc, .5, {alpha: 0});
                TweenLite.from(MainScene, 1, {alpha:0});
                TweenLite.to(MainScene.girls_mc, 1, {y:395, delay:.3});
                TweenLite.to(MainScene.boys_mc, .5, {y:396, delay: .6});
                TweenLite.to(MainScene.Joe_mc, .5, {y:339, delay: 1});
                TweenLite.to(MainScene.Paul_mc, .5, {y:322, delay:1.2});
            private function removeMainScene():void
                removeChild(MainScene);
                TweenLite.to(MainScene.girls_mc, .1, {y:690});
                TweenLite.to(MainScene.boys_mc, .1, {y:693});
                TweenLite.to(MainScene.Joe_mc, .1, {y:636});
                TweenLite.to(MainScene.Paul_mc, .1, {y:619});

    Now that the error is solved, when I test nothing happens. I just get a blank screen.
    What is supposed to happen? When the program opens a splash screen should be added for 3 seconds and then fade out. Then some main screen movie clips should be added to the stage.

  • ActionScript 3 Error: 1046: Type was not found or....

    Hi,
    I am completely new to Flas and AS3. I am trying to create an opacity slider using the slider component. I foudn a similar tutorial and tried to alter it to fit my opacity needs. In line 8 (function opacityChange (event:SliderEvent):void{) I get the error message 1046. When I test it in Flash the slider flickers on and off very rapidly too. Though I have searched, I am clueless as to what the problem is.
    Any help will be appreciated.
    Thanks!!
    importfl.events.SliderEvent;
    percent_txt.text = "Opacity %:0";
    slider.value = 0;
    slider.addEventListener(SliderEvent.CHANGE,opacityChange);
    function opacityChange (event:SliderEvent):void{
              percent_txt.text = "Opacity %: " + event.target.value;
              logo.alpha = event.target.value;

    I am trying to duplicate the slider event for additional sliders and run into a 5000: The class ... must subclass 'flash.display.MovieClip'
    Any advice? (I know I need to take a class)
    And thanks again.
    import fl.events.SliderEvent;
    skinPercent_txt.text = "Opacity %:100";
    skinSlider.value = 1;
    skinSlider.addEventListener(SliderEvent.CHANGE,opacityChange);
    function opacityChange (event:SliderEvent):void{
              skinPercent_txt.text = "Opacity %: " + event.target.value*100;
              skinLayer.alpha = event.target.value;
    superfPercent_txt.text = "Opacity %:100";
    superfSlider.value = 1;
    superfSlider.addEventListener(SliderEvent.CHANGE,opacityChange);
    function opacityChange (event:SliderEvent):void{
              superfPercent_txt.text = "Opacity %: " + event.target.value*100;
              superfLayer.alpha = event.target.value;

  • Type was not found or was not a compile-time constant?

    Hi guys,
    I'm going nuts. I've got this movieclip that I made into a
    button with ActionScript. When clicked, it
    should go to a frame in my main timeline labeled "beansbus",
    but whenever I try to test the movie out, Flash
    gives me this error:
    1046: Type was not found or was not a compile-time constant:
    bus.
    I've looked around on the internet and I've been told that
    this error can
    crop up if the instance name is the same as a library object.
    That WAS the
    problem, but I renamed the library object to Cutebus, so that
    should have fixed it, I hope. There was another fix that involved
    something called TextFields in my movieclip, but I don't have
    those...
    My code looks like this, which was copied and pasted from an
    in-class tutorial that DOES work, with no problems.
    Thanks in advance for any light you can shed on this.

    actually the error:
    quote:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference. at
    beans_fla::MainTimeline/frame1()[beans_fla.MainTimeline::frame1:3]
    may not obviously give the line number at first
    glance, but it does! 'frame 1:3' refers to frame 1, line 3. which
    if your code post was accurate to line numbers, refers to:
    quote:
    bus.stop();
    so i'd suggest looking at your bus clip and
    ensuring that you have correctly defined its instance name. Also,
    make sure you have this correctly defined in each keyframe that the
    clip appears.

  • LineChart: file type was not found

    Hello community,
    I tried an example of adobe where LineChart is used for displaying a chart, it can be found there: http://livedocs.adobe.com/flex/3/langref/mx/charts/LineChart.html#includeExamplesSummary
    When I tried to build the example with FlashDevelop I got the error message
    file type was not found or was not a compile-time constan: LineChart
    The same for AreaChart. Can someone help me with that? I tried the Flex SDK 3 and also the Flex SDK 4.
    With kind regards
    Sebastian

    The charting components are not a part of the open source SDK, the charting
    components come along with Flex Builder Pro

  • LIBOVD ERROR  - "validateContextToken: workflow session was not found for given context. Create a new workflow session with token"

    Hello everyone,
    I have the following scenario:
    We're using "Oracle SOA Suite 11g 11.1.1.7.0" (Patched w/ 17893896) mainly for a BPM/Human workflow composite. Former, we were having the error bellow:
    <Mar 16, 2015 1:13:03 PM BRT> <Error> <oracle.soa.services.workflow.query> <BEA-000000> <<.> Verification Service cannot resolve user identity. User weblogic cannot be found in the identity repository. Workflow Context token cannot be null in request.
    ORABPEL-30511
    When that error ocurred, no one was able to use the system (BPM/Human Workflow).
    I opened an SR, and after some analysis from the support, it recommended me to set up "virtualize=true" in EM, and restarting the domain. Then it started logging the following:
    connection to ldap://[10.200.10.57]:7001 as cn=Admin.
    javax.naming.NamingException: No LDAP connection available to process request for DN: cn=Admin.
    Looking up on support KB, I found this note Doc ID 1545680.1 and increased from Max size of Connection Pool 10 to 200. That did work successfully! Problem now is that the <SERVER>_diagnostic.log is being filled up with the following error:
    [2015-03-31T16:03:46.421-03:00] [soa_server2] [ERROR] [] [oracle.soa.services.workflow.verification] [tid: [ACTIVE].ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: e0194e38aa6c9a2f:39fc1ff9:14c5def5247:-8000-00000000000a5653,0] [APP: soa-infra] <.>    validateContextToken: workflow session was not found for given context. Create a new workflow session with token=51490173-e3d0-41dd-ae99-983915aa8454;;G;;Z+P7Oe9ABnoTUQD9ECryEW2l0/8yRcqPDyZsOWBCuzMmRgA3Qsj601TxmWQ87z2MjuwW5AH+KzgjIwkPmhJFdpc1FrE6Y/MrN1bxIDHJWu2/zP3iSNwKD07hRrh/U37Ea0TvaQyuaHJIog9y3Ptmzw==
    One important point is that we're using only the embedded WLS ldap. So I am not 100% sure if we should be using the virtualize flag=true, once all docs I read point out that this should be done when using multi-ldap providers.
    Also, I only got this error in the "diagnostic.log".
    Although, no user has complained about using the system, I really want to work it out. Anyone has any suggestions?
    Thanks in advance!

    I have moved your thread from Certification to SOA Suite to get proper assistance.
    Thanks,
    Lisa

  • Contract Terms-Document sequence was not found for generating clause number

    Hi All,
    I am in very strange situation and not able to find out the solution for below problem.
    when i am trying to create clause number from Contracts Terms --> Contract Terms Library : Clauses , i found below error.
    " Document sequence was not found for generating clause number. Check the document sequence setup."
    where i have setup the document sequence setup? Please help me how to resolve this issue.
    Thanks in advance.
    Edited by: user627525 on Feb 8, 2011 7:25 AM

    Hi,
    I have the same error when trying to create clause number from Contracts Terms --> Contract Terms Library : " Document sequence was not found for generating clause number. Check the document sequence setup."
    Would you like to tell me how did you solve it, please?
    Regards,
    tinar

  • Simulation engine failed to start: A valid license was not found for simulation

    Hi,
    I'd like to run xsim by clicking "Run Simulation" in Vivado 2015.2 . However, in the Tcl console I see this error:
    INFO: [Common 17-186] '/home/rob/xilinx-projects/bright_proj/bright_proj.sim/sim_1/behav/xsim.dir/ProgNetwork_behav/webtalk/usage_statistics_ext_xsim.xml' has been successfully sent to Xilinx on Mon Jul 13 16:01:02 2015. For additional details about this file, please refer to the WebTalk help file at /home/rob/sw/xilinx/xilinx-build/Vivado/2015.2/doc/webtalk_introduction.html.
    INFO: [Common 17-206] Exiting Webtalk at Mon Jul 13 16:01:02 2015...
    run_program: Time (s): cpu = 00:00:08 ; elapsed = 00:00:10 . Memory (MB): peak = 6669.582 ; gain = 0.000 ; free physical = 763 ; free virtual = 18006
    INFO: [USF-XSim-4] XSim::Simulate design
    INFO: [USF-XSim-61] Executing 'SIMULATE' step in '/home/rob/xilinx-projects/bright_proj/bright_proj.sim/sim_1/behav'
    INFO: [USF-XSim-98] *** Running xsim
    with args "ProgNetwork_behav -key {Behavioral:sim_1:Functional:ProgNetwork} -tclbatch {ProgNetwork.tcl} -log {simulate.log}"
    INFO: [USF-XSim-8] Loading simulator feature
    Vivado Simulator 2015.2
    ERROR: [Simtcl 6-50] Simulation engine failed to start: A valid license was not found for simulation. Please run the Vivado License Manager for assistance in determining which features and devices are licensed for your system.
    Please see the Tcl Console or the Messages for details.
    However, if you look at the attached image, you'll see that my installed licenses include the license name "Simulation".
    Why is Vivado complaining about "Simulation engine failed to start: A valid license was not found for simulation" ?
    Thank you,
    Rob
     

    Hi Rob,
    The reason for the license error is: Hostid mismatch. i.e., the hostid of the machine is different from the hostid in the license file.
    I observe that the license file is generated with hostid: 52540019ee7e. You can cross check your hostid of the machine by running the command: lmutil lmhostid
    You can rehost the license file using the steps mentioned in the section "Rehost or change the license server host for a license key file" in the following user guide: http://www.xilinx.com/support/documentation/sw_manuals/xilinx14_5/irn.pdf
    Thanks,
    Vinay

  • The type library information for 'TestStand IVI Step Types' was not found (Error code: -18351)

    Hi,
    I get the error in the message subject when I add an IVI-C step (no matter IVI Power Supply, IVI Dmm or others) and try to edit the step by pressing Ctrl+E (or double-click the step and click "Edit IVI Power Supply" for instance).
    I have installed 2 IVI-C libraries that I downloaded from 'NI idnet' both with IVI technology (namely agn330xa_MS.msi and agn6700_MS.msi). They can both be seen in Add/Remove programs under "NI IVI Specific Drivers" group.
    The error message says "Make sure the server is registered".
    Does anybody know what server is it complaining about and how can the registration be done?
    Regards,
    S. Eren BALCI
    www.aselsan.com.tr
    Attachments:
    error 18351.jpg ‏66 KB

    Hi ebalci,
    I believe this error is occurring because the ActiveX components that are used by the IVI step types are either not properly installed or not properly registered.  I would recommend first making sure that the IVI compliance package and NI-VISA are installed on the system.  If both of these are already installed, I would recommend running the TestStand Version Selector because this should re-register the ActiveX components used by the IVI step type.  The TestStand Version Selector can be found by going to the Start Menu>>Programs>>National Instruments>>TestStand 3.5.  You will need to select the version of TestStand you want to use and click the "Make Active" button.  I have also pasted links below to VISA and the IVI compliance package.  Hope this helps!
    NI-VISA
    IVI Compliance Package
    Pat P.
    Software Engineer
    National Instruments

  • [Common 17-345] A valid license was not found for feature 'Implementation' and/or device 'xc7z045'.

    Theimplementation feature and the whole flow was working smoothly until recently wehtn the error popped up. When I checked the license status it is still valid. I tried returning the license (with the hope to generate a fresh one), this is not going through as I see "Invalid option specified" message. I realized that the trusted storage itself was having problems. The issue that I was facing was very much similar to what is explained in the below discussion:
    http://forums.xilinx.com/t5/Installation-and-Licensing/Vivado-License-Manager-will-not-allow-me-to-return-license/td-p/527697
    I followed the steps as in above and could see trusted storage itself that was having problems. And followed the steps in the above discussion and could successfully run installanchorservice.exe
    This should have solved the issue if the trust was broken due to anchoring. This however, did not solve my issue. On further reading, I came across the below AR:
    http://www.xilinx.com/support/answers/63683.html
    Based on this I could see that there are 3 reasons for Trust getting broken.
    Binding (tampering the system parameters)
    Anchoring
    Windback
    My issue is with Binding. The NIC card got disabled for some issue and I had to run diagnostics and fix it. I strongly suspect that due to this trust is broken due to Binding.
    Attached the logs.txt from the the following commands:
    xlicclientmgr -v "format=long"
    xlicclientmgr -l
    I could not find any material on the web to restore the trust of it is broken due to binding issue. Any pointers will be really appreciated.
    Regards,
    Ravi Raju

    Yes that repaired the broken license. Than you very much for this.
    For the benifit of others:
    It was confirmed that in my case the trust was broken due to Binding. For this, you need to provide the files that you find in the discussion above and Xilinx support will provide a xml file with instructions, that you need to follow to repair the license.

  • 1046: mx:automation not found error

    I'm using Flex Builder 4.5 and there must be some configuraiton problem as my Flex project executes correctly on one machine but the other one complains about:
    1046: Type was not found or was not a compile-time constant [mx.automation]:IAutomationTablularData
    This Flex project doesn't make any references to mx.automation. I've checked through the Flex Build Path in Properties, but don't see where its referencing anything that could be causing this error.
    Thanks, Norman

    Hi Guys...
    I have found out what is wrong. I was importing the wrong package the correct one should have been:
    import fl.events.ComponentEvent;
    instead of
    import flash.events.ComponentEvent;
    I hope this is helpful for anyone caught in a simillar situation as me...Thanks..

  • Item SI_SHOWDESCONLY was not found in the collection

    To give a bit of an overview of the software I'm talking about, we have web applications that integrate crystal reporting (either BOE XI R2 or BOE XI R3.1 depending on the site). The relevant function that these sites perform is to allow the user to schedule a report which invokes the functionality through crystal to create a report scheduled to run at a specified time(s). These entries exist in the History tab of a particular report when viewed in the Central Management Console. This web application references a reporting library (DLL) that contains all the references (11.5.3300.0) to the various CrystalDecisions DLLs used to perform these functions
    We have a 2nd piece of software that runs a windows service on an application server which references the same reporting library as the web service. This service essentially cross references entries in our own database with the entries in the crystal database to see if they have processed, or reports back errors, it will "reschedule" a report if it has been deleted.
    The issue we are having is that the windows service fails with "Item SI_SHOWDESCONLY was not found in the collection" when calling the following lines of code:
    Dim ceScheduleDoc As CrystalDecisions.Enterprise.Desktop.Report
                    Dim ceSchedulingInfo As SchedulingInfo
                    Dim ceDestinationObjects As InfoObjects
                    Dim ceDestinationObject As InfoObject
                    Dim ceDestination As Destination                   
                  ceSchedulingInfo.BeginDate = dtTempDate
                        ceScheduleDoc.SchedulingInfo.RightNow = False
                        ceScheduleDoc.SchedulingInfo.Type = CeScheduleType.ceScheduleTypeOnce
                        ceDestinationObjects = ceInfoStore.Query("Select * from CI_SYSTEMOBJECTS Where SI_NAME = 'CrystalEnterprise.DiskUnmanaged'")
                        ceDestinationObject = ceDestinationObjects.Item(1)
                        Dim ceDisk As New DestinationPlugin(ceDestinationObject.PluginInterface)
    (if you need to see more of the code that happens in this method, let me know, but it's that sequence that blows up (this forum limits the amount of lines in a post, which is why i'm trying to limit what I display)
    I have a theory that the issue is that perhaps the service is trying to invoke a different version of the crystalDecisions.Enterprise.InfoStore reference, despite the fact that the project reference explicitly tells it to use 11.5.3300.0, our GAC does also include 12.0.1100.0 and 12.0.2000.0 and on some servers 10.5.3700.0.
    Is there perhaps a binding redirect occuring somewhere that I can find?? I've checked app.config and machine.config

    I will run modules utility
    but I should mention that the exact same code is run everyday by the web application to schedule reports, and calls those very same lines without issue, it's just when called from the service (on a different server) that it blows up, which is why I'm led to believe that it's an issue with the version of the DLL that it's trying to call
    i know in the web.config for the web app, you can explicitly specify that the DLL use certain versions of dlls with tags as follows:
    <system.web>
    <compilation defaultLanguage="c#" debug="true"><assemblies><add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportSource, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Shared, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Web, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Enterprise.Framework, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Enterprise.InfoStore, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Enterprise.Web, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></assemblies></compilation>
    </system.web>
    whereas the app.config for my service doesn't quite have that ability...unless it does and I don't know about it??

Maybe you are looking for

  • Excise Invoice number for Domestic and Exports

    Hi Friends, MyClient is having two types of excise invoices. One is Local and another is Export. The local excise invoices take numbers from the local number range object J_1IEXCLOC; and even the export excise invoices take numbers from the local num

  • Required jar files to execute WLSTInterpreter.execfile

    Hi,   I am trying to automate Domain creation and deployment of application via script file. I have written the commands in a file called createDomain.py. I would like to execute this script file through java code. What are all the jar files required

  • Updated Software BBC iPlayer

    I think this may have been said before but it is so bad it needs to be said again, and again... The user interface for BBC iPlayer is a dog:  It is slow and unreliable, and to add insult to injury if you don't want one of the popular choices, finding

  • Errors during process of cloning hard drive

    I recently purchased an external HD to make a backup of my internal HD , having had an OS crash which, thankfully, I was able to recover from. I am using the application, Carbon Copy Cloner, which is working very well. I cloned my internal HD to the

  • How to Increment a value automatically

    Hi, I have a table named "Tbl_Outdirection_Dtl" which contains the following fields Tbl_OutDirection_Dtl: Outyear, OUTNO, OTSERNO, DI_CODE,REPLYHDATE, INNO, INHDATE, IN_UD_UID, IN_REMARKS, SCLOSE, St_CODE, CONT_RECNUM. In this, the CONT_RECNUM is sta