ScreenSharingPublisher and LCCS SDK

Hi everyone,
Im facing some troubles with lccs, specifically with Screensharing.
I have an app running and doing screensharing, it's working well and fine. In this app i can have users (with presenter+ roles) sharing their screen (one at a time) and other lccs streams.
But to get this working i had to set some workarounds in the lccs source code.
First, i don't know why, when a user is doing screensharing the ScreenSharingPublisher.isPublishing method of other users (who is receiving the stream and not publishing) always returns true. Even when the user who is sharing his screen stops publishing, the method continues returning true. This blocks other user to share their screen, once the method publish of the ScreenSharingPublisher checks if there is something being publish.
To get around this, i made a call of ScreenSharingPublisher.stop()  on the handler of the ScreenShareEvent.stoppPlayingScreenShare, and my handler is like this:
protected function stopPlayingScreenShare(event:ScreenShareEvent):void
     this.screenSharePublisher.stop();
     changeToScreenNotBeingPresented();
But this did not work, once the lccs code for ScreenSharingPublisher.stop() checks if the Addin is launched before set the attribute isPublishing to false (In user who are receiving only, the addin is not launched).
//Code for ScreenSharingPublisher of LCCS
public function stop(p_publisherid:String=null):void
     if(_outgoingConnection != null && _isLaunched)
     var props:Object = new Object();
     //id?
        //LCCS code...
     _isLaunched = false;
     _isPublishing = false;
To get this work, i added in the end of the ScreenSharingPublisher.stop() method an intruction to set isPublishing to false.
public function stop(p_publisherid:String=null):void
     if(_outgoingConnection != null && _isLaunched)
     var props:Object = new Object();
     //id?
        //LCCS code...
     _isLaunched = false;
     _isPublishing = false;
     _isLaunched = false;
     _isPublishing = false;
I made this workaround and my app is running well, like i sad.
But im not sure if this is a bug or if i misundertood the way LCCS works or im not configuring LCCS in the right way.
What do you guys think?
That's it guys, help me out on this.
Regards.

