Error 1046 scilab

I have:
Scilab 5.4.0 (64 bit)
Labview 2012 (64 bit)
Labview Scilab Gateway (64 bit)
Why shouldn't the scilab script work?
I get error 1046.
I tried dropping a matlab script and changing server like suggested in a post.
Thanks..
Solved!
Go to Solution.

Hello kikki,
There are two potential problems:
1) We recently discovered a compatibility issue with the LabVIEW to Scilab Gateway and Scilab 5.4.0. A fix should be available very soon.
2) This relates to your question about where LabVIEW looks for the server. LabVIEW will query the registry to determine where Scilab is installed. This is done from the HKEY_LOCAL_MACHINE\SOFTWARE\Scilab folder by querying the value of the LASTINSTALL key. It will then look in the folder specified by that key for the SCIPATH value. Unfortunately, when you install a newer version of Scilab and then uninstall an older version, Scilab removes all registry keys relating to its existence -- even though a version is still installed. If you uninstalled an older version after installing Scilab 5.4, you will need to reinstall Scilab 5.4.
Even after potentially addressing issue 2, you will still need an updated LabVIEW to Scilab Gateway. I will post here when it is available.
Grant M.
Senior Software Engineer | LabVIEW Tablets | National Instruments

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

  • FlexUnit 4.1.0-8 Error 1046

    Hi,
    I'm using Eclipse Gallieo on Mac OS 10.6.8 with the Flash Builder 4 plugin.  My project is using the Flex 4.5.0 SDK and I recently updated FlexUnit from 4.0 to 4.1.0-8.  Now when I compile I get four errors:
    1046: Type was not found or was not a compile-time constant: [flash.events]::IEventDispatcher.
    1046: Type was not found or was not a compile-time constant: [org.flexunit.async]::IAsyncTestResponder.
    1046: Type was not found or was not a compile-time constant: [org.flexunit.internals.runners.statements]::IAsyncHandlingStatement.
    1046: Type was not found or was not a compile-time constant: [org.flexunit.internals.runners.statements]::IAsyncStatement.
    I can still run my unit tests if I tell Flash Builder to ignore the errors and everything seems okay but this is a) annoying and b) indicative of something being wrong somewhere.  So my question is: what do I need to do to resolve this?  Or what could be the cause of this?

    Hi,
    My college and I have the same issue.
    On his box it will compile after a clean but not on mine.
    We are both running Win7 64 bit, Flash builder 4.5, FlexUnit 4, and Flex SDK 4.1
    Any help much appreciated...
    Errors below:
    Description     Resource     Path     Location     Type
    1046: Type was not found or was not a compile-time constant: [flash.events]::IEventDispatcher.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: [org.flexunit.async]::IAsyncTestResponder.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: [org.flexunit.internals.runners.statements]::IAsyncHandlingStatement.     CalcTests           Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: [org.flexunit.internals.runners.statements]::IAsyncStatement.     CalcTests          Unkn own     Flex Problem
    1046: Type was not found or was not a compile-time constant: AsyncResponseEvent.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: AsyncTestResponder.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: FlexEnvironmentBuilder.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: FlexMXVisualTestEnvironment.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: ISequenceAction.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: ISequencePend.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: ISequenceStep.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: SequenceBindingWaiter.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: SequenceCaller.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: SequenceDelay.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: SequenceEventDispatcher.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: SequenceRunner.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: SequenceSetter.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: SequenceWaiter.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: TextListener.     CalcTests          Unknown     Flex Problem
    1046: Type was not found or was not a compile-time constant: VisualTestEnvironmentBuilder.     CalcTests          Unknown     Flex Problem

  • Error 1046 in a class after using import

    hmmmmm, I give up. I want to use some component controls
    inside a class I have coded. I have used
    import fl.controls.RadioButton;
    but then I get a compile time error "1046 type was not found
    or was not a compile-time constant: RadioButton" on the line
    private var button1_rb:RadioButton
    What do I do?

    The component was in the library of a .swf that I was loading
    dynamically, but the class that instantiated the variable was
    itself instantiated by a .swf that did not have the component in
    the library, so I tried adding the component to the library of the
    .swf that instantiated the class that had the RadioButton variable
    in it and that solved the problem.

  • Strange error - HELP! : temp.as - Error #1046

    Hi all,
    I am converting a project to AS3. However I get a stranger
    error :
    **Error** ...\temp.as : Line 1, Column 210 : [Compiler] Error
    #1046: Type was not found or was not a compile-time constant: List.
    
    The strange thing is that THERE IS NO FILE NAMED temps.as.
    I've searched everywhere. I know that I did not create any, so
    maybe Flash 9 does it. Anyone has got an idea about that?
    Another strange thing is that after the error, instead of
    writing the code responsible for it, there is this 'À' which
    is actually followed by a square. I m a bit confused.
    Please help, thanks

    quote:
    Originally posted by:
    Nico22_be
    Another strange behavior related to that temp.as file. Since
    there is no such file, I decided to create one like this :
    package {
    class temp {}
    And to test. I then get new errors :
    **Error** \temp.as : Line 2, Column 8 : [Compiler] Error
    #1131: Classes must not be nested.
    class temp {}
    **Error** \temp.as : Line 1, Column 1 : [Compiler] Error
    #1153: A constructor can only be declared public.
    package {
    When declaring a package, you must give the path to the
    package
    package com.mysite.utilities {
    When Flash compiles, I believe it already creates a package{
    line but who knows for sure until Adobe says so. As a result, you
    cannot next base level packages which is what the error is for.
    The second error is because of your class declaration....
    it's missing a constructor
    package {
    class temp {}
    should be
    package com.mysite.tempstuff {
    class temp{
    public function temp() {
    Every class must have a "public" constructor to initialize it
    when it is called with the "new" flag.
    temp.as - this is probably an issue where Flash cannot create
    the temporary as file that it loads into the debugger when it runs
    in the dev environment.

  • I keep getting "Error 1046" messages when using Mail.app to send Gmail

    The specific error is: MCMailErrorDomain error 1046
    I'm using an early 2013 MacBook Pro with Retina display, running the latest version of OS X Mavericks. Nothing I Google brings up anything related to this, so I thought I'd pick your brains :-).
    Any idea how to fix it? I've already removed & added the account. I'm using Postbox for right now, but I'd rather use Mail.
    Thanks!

    I removed @gmail.com after my username at
    Mail->Preference->Accounts->(Select Account)->Outgoing Mail Server (Drop Down)->Edit SMTP Server List->(Select Account)->Advanced
    And then it worked. I use Yosemite 10.10
    Thank you very much for helping me resolve this annoying problem

  • Error (1046) using matlab script

    Hi ,
    im trying to use matlab script Labview , i've got matlab installed.
    when im running the VI , i'm getting an error 1046 , i tried to search the community ,
    and i've been told to check the "choose script server" , i dont know why , but i it's "grayed" ,
    and i cant change anything.

    Cobmetal,
    Looking at the following KnowledgeBase, it looks like MATLAB® may need to be registered as an ActiveX server first.
    http://digital.ni.com/public.nsf/allkb/5BECAA32D63921628625670C005BDA1A?OpenDocument
    Mathworks has good documentation about how to register MATLAB as a COM Automation server in the Windows registry when launched. I would try to do that if the option to choose script server is greyed out (Ctrl+F regserver).
    http://www.mathworks.com/help/matlab/ref/matlabwindows.html
    MATLAB® is a registered trademark of The MathWorks, Inc. Other product and company names listed are trademarks and trade names of their respective companies.
    Matt J
    Professional Googler and Kudo Addict
    National Instruments

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

  • Build project error 1046

    Hi all,
    I have a problem when I tried to include automation library in to my project.
    In project property compiler i put some compiler aguments
    -include-libraries "${flexlib}/libs/automation/automation.swc"
    when I try to rebuild my project I got error:
    Description    Resource    Path    Location    Type
    1046: Type was not found or was not a compile-time constant: <MyClassName>
    My purpose is to use RIAT Test
    Thanks,
    Kethya

    Check out your import statements relating to your previous project. If you are using ".*" everywhere, it needs a correction because .* means including all the classes under a package. For instance: import flash.text.TextField.*; to be changed as import flash.text.TextField;

  • Server 2012 R2 DHCP authentication error (1046-DHCP)

    Hello all, here is my story, hope someone can help me solve it.
    Goal :
    Getting the DHCP running on windows server 2012 R2
    Current situation :
    We have two different domains in one forest (domain-A & domain-B).
    Domain-A has several w2k8r2 servers. In Domain-A we have two server 2008 R2 domain controllers (serverA1 & serverA2). On both servers the DHCP rule is installed and running.
    Domain-B has several w2k8r2 servers. In Domain-B we have two server 2008 R2 domain controllers. Both servers don’t have DHCP server role !
    We installed 2 w2k12R2 servers (server-b1 & server-b2)  in domain-B and promoted to domain controller. We installed the DHCP server role on server-b1 & server-b2 configured the failover. The domain function lever is still w2k8r2.
    The change :
    In domain-A we unauthorized the DHCP server-A1 & server-A2 and deleted the DHCP server role.
    Restarted server–A1 & server-A2 and checked if the DHCP server role is removed.
    In domain-B we restarted server-B1 & server-B2. We authorized the DHCP on server-B1 & server-B2.
    The error :
    The DHCP didn’t go online, it gives the following error message in the event viewer (this is the only error message about the DHCP server)
    Eventid 1046, DHCP-Server
    The DHCP/BINL service on the local machine, belonging to the Windows Administrative domain Domain-B, has determined that it is not authorized to start. 
    It has stopped servicing clients.  The following are some possible reasons for this:
    This machine is part of a directory service enterprise and is not authorized in the same domain. 
    (See help on the DHCP Service Management Tool for additional information).
    This machine cannot reach its directory service enterprise and it has encountered another DHCP service on the network belonging to
    a directory service enterprise on which the local machine is not authorized.
    Some unexpected network error occurred.
    Tried solutions :
    1) checked the local network settings, the dns server is the one in the old forest (domain-A) this is correct !
    2) Checked with adsiedit.msc if there was still an entry that was looking at server-A1 & server-A2. Nothing found. 3) I unauthorized the 2 new servers (server-b1 and server-b2) I installed a new w2k12R2 server in domain-A1, installed the dhcp server role
    only. Tried to authorizes the dhcp server but the exact same error.
    looking forward to all the ideas, and the solution
    J
    Design is the Technology

    Hi,
    According to your description, when we installed a new windows server 2012 r2 in the domain A and only installed the DHCP role, the authorization was still not success. So please check if the unauthorized and authorized process was success. To verify if
    the DHCP servers have been authorized, please try to run netsh dhcp show server
    command, then we can see the DHCP server which was authorized. And you mentioned that you have checked with ADSIEdit to see if there was an entry. Yes, we can make full use of ADSIEdit. If a DHCP server was authorized successfully, there must be an
    entry about the DHCP server in the ADSIEdit. So please check if there are some entries in the ADSIEdit of all your DCs in the domain. Ensure that only one entry about this new windows server 2012 r2 in the ADSIEdit.
    If there are different in the several DCs, please try to use AD replication to make the data consistent.
    And we must log on the server as an administrator to complete this operation.
    To check the entry, please follow steps below,
    1. Start adsiedit.msc.
    2. Open the Configuration container.
    3. Expand Services.
    4. Expand Net Services.
    Best Regards,
    Tina

  • Please HELP Me With This! Error 1046!

    I cannot figure out what my problem is. When I check for errors its is not telling me any. But when I run it, it is saying: 1046: This was not found or was not a compile-time constant: home2.
    import flash.events.MouseEvent;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.events.Event;
    var loadvar:Loader = new Loader();
    var home1 = loadvar;
    home1.load(new URLRequest("img/home1.jpg"));
    home1.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
    var home2 = loadvar;
    home2.load(new URLRequest("img/home2.jpg"));
    home2.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
    function onComplete(e:Event):void
    var img:Bitmap = Bitmap(e.target.content);
    img.width = 100;
    img.height = 100;
    thumb1.addChild(home1);
    thumb2.addChild(home2);
    But it is working when I take our everything that has to do with home2.

    you're assigning the same loader to three different instance names, loadvar, home1 and home2.  and you only have one loader while you need two if you want to see home1.jpg and home.jpg at the same time:
    use:
    import flash.events.MouseEvent;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.events.Event;
    var home1:Loader=new Loader();
    home1.load(new URLRequest("img/home1.jpg"));
    home1.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
    var home2:Loader=new Loader();
    home2.load(new URLRequest("img/home2.jpg"));
    home2.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
    function onComplete(e:Event):void
    var img:Bitmap = Bitmap(e.target.content);  // this does nothing useful.
    img.width = 100;
    img.height = 100;
    thumb1.addChild(home1);
    thumb2.addChild(home2);
    // both will now load but you won't see both because they are positioned on top of each other.  ie, offset one of them.

  • Error 1046

    I am creating a drag and drop game using Flash 5.5.  I working from a tutorial and following the directions exactly.  I keep getting the error message "1046: Type was not found or was not a compile-time constant."
    Here is my code:
    Lines 8, 12 and 19 are the problem (line 19 does not exist).
    Any tips on fixing this would be appreciated.

    Try importing the MovieClip class specifically...
    import flash.display.MovieClip;
    Also, what are you using to instantiate this class?  IS this the document class?

  • Class File Error 1046

    Hi all, I am trying to write my first class file, been away
    from flash for so long now and im just starting with as3, I have a
    problem with this class file
    I keep get an error
    here is my class // it is in the same directory as my fla,swf

    Hi ActionScripter1,
    If I am not wrong you are not using feature of a document
    class in Flash file.
    I have modified the class given by you to set it as a
    document class
    to run this code you have to do following things:
    1. Update the class with the class pasted below.
    2. Remove all the code about preloadManager from the first
    frame.
    3. set your 'Document Class' property to preloadManager
    As per my opinion this should be the way to implement a
    preloader.
    In this class you will have access to each and every object
    placed on stage. and here 'this' refers to 'stage' only.
    //Updated Class
    package {
    import flash.text.TextField;
    import flash.display.*;
    import flash.events.*;
    import flash.net.*;
    public class preloadManager extends MovieClip {
    public static var l:Loader = new Loader();
    //CONSTRUCTOR for preloadManager Class
    public function preloadManager()
    trace("This is the start point of your programme")
    startPreload('123.swf');
    public function startPreload(swfFile) {
    l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,
    preloadLoop);
    l.contentLoaderInfo.addEventListener(Event.COMPLETE,
    preloadComplete);
    l.load(new URLRequest(swfFile));
    }//end startPreload
    public function preloadLoop(e:ProgressEvent):void {
    var perc:Number=e.bytesLoaded/e.bytesTotal;
    //percent is on my stage as a dynamic textField
    //Error 1120: Access to undefined property percent
    //how would I access this or pass it as a display reference
    to my class?
    percent.text=Math.ceil(perc*100).toString();
    }//end preloadLoop
    public function preloadComplete(e:Event):void {
    removeChildAt(0);
    percent=null;
    addChild(l);
    }//end preloadComplete
    }//end class
    }//end package

  • Error Message When Using a Class Files to Control Navigation

    This is my first attempt at using a class file in a flash project. My intent is to keep all of my navigation elements in class file called "Navigation".  However, I keep getting an error message when I publish.
    I am using a button to go back to the main screen and I gave that button the instance name of "bnt_home". I have also linked that button in the library to the class "Navigation".
    Here is the code:
    package
        import flash.display.SimpleButton;
        public class Navigation extends SimpleButton
            public function Navigation()
                bnt_home.addEventListener(MouseEvent.MOUSE_DOWN, goNavigation);
            private function goNavigation(event:MouseEvent):void
                gotoAndPlay(1,"Main");

    When I changed the code I got error (1046: Type was not found or was not a compile-time constant: MouseEvent).
    package
        import flash.display.SimpleButton;
        public class Navigation extends SimpleButton
            public function Navigation()
                this.addEventListener(MouseEvent.MOUSE_DOWN, goNavigation);
            private function goNavigation(event:MouseEvent):void
                root.gotoAndPlay(1,"Main");

  • Error while setting up Flash + LCCS

    Hi there!
    I'm trying to setting up Flash Pro CS5 + LCCS but I'm having a hard time.
    I already downloaded SDK, and it's currently installed on $HOME/Documents/Adobe/com.adobe.lccs (I'm running a Mac Lion here).
    I went to Flash and configured the shared library as the following image:
    After starting a new Flash project, I added the following lines:
    import com.adobe.rtc.collaboration.ScreenSharePublisher;
    var publisher:ScreenSharePublisher = new ScreenSharePublisher();
    When I try to publish this file I receive the following error:
    1046: Type was not found or was not a compile-time constant: [mx.core]::IMXMLObject.
    I've searched a lot and tried different advices without success.
    Anything I'm missing here?
    Thanks a lot!

    Hmmmm. almost.
    These two lines gives me an error:
    import com.adobe.rtc.collaboration.ScreenSharePublisher;
    var publisher:ScreenSharePublisher = new ScreenSharePublisher();
    VerifyError: Error #1014: Class com.adobe.rtc.collaboration::ScreenSharePublisher could not be found.
    Thanks!

Maybe you are looking for

  • After upgrading to OS X Mavericks, my HL-2030 does not print, although I downloaded the driver

    I can add the printer and the status is 'inactive'. However, the status monitor is red (offline). And the failure report says 'probably wrong adress for the printer'. I still can print with another notebook (Microsoft Windeows 7 Starter, 32 bit). It

  • Printing balance confirmation for vendor & customer

    Hi Sapient I had defined a vendor & linked a customer in the vendor master & vice versa. I want to print the balance confirmation form for the vendor. My requirement is as follows 1. When i print the confirmation form for the particular vendor & if h

  • New time machine WDS frustration

    I bought a new time machine (dual channel) and planned on using my old APExtreme downstairs to pick up the speed to n. I also have an old g APExpress that my printer is hooked up to. Plugged in the TM and set up no problem, grabbed the express and di

  • Looking for just the Win8 BC control panel and System Tray software. Possible to extract from BC 5?

    Installing the entire BC 5 software gave problems on my MacMini 2011/ WIn8 64bit installation. The Magic Mouse and Apple's BT keyboard would stutter. I was able to get everything working fine by just installing the blutooth drivers from the BC5 packa

  • Button link to webpage

    I need a button on my form that will send the user to a webpage AFTER they have submitted the form data via email. Is there a pre-written button for this or a script I can use? Thanks Wendy