Hi Fausto Vaz,
Thanks for reporting this issue to us. It was a bug at our end, and we are ready with a patch. If you are using SDK 10.1 src, then you could add this code to ScreenSharePublisher.as at line 1077 (inside onStreamReceive method) under cocomoPlayer10.1/src/com/adobe/rtc/collaboration/
               if (desc.streamPublisherID != connectSession.userManager.myUserID &&
                    desc.originalScreenPublisher != connectSession.userManager.myUserID) {
                    return;
Alternatively I have attached a swc and src for your convenience.
Thanks again for reporting this issue.
Sincerely
Arun

Similar Messages

  • ScreenSharingProducer and LCCS SDK

    Hi everyone,
    Im facing some troubles with lccs, specifically with Screensharing.
    I have an app running and doing screensharing, it's working well and fine. In this app i can have users (with presenter+ roles) sharing their screen (one at a time) and other lccs streams.
    But to get this working i had to set some workarounds in the lccs source code.
    First, i don't know why, when a user is doing screensharing the ScreenSharingProducer.isPublishing method of other users (who is receiving the stream and not publishing) always returns true. Even when the user who is sharing his screen stops publishing, the method continues returning true, this blocks other user to share their screen, once the method publish of the ScreenSharingProducer checks if there is something being publish.
    To get around this, i made a call of ScreenSharingProducer.stop  on the handler of the ScreenShareEvent.stoppPlayingScreenShare, and my handler is like this:
    protected function stopPlayingScreenShare(event:ScreenShareEvent):void
         this.screenSharePublisher.stop();
         changeToScreenNotBeingPresented();
    But this did not work, once the lccs code for ScreenSharingProducer.stop() checks if the Addin is launched before set the attribute isPublishing to false.
    //Code for ScreenSharingProducer of LCCS
    public function stop(p_publisherid:String=null):void
         if(_outgoingConnection != null && _isLaunched)
         var props:Object = new Object();
         //id?
            //LCCS code...
         _isLaunched = false;
         _isPublishing = false;
    To get this work, i added in the end of the ScreenSharingProducer.stop() method an intruction to set isPublishing to false.
    public function stop(p_publisherid:String=null):void
         if(_outgoingConnection != null && _isLaunched)
         var props:Object = new Object();
         //id?
            //LCCS code...
         _isLaunched = false;
         _isPublishing = false;
        _isLaunched = false;
    _isPublishing = false;
    I made this workaround and my app is running well, like i sad.
    But im not sure if this is a bug or if i missundertood the way LCCS works or im not configuring LCCS in the right way.

    Hey Raff,
    sorry but i duplicated this thread. I was updating this, but don't know what happenend.
    Please, report to this thread: http://forums.adobe.com/thread/789444
    In there i gave more details on these problems.
    Thank you very much for your help.
    Regards.

  • Why are Player 10.1 source libraries missing from LCCS SDK Navigator?

    I have downloaded the LCCS SDK Navigator. Player 9 and 10 both have SWC and Source files, but 10.1 only has SWC files. This is further confirmed when navigating to the com.adobe.afcs plug-in folder. When installing the 10.1, I have no choice but to "source attach:" the src folder for Player 10.
    This is causing an error. When using Flash Builder 4 to import AFCS componenets (such as <rtc:SimpleChat>), I am recieving a notifications:
    1046: Type was not found or was not a compile-time constant: GroupSpecifier / NetGroup.These error messeges do not appear when using the Player 10 SWC.
    I realize that these errors are related to the new p2p features in 10.1. Others have complained about this issue prior to the release of 10.1 and were able to bypass it by using playerglobal.swc, but that shouldn't be needed anymore. I have installed 10.1 on my machine, including in the C:\Program Files\Adobe\Adobe Flash Builder 4\player\win\ folder that my copy of Flash Developer 4 uses.
    I am left with the assumtion that either the Player 10.1 SWC cannot be used yet (until the source files are available) or that I have somehow incorrectly set up Player 10.1 for Flash Builder. Any assistance would be appreciated.

    Thank you for the advice. I have managed to follow your instructions (add playerglobal.swc 10.1 to the Library Path) and get the messege to disappear, but this leads to another problem in AIR.
    I have set up a basic LCCS SDK tutorial app (the one from the AFCS Developer Guide on page 92-93). Running that app with my email address, password and roomURL works fine in a Web version. I repeat, a Flash web version of this app works fine.
    However, when using it in a playerglobal.swc-added AIR app, I get the following error:
    VerifyError: Error #1014: Class flash.net::GroupSpecifier could not be found.
        at com.adobe.rtc.session::ConnectSession()
        at com.adobe.rtc.session::ConnectSessionContainer()[C:\work\main\connect\cocomoPlayer10.1\sr c\com\adobe\rtc\session\ConnectSessionContainer.as:94]
        at NewPlayer007/_NewPlayer007_ConnectSessionContainer1_c()
        at NewPlayer007/_NewPlayer007_Array1_c()
        at mx.core::DeferredInstanceFromFunction/getInstance()[E:\dev\4.0.0\frameworks\projects\fram ework\src\mx\core\DeferredInstanceFromFunction.as:105]
        at spark.components::SkinnableContainer/createDeferredContent()[E:\dev\4.0.0\frameworks\proj ects\spark\src\spark\components\SkinnableContainer.as:985]
        at spark.components::SkinnableContainer/createContentIfNeeded()[E:\dev\4.0.0\frameworks\proj ects\spark\src\spark\components\SkinnableContainer.as:1014]
        at spark.components::SkinnableContainer/createChildren()[E:\dev\4.0.0\frameworks\projects\sp ark\src\spark\components\SkinnableContainer.as:827]
        at mx.core::UIComponent/initialize()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\ UIComponent.as:7250]
        at spark.components::Application/initialize()[E:\dev\4.0.0\frameworks\projects\spark\src\spa rk\components\Application.as:916]
        at spark.components::WindowedApplication/initialize()[E:\dev\4.0.0\frameworks\projects\airsp ark\src\spark\components\WindowedApplication.as:1833]
        at NewPlayer007/initialize()
        at mx.managers.systemClasses::ChildManager/childAdded()[E:\dev\4.0.0\frameworks\projects\fra mework\src\mx\managers\systemClasses\ChildManager.as:189]
        at mx.managers.systemClasses::ChildManager/initializeTopLevelWindow()[E:\dev\4.0.0\framework s\projects\framework\src\mx\managers\systemClasses\ChildManager.as:341]
        at mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\4.0.0\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:2810]
        at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::kickOff()[E:\dev\4.0.0\frameworks\projects\fra mework\src\mx\managers\SystemManager.as:2637]
        at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::preloader_completeHandler()[E:\dev\4.0.0\frame works\projects\framework\src\mx\managers\SystemManager.as:2539]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.preloaders::Preloader/timerHandler()[E:\dev\4.0.0\frameworks\projects\framework\src\mx \preloaders\Preloader.as:515]
        at flash.utils::Timer/_timerDispatch()
        at flash.utils::Timer/tick()
    Since this error is related to GroupSpecifier (but did not occur in the web-version), it seems to be being caused by a conflict between the added playerglobal.swc and afcs.swc. Is it possible I am using conflicting versions or an out-of-date SWC? Or do you think there is another reason for the error in AIR?
    Can you also provide me with download links to the newest compatable playerglobal.swc and afcs.swc? Thank you.

  • Flash Builder 4.5 and lccs.swc compatibility

    Hi,
    I'm using Flash Builder 4.5 on Windows 7 trying to create a LCCS application, starting with the available LCCS examples.
    I installed the LCCS SDK.
    I updated to playerglobal.swc 10.3 and lccs.swc 10.3.
    Flash Builder is configured to use 10.3 version.
    Using Flex SDK 4.5.
    Problem:
    In design mode I see two problems:
    1) problem 1
    The XML version of design.xml and the expected XML version do not match.
    Some Design Mode features will not be available for components defined within the SWC
    Expected XML version : 2
    Actual XML version:  Unknown
    1) problem 2
    C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.5\sdks\com.adobe.lccs\libs\lccs_10_3.swc- DesignAssetLoader.CompleteTimeout
    SWC file failed to load. Any component dependent on this SWC file will not be displayed in the Design Mode.
    The SWC may have failed to load because of:
    *  Incompatible definitions caused by usage of a different SDK version
    *  Missing referred class definitions
    Help is much appreciated.
    Thanks,
    Ofer

    Hi there,
    Thanks for reporting the issue.
    I'll be honest, and this might be a little controversial, but I think we're
    giving up on design mode support. The reason is that pretty much every
    version of Flash Builder expects a different design.xml format. This would
    mean, in order to support all versions, we'd have to export a new SWC for
    each version of Flash Builder in use.
    So, today, we ship Flex swcs for Player 9/10/10.1, a version for both Flex
    and Flash-only. If we wanted Design Mode support, we'd have to ship those 3
    for Flex 3/3.5/4.1/4.5/4.5.1 (just guessing here), meaning a potential 18
    SWCs. It's just too much to keep up with. Considering that you can still
    switch to code view and add what you need, the effort/reward level is just
    too low, considering the other priorities on our plates (like recording,
    10.3 AEC support, a mobile 4.5.1 SWC, etc). It's possible when we ship a
    full Spark 4.5.1 SWC, this will solve your issue for now, but we can't
    commit to supporting it.
      hope that's understandable
       nigel

  • How to download LCCS SDK..

    hi, everyone..
    i want LCCS SDK, but i can no longer get the SDK from adobe site.
    how to download LCCS SDK and samples..

    Hello,
    Here you can download the spark SDK (in beta, but very good) :
    http://forums.adobe.com/thread/938819
    Tezqa

  • Example YahooMaps in Adobe LCCS SDK

    Hi I am trying to configure yahoo map example which come along with the Adobe LCCS sdk.
    I am using flex sdk 3.6 and yahooflash api 0.9.4 with lccs.swc of player 9.
    I am getting the following error.
    Description
    Resource
    Path
    Location
    Type
    1046: Type was not found or was not a compile-time constant: GroupSpecifier.
    YahooMaps_Cocomo
    Unknown
    Flex Problem
    Description
    Resource
    Path
    Location
    Type
    1046: Type was not found or was not a compile-time constant: NetGroup.
    YahooMaps_Cocomo
    Unknown
    Flex Problem
    Anybody who can fix these errors.
    Regards
    Atif

    I, too, would like to create an application using the type of functionality that LCCS seemed to make easy to build and deliver.  What would you guys recommend as an alternative?
    This would be an eLearning application with video chat, text chat, and file sharing.  I would like to be able to save the interactions for later review.  Thanks!
    Edit - did a little research.  Looks like BigBlueButton and Banckle are leading providers of collaboration tools.

  • Whats is difference between Java JRE  and  Java SDK

    Hi,
    what is the difference between Java JRE and Java SDK...
    i think both of them have the same set of files to be installed...
    I am not able to understand where they differ

    The JRE (Java runtime Environment) contains just the stuff necessary to run Java and the SDK (System Development Kit) contains the extra stuff necessary (and also helpful) to develop in Java.

  • Flex compiler in FlexBuilder and Flex SDK

    I have downloaded Flex Builder 3.0.2 and Flex SDK 3.2. Are
    they using the same version of Flex compiler?
    Is there a way to check the version of Flex compiler?

    quote:
    Originally posted by:
    mab_bond
    And regarding the Advanced datagrid you must copy the
    dataVisualization.swc.from sdk 3.1
    It sounds like the SDK3.2 download is incomplete. I'm not
    sure if upgrade FB with this download is a good idea.

  • Flash Builder and Flex4 SDK 9731+ issue

    Hello everyone. I've been working with Flash Builder Beta and latest Flex4 SDK nightly builds for some time now and did not have any major obsticles.
    That was until I downloaded 9731 build. Flash Builder compiled my project without any problem, however, when I tried to launch the application in my browser I've got these errors:
    VerifyError: Error #1014: Class IVisualElement could not be found.
    (after I click continue)
    ReferenceError: Error #1065: Variable CrossFade_CrossFadeShaderClass is not defined.
    (after that)
    ReferenceError: Error #1065: Variable Wipe_WipeShaderClass is not defined.
    (and after that)
    ReferenceError: Error #1065: Variable _cfdd017153b35cc39170086d5b82e02ae917ac7c68abee5c5b64ce1a052a4aac_flash_display_Sprite is not defined.
    Of course when I click "Continue" nothing shows up on the screen.
    The only similar issue I've managed to find is related with Flexmojos (http://code.google.com/p/flex-mojos/issues/detail?id=163) which, I think, has nothing to do neither with Flex4 SDK nor Flash Builder in this case.
    Maybe anyone has ideas about this? Does this have something to do with Flash Builder incompatibility with nightly SDK builds? Or maybe the new SDK
    has not been built correctly?
    By the way, I've decided to stick with 9674 built and wait for more nightly builds when I first encautered this problem. Today I've downloaded 10008 built of
    Flex4 SDK and the problem is still there.

    Hello ThinkLoop;
    I have .10339 now working with no new issues.  If this helps I started a discussion (below) in which I was getting an error, the error given seemed unrelated to the fix but... essentially when recreating the project, which seems to be a common event when updating the SDK, I have to re-attach the modules to the project.
    Author
    Subject
    Views
    Replies
    Last Post
    jdesko
    Nightly SDK and Flash Builder Betain Flash Builder and Flex SDK
    121
    8
    35 minutes agoby jdesko

  • [svn:cairngorm3:] 14674: Migration to Parsley 2.2 and Flex SDK 3.5.

    Revision: 14674
    Revision: 14674
    Author:   [email protected]
    Date:     2010-03-10 10:47:07 -0800 (Wed, 10 Mar 2010)
    Log Message:
    Migration to Parsley 2.2 and Flex SDK 3.5. Removed Command implementation of Integration library in favor of Asynchronous Commands of Parsley 2.2.
    Modified Paths:
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/presentation/ContactsNavigator.mx ml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/ContactsModule.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/ContactsModuleRig.mxm l
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/Conta ctsContext.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/appli cation/RefreshSearchAfterSaveController.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/appli cation/RemoveContactCommand.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/appli cation/SaveContactCommand.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/appli cation/SearchContactsCommand.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/prese ntation/ContactFormPM.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/prese ntation/ContactList.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/prese ntation/ContactsNavigator.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/test/insync/contacts/appl ication/RefreshSearchAfterSaveControllerTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/test/insync/contacts/appl ication/RemoveContactCommandTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/test/insync/contacts/appl ication/SaveContactCommandTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/test/insync/contacts/appl ication/SearchContactsCommandTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/src/ExpensesModule.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/src/ExpensesModuleRig.mxm l
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/src/ComposeMessageModule .mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/src/ComposeMessageModule Rig.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/InsyncModularExtendedShe ll.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/insync/presentation/Cont entViewStack.mxml

    I can't help you with your problem, but maybe this is a good start:
    http://kb2.adobe.com/cps/905/cpsid_90508.html#main_Flash_Builder
    ..... About that... have you encountered any other issue when using FB 4.5.1 with OS X 10.7.0?

  • [svn:cairngorm3:] 14658: Migration to Parsley 2.2 and Flex SDK 3.5.

    Revision: 14658
    Revision: 14658
    Author:   [email protected]
    Date:     2010-03-10 02:08:29 -0800 (Wed, 10 Mar 2010)
    Log Message:
    Migration to Parsley 2.2 and Flex SDK 3.5. Removed Command implementation of Integration library in favor of Asynchronous Commands of Parsley 2.2.
    Modified Paths:
        cairngorm3/trunk/libraries/Integration/.actionScriptProperties
        cairngorm3/trunk/libraries/Integration/.flexLibProperties
        cairngorm3/trunk/libraries/IntegrationDMS/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationDMS/src/com/adobe/cairngorm/CairngormIntegrationDMS Lib.as
        cairngorm3/trunk/libraries/IntegrationRPC/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationRPC/src/com/adobe/cairngorm/CairngormIntegrationRPC Lib.as
        cairngorm3/trunk/libraries/IntegrationTest/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationTest/html-template/history/history.js
        cairngorm3/trunk/libraries/IntegrationTest/html-template/index.template.html
        cairngorm3/trunk/libraries/IntegrationTest/src/IntegrationTests.mxml
        cairngorm3/trunk/libraries/IntegrationTest/src/LocalConnectionConsumer.mxml
        cairngorm3/trunk/libraries/IntegrationTest/src/LocalConnectionProducer.mxml
        cairngorm3/trunk/libraries/Module/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/pom.xml
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ParsleyFlexModuleFactory .as
        cairngorm3/trunk/libraries/ModuleTest/.actionScriptProperties
        cairngorm3/trunk/libraries/ModuleTest/html-template/AC_OETags.js
        cairngorm3/trunk/libraries/ModuleTest/html-template/history/history.css
        cairngorm3/trunk/libraries/ModuleTest/html-template/history/history.js
        cairngorm3/trunk/libraries/ModuleTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/Navigation/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/pom.xml
        cairngorm3/trunk/libraries/Observer/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverParsley/pom.xml
        cairngorm3/trunk/libraries/ObserverTest/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverTest/html-template/AC_OETags.js
        cairngorm3/trunk/libraries/Popup/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/html-template/AC_OETags.js
        cairngorm3/trunk/libraries/Task/.actionScriptProperties
        cairngorm3/trunk/libraries/Validation/.actionScriptProperties
        cairngorm3/trunk/libraries/Validation/.flexLibProperties
        cairngorm3/trunk/libraries/Validation/.settings/org.eclipse.core.resources.prefs
        cairngorm3/trunk/libraries/ValidationTest/.actionScriptProperties
        cairngorm3/trunk/libraries/ValidationTest/html-template/AC_OETags.js
        cairngorm3/trunk/samples/insync/insync-basic/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-basic/html-template/AC_OETags.js
        cairngorm3/trunk/samples/insync/insync-basic/html-template/history/history.css
        cairngorm3/trunk/samples/insync/insync-basic/html-template/history/history.js
        cairngorm3/trunk/samples/insync/insync-basic/html-template/history/historyFrame.html
        cairngorm3/trunk/samples/insync/insync-basic/src/InsyncBasic.mxml
        cairngorm3/trunk/samples/insync/insync-basic/src/InsyncContext.mxml
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/application/RefreshSearchAfterSav eController.as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/application/RemoveContactCommand. as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/application/SaveContactCommand.as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/application/SearchContactsCommand .as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/infrastructure/AlertHandler.as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/presentation/ContactFormPM.as
        cairngorm3/trunk/samples/insync/insync-basic/src/insync/presentation/ContactsNavigatorPM. as
        cairngorm3/trunk/samples/insync/insync-basic/test/insync/application/RefreshSearchAfterSa veControllerTest.as
        cairngorm3/trunk/samples/insync/insync-basic/test/insync/application/RemoveContactCommand Test.as
        cairngorm3/trunk/samples/insync/insync-basic/test/insync/application/SaveContactCommandTe st.as
        cairngorm3/trunk/samples/insync/insync-basic/test/insync/application/SearchContactsComman dTest.as
        cairngorm3/trunk/samples/insync/insync-modularExtended-api/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/AC_OETags.j s
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/AC_OETags.j s
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/AC_OETags. js
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/AC_OETags.js
    Added Paths:
        cairngorm3/trunk/libraries/Integration/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/Integration/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationDMS/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationDMS/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationRPC/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationRPC/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationTest/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/IntegrationTest/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/Module/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/Module/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/ModuleTest/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/ModuleTest/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/ObserverParsley/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/ObserverParsley/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/history.css
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/history.js
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/ObserverTest/html-template/index.template.html
        cairngorm3/trunk/libraries/ObserverTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/PopupParsley/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/libraries/PopupParsley/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/libraries/PopupTest/html-template/history/
        cairngorm3/trunk/libraries/PopupTest/html-template/history/history.css
        cairngorm3/trunk/libraries/PopupTest/html-template/history/history.js
        cairngorm3/trunk/libraries/PopupTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/PopupTest/html-template/index.template.html
        cairngorm3/trunk/libraries/PopupTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/ValidationTest/html-template/history/
        cairngorm3/trunk/libraries/ValidationTest/html-template/history/history.css
        cairngorm3/trunk/libraries/ValidationTest/html-template/history/history.js
        cairngorm3/trunk/libraries/ValidationTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/ValidationTest/html-template/index.template.html
        cairngorm3/trunk/libraries/ValidationTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/samples/insync/insync-basic/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/samples/insync/insync-basic/libs/spicelib-flex-2.2.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/history/
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/history/his tory.css
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/history/his tory.js
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/history/his toryFrame.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/index.templ ate.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/html-template/playerProdu ctInstall.swf
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/libs/parsley-flex3-2.2.0. swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/libs/spicelib-flex-2.2.0. swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/history/
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/history/his tory.css
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/history/his tory.js
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/history/his toryFrame.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/index.templ ate.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/html-template/playerProdu ctInstall.swf
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/libs/parsley-flex3-2.2.0. swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/libs/spicelib-flex-2.2.0. swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/history/
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/history/hi story.css
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/history/hi story.js
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/history/hi storyFrame.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/index.temp late.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/html-template/playerProd uctInstall.swf
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/libs/parsley-flex3-2.2.0 .swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/libs/spicelib-flex-2.2.0 .swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/history/
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/history/histor y.css
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/history/histor y.js
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/history/histor yFrame.html
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/index.template .html
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/html-template/playerProductI nstall.swf
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/libs/parsley-flex3-2.2.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/libs/spicelib-flex-2.2.0.swc
    Removed Paths:
        cairngorm3/trunk/libraries/Integration/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/Integration/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/Integration/src/com/adobe/cairngorm/CairngormIntegrationLib.as
        cairngorm3/trunk/libraries/Integration/src/com/adobe/cairngorm/integration/command/
        cairngorm3/trunk/libraries/Integration/test/com/
        cairngorm3/trunk/libraries/IntegrationDMS/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationDMS/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationRPC/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationRPC/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationTest/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/IntegrationTest/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/Module/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/Module/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/ModuleTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/ModuleTest/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/ModuleTest/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/ObserverParsley/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/ObserverParsley/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/PopupParsley/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/libraries/PopupParsley/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/libraries/TaskTest/html-template/history/
        cairngorm3/trunk/libraries/TaskTest/html-template/index.template.html
        cairngorm3/trunk/libraries/TaskTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/samples/insync/insync-basic/libs/parsley-complete-flex3-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-basic/libs/spicelib-complete-flex-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/libs/parsley-complete-fle x3-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/libs/spicelib-complete-fl ex-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/libs/parsley-complete-fle x3-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/libs/spicelib-complete-fl ex-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/libs/parsley-complete-fl ex3-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/libs/spicelib-complete-f lex-2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/libs/parsley-complete-flex3- 2.1.0.swc
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/libs/spicelib-complete-flex- 2.1.0.swc

    I can't help you with your problem, but maybe this is a good start:
    http://kb2.adobe.com/cps/905/cpsid_90508.html#main_Flash_Builder
    ..... About that... have you encountered any other issue when using FB 4.5.1 with OS X 10.7.0?

  • Confusion over J2SE and J2SE SDK

    Hi,
    I understand that J2SE (Java2 Platform, Standard Edition) is an abstract specification from Sun and J2SE SDK is Sun's implementation of J2SE platform.
    If Sun is releasing a new version of their J2SE platform, what are the things from the below list that can be changed and how.
    1. The Java Virtual Machine Specification
    2. Java API
    3. The Java Language Specification
    For example, I notice that for every new release, only the API version is changed where as the The Java Languge and JVM specifications remained the same since very long. Let us say that a new keyword is added, shouldn't the JVM spec and the Java Language Spec change??
    Where can I get the release notes of J2SE (not J2SE SDK)?
    Thanks,
    Suresh

    Hi ,
    U can get the release notes from
    http://java.sun.com/j2se/1.4/relnotes.html
    Hi,
    I understand that J2SE (Java2 Platform, Standard
    Edition) is an abstract specification from Sun and
    J2SE SDK is Sun's implementation of J2SE platform.
    If Sun is releasing a new version of their J2SE
    platform, what are the things from the below list that
    can be changed and how.
    1. The Java Virtual Machine Specification
    2. Java API
    3. The Java Language Specification
    For example, I notice that for every new release, only
    the API version is changed where as the The Java
    Languge and JVM specifications remained the same since
    very long. Let us say that a new keyword is added,
    shouldn't the JVM spec and the Java Language Spec
    change??
    Where can I get the release notes of J2SE (not J2SE
    SDK)?
    Thanks,
    Suresh

  • Using local android-sdk and android-sdk-platform-tools with phonegap

    Hello,
    I've installed android-sdk, android-sdk-platform-tools and android-sdk-build-tools packages from AUR and phonegap with npm command line utility of nodejs. When I try to build android app using the command:
    $ phonegap run android
    phonegap fails to detect locally installed android SDK environment and uses remote one:
    [phonegap] detecting Android SDK environment...
    [phonegap] using the remote environment
    I tried adding paths /opt/android-sdk/tools/, /opt/android-sdk/platform-tools/ and /opt/android-sdk/build-tools to $PATH variable but still, no luck. How can I make phonegap use the local android SDK environment?
    Last edited by th0th (2013-08-10 21:06:29)

    hi, you can try run `phonegap local run android`
    if you see "ant: command not found" error, please install 'apache-ant'
    ╭─root@vkill /opt/workspace/my-app ‹ruby-1.9.3›
    ╰─➤  phonegap local run android                                             8 ↵
    [phonegap] adding the Android platform...
       [error] Please install Android target 17 (the Android 4.2 SDK). Make sure you have the latest Android tools installed as well. Run `android` from your command-line to install/update any missing SDKs or tools.
    ╭─root@vkill /opt/workspace/my-app ‹ruby-1.9.3›
    ╰─➤  phonegap local run android
    [phonegap] adding the Android platform...
       [error] An error occured during creation of android sub-project. /root/.cordova/lib/android/cordova/3.0.0/bin/create: line 104: ant: command not found
    An unexpected error occurred: ant jar > /dev/null exited with 127
    Deleting project...
    ╭─root@vkill /opt/workspace/my-app ‹ruby-1.9.3›
    ╰─➤  yaourt -S apache-ant
                                                                                                                                           1 ↵
    ╭─root@vkill /opt/workspace/my-app ‹ruby-1.9.3›
    ╰─➤  phonegap local run android                                                                                                                  1 ↵
    [phonegap] adding the Android platform...
    [phonegap] compiling Android...
    [phonegap] successfully compiled Android app
    [phonegap] trying to install app onto device
    [phonegap] no device was found
    [phonegap] trying to install app onto emulator
    [phonegap] successfully installed onto emulator
    Last edited by vkill (2013-09-04 17:48:44)

  • Fresh Bits! Oracle Java ME Embedded and ME SDK updates

    Oracle has just refreshed the Java ME Embedded 3.3 EA and ME SDK 3.3 EA binaries.
    For more information, please see my blog: https://terrencebarr.wordpress.com/2013/06/13/fresh-bits-oracle-java-me-embedded-and-me-sdk-updates/
    Best regards,
    Terrence Barr
    Principal Product Manager, Oracle

    Hello,
    I am just viewing this course now and am stuck on finding the raspberry pi 8.1 EA binary:
    oracle-jmee-8-1-ea-raspberrypi-linux-bin-b01-20_may_2014.zip
    The only thing I can find on this page (which is what the document your link brings up has)
    http://www.oracle.com/technetwork/java/embedded/javame/embed-me/downloads/index.html
    is 8.0:
    oracle-jmee-8-0-rr-raspberrypi-linux-bin.zip
    Please help...
    Thanks

  • [svn:cairngorm3:] 17952: simpler and safer ways to handle flex3 and flex4 sdk and profiles

    Revision: 17952
    Revision: 17952
    Author:   [email protected]
    Date:     2010-09-30 08:02:19 -0700 (Thu, 30 Sep 2010)
    Log Message:
    simpler and safer ways to handle flex3 and flex4 sdk and profiles
    Modified Paths:
        cairngorm3/trunk/build-parent/pom.xml
        cairngorm3/trunk/libraries/lib-parent/pom.xml
        cairngorm3/trunk/pom.xml

Maybe you are looking for