Not Receiving Sync Event

Hello, All!!!
I am creating one Application with the FMS 3.
I am creating a connection on the FMS 3.
I can see that user is connected to the Flash Media Server3.
But I am unable to receiving the Event of the Sync of the
Remote Shared Object.
Even I have tried the documentation Sample named
"SharedBalls" Application of the FMS.
Even in this application I am not Receiving Sync
Event.
I am using Flash Prof CS4 and Windows 7.
Help me to solve this...
Thanks in Advance.....

Hi,
Using the same application which you have mentioned, i am able to get the sync event triggered at the client side. But i tried in WIndows XP as client. Can you pls give me the exact player version which you are publishing and the flash player associated with the Flash CS4. Which version of FMS are you using?
Regards,
Janaki L

Similar Messages

  • How to setup a specific calendar in iCal not to sync events from iphone S to other apple devices?

    In iCal, multiple calendars can be setup.  For example,  I have 3 different calendars in iCal.  I would like the events in calendar 1 and 2 to b synced with my Mac Pro, iPhone S and iPad. I do not want the events in calendar 3 to be synced from my iPhone S to the Mac Pro and iPad. How can this be set up?

    Hi ChrisJC,
    To get the specific calendar folder (non-default folder), please refer to this code below:
    Dim oNS As Outlook.NameSpace
    Dim MyItemsFolder As Outlook.MAPIFolder
    Dim myAppoint As Outlook.AppointmentItem
    Set oNS = oApp.GetNamespace("MAPI")
    Set MyItemsFolder = oNS.Folders("[email protected]").Folders.Item("Calendar")
    Then you could add appointment item by using
    Items.Add method.
    Set myAppoint = MyItemsFolder.Items.Add(olAppointmentItem)
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Not receiving COMPLETE event in URLLoader

    Hi:
    I'm querying a web application in a remote server through XML files and receiving answers in the same file format. Until now, sometimes I received a connection error:
    Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://server/Services/startSesion.com
        at reg_jugadores_fla::MainTimeline/queryGQ()
        at reg_jugadores_fla::MainTimeline/reg_jugadores_fla::frame1()
    When this occurs, trying to access the services through a web browser, there's a test page where you can try queries, returns a "500 Internal server error". I managed that problem adding a listener to catch the error:
    xmlSendLoad.addEventListener(IOErrorEvent.IO_ERROR, catchIOError);
    But since yesterday I can't connect anymore using Flash while it's possible to access the test page. I'm not able to talk to any support guy as the company is closed for vacations! I added listeners to try to know what's happening and this is the result in the output window:
    openHandler: [Event type="open" bubbles=false cancelable=false eventPhase=2]
    progressHandler loaded:154 total: 154
    httpStatusHandler: [HTTPStatusEvent type="httpStatus" bubbles=false cancelable=false eventPhase=2 status=200]
    AFAIK, status=200 means OK but why the COMPLETE event isn't dispatched?. So, is there anything I can do or just wait until the tech guys return from the beach?
    Thanks in advance
    queryGQ(sessionURL,sessionQS);  // Start session
    stop();
    function queryGQ(url:String,qs:String):void {
    var serviceURL:URLRequest = new URLRequest("http://server/Services/"+url);
    serviceURL.data = qs;
    serviceURL.contentType = "text/xml";
    serviceURL.method = URLRequestMethod.POST;
    var xmlSendLoad:URLLoader = new URLLoader();
    configureListeners(xmlSendLoad);
    xmlSendLoad.load(serviceURL);
    function configureListeners(dispatcher:IEventDispatcher):void {
    dispatcher.addEventListener(Event.COMPLETE, loadXML);
    dispatcher.addEventListener(Event.OPEN, openHandler);
    dispatcher.addEventListener(ProgressEvent.PROGRESS, progressHandler);
    dispatcher.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
    dispatcher.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);
    dispatcher.addEventListener(IOErrorEvent.IO_ERROR, catchIOError);
    function openHandler(event:Event):void {
    trace("openHandler: " + event);
    function progressHandler(event:ProgressEvent):void {
    trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
    function securityErrorHandler(event:SecurityErrorEvent):void {
    trace("securityErrorHandler: " + event);
    function httpStatusHandler(event:HTTPStatusEvent):void {
    trace("httpStatusHandler: " + event);
    function ioErrorHandler(event:IOErrorEvent):void {
    trace("ioErrorHandler: " + event);

    Hugo,
    View may not fire events. View may call method on other controller (component / custom) and this controller fires event.
    You are absolutely right: in WD only instantiated controllers receives the event, event itself does not cause controller instantiation.
    The only controller that is always instantiated is component controller.
    Custom controllers instantiated on demand when their context is accessed or user-defined method called.
    As far as view may not have externally visible context nodes and methods (you may not add view controller as required to other one and use nodes/methods of view), the only time when view is instantiated is when it get visible for first time.
    To solve your problem, try the following:
    1. Save event parameters to component controller context node element before firing event.
    2. Create mapped node in target view and set node from controller as source.
    3. In wdDoInit of target view insert the following code:
    wdThis.<eventHandlerName>(
    null, //no wdEvent
    wdConext.current<NameOfMappedNode>Element().get<NameOfParamA>(),
    wdConext.current<NameOfMappedNode>Element().get<NameOfParamB>(),
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • Eventhandlers of children of application can not receive custom event dispatched by application

    Hello dear Adobe community,
    hope you can help me with this issue.
    When the application dispatches a custom event, the child uicomponent can only receive the event by using Application.application.addEventListener or systemManager.addEventListener. Simply adding a listener, without application or systemmanager, does not allow the event to be received by the child component.
    I want to be able to use the addEventListener and removeEventListener without SystemManager or Application.application, or could you provide a better workaround? How can I use the addEventListener, do I need to overwrite EventDispatcher, which I wouldnt like to do?
    Just to clarifiy, if i remove the systemManager in front of addEventListener(CustomEventOne.EventOne,sysManHandleCE,false) it will not add it and will not fire. 
    The code below is an example for this problem that the event is not getting fired in the right moment. The mainapplication got only a button with the customEventOne that gets dispatched.
    public
    class MyCanvas extends Canvas{
    public function MyCanvas()
    super();
    width=300;
    height=300;
    addEventListener(FlexEvent.CREATION_COMPLETE,handleCC,false,0,true);
    private function handleCC(event:FlexEvent):void
    removeEventListener(FlexEvent.CREATION_COMPLETE,handleCC);
    addEventListener(CustomEventOne.EventOne,handleCE,false,0,true);
    addEventListener(Event.REMOVED_FROM_STAGE,handleEvt,false,0,true);
    systemManager.addeventListener(CustomEventOne.eventOne,sysManHandleCE,false,0,true);
    private function handleEvt(event:Event):void
    trace("In removed from stage handler");
    systemManager.removeEventListener(CustomEventOne.EventOne,sysManHandleCE);
    trace(hasEventListener(FlexEvent.CREATION_COMPLETE));
    trace(hasEventListener(CustomEventOne.EventOne));
    trace(hasEventListener(Event.REMOVED_FROM_STAGE));
    private function handleCE(event:CustomEventOne):void
    trace("I got it");
    private function sysManHandleCE(event:CustomEventOne):void
    trace("I got it");
    public class CustomEventOne extends Event
    public static const EventOne:String = "EventOne";
    public function CustomEventOne(type:String, bubbles:Boolean=false, cancelable:Boolean=false)
    super(type, bubbles, cancelable);
    override public functionclone():Event
    return newCustomEventOne(type,bubbles,cancelable);
    Thank you in advance,
    Michael

    I think you need to look at event propogation. The object that dispatches an event will be sitting on the display tree. The event propagates up the tree to the roots. Your canvas should be attached to the application, but even then it sits lower in the tree branches than the event dispatcher, so it won't see the event being dispatched because the event is not propagated to the children of the object that dispatches it but to the parent of the object that dispatches it.
    So, your canvas is a child of the application, but dispatching the event from the application means that the canvas doesn't see it because events are notified up the tree using the parent link, not the child links.
    You may wish to investigate how the display list and event propagation works and then the MVC pattern.
    Paul

  • Custom UIView not receiving touch events for fast mouse clicks in simulator

    I'm having a problem in the simulator where if I click fast in a UIView inside a table cell that is setup to receive touch events, it doesn't receive them. But if I click slow (holding down the button for a little bit) the view gets the touch events. I can't test it on the device. Is this a known problem in the simulator?
    Thanks.

    Hi George,
    Thanks a lot for your quick response and jumping to help.
    I am so frustrated that I did not get touch event for the custom cell.
    I also tried your solution for a custom UIImageView, I put the codes of PhotoView.h, PhotoView.m and TestTouchAppDelegate.m here: Please help to look into it for me.
    // PhotoView.h
    // Molinker
    // Created by Victor on 6/18/08.
    // Copyright 2008 _MyCompanyName_. All rights reserved.
    #import <UIKit/UIKit.h>
    @interface PhotoView : UIImageView {
    CGPoint touchPoint1;
    CGPoint touchPoint2;
    @property (nonatomic) CGPoint touchPoint1;
    @property (nonatomic) CGPoint touchPoint2;
    @end
    // PhotoView.m
    // Molinker
    // Created by Victor on 6/18/08.
    // Copyright 2008 _MyCompanyName_. All rights reserved.
    #import "PhotoView.h"
    @implementation PhotoView
    @synthesize touchPoint1;
    @synthesize touchPoint2;
    - (id)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
    // Initialization code
    self.userInteractionEnabled = YES;
    return self;
    - (void)drawRect:(CGRect)rect {
    // Drawing code
    // Handles the start of a touch
    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    UITouch *touch = [touches anyObject];
    touchPoint1 = [touch locationInView:self];
    // Handles the end of a touch event.
    - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
    UITouch *touch = [touches anyObject];
    touchPoint2 = [touch locationInView:self];
    if(touchPoint1.x>touchPoint2.x)
    //move Left
    NSLog(@"Move Left");
    if(touchPoint1.x<touchPoint2.x)
    //move Right
    NSLog(@"Move Right");
    - (void)dealloc {
    [super dealloc];
    @end
    // TestTouchAppDelegate.m
    // TestTouch
    // Created by Victor on 6/17/08.
    // Copyright _MyCompanyName_ 2008. All rights reserved.
    #import "TestTouchAppDelegate.h"
    #import "RootViewController.h"
    #import "PhotoView.h"
    @implementation TestTouchAppDelegate
    @synthesize window;
    @synthesize navigationController;
    - (id)init {
    if (self = [super init]) {
    return self;
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Configure and show the window
    //[window addSubview:[navigationController view]];
    UIImage *myImage= [UIImage imageNamed: @"scene1.jpg"];
    CGRect frame = CGRectMake (0, 20, 300, 400);
    PhotoView *myImageView1 = [[UIImageView alloc ] initWithFrame:frame];
    myImageView1.userInteractionEnabled = YES;
    myImageView1.image = myImage;
    [window addSubview:myImageView1];
    [window makeKeyAndVisible];
    - (void)applicationWillTerminate:(UIApplication *)application {
    // Save data if appropriate
    - (void)dealloc {
    [navigationController release];
    [window release];
    [super dealloc];
    @end
    Message was edited by: Victor Zhang

  • Purchase Order Workflow - dialog step not receiving terminating event

    Hi,
    We have a scenario wherein based on the release groups and release strategies, different peope need to release the PO's.
    I have been able to develop the workflow for this successfully, but here is where I am facing an issue.
    After the PO has been created, based on the release group and strategy, it gets routed to the appropriate 1st approver. On their approval, the PO gets routed to the 2nd approver. Once the 2nd approver approves, the dialog step doesnt get completed and is still waiting for the terminating event. Event trace shows that the event is getting published, but there is no workitem to receive the terminating event. I am not sure why this is occuring for only 2nd approver onwards whereas for the 1st approver, the terminating event is received by the workitem.
    I am using start conditions for my workflow to ensure only 1 instance of the workflow is triggered for a rel groups and rel strategy and release code, else I am multiple instances each time an approver approves the PO. I am not sure if the start conditions are causing this issue with the terminating events not being received with the workitems.
    Any assistance is welcome.
    Thank you,
    Satish

    From the information provoided it seems you are using PO that is subjected to Release of PO for multiple Release Code and each Release Code Release is being done by one approver. If that is the case then I think the Terminating event should get caught. Please check whether the Terminating event that is getting triggered is specific to the Release Code or not.
    Thanks
    Arghadip

  • Not receiving mouse events

    In my ActionScript code I am adding mouse event handlers for a Canvas object (actually a subclass I wrote).  When I move the mouse over a child DisplayObject that was added to the Canvas, I receive all of the appropriate event handlers.  However, when I move the mouse over an area where there are no children, the events stop getting dispatched to my code.  I am verifying this using traces.  I do receive a mouse out and mouse over events, and I also receive a single mouse move event immediately prior to receiving the mouse over/out events, but nothing further.
    Does anybody know why the mouse events would stop when the mouse is directly on top of the Canvas object and not over any children?

    In my ActionScript code I am adding mouse event handlers for a Canvas object (actually a subclass I wrote).  When I move the mouse over a child DisplayObject that was added to the Canvas, I receive all of the appropriate event handlers.  However, when I move the mouse over an area where there are no children, the events stop getting dispatched to my code.  I am verifying this using traces.  I do receive a mouse out and mouse over events, and I also receive a single mouse move event immediately prior to receiving the mouse over/out events, but nothing further.
    Does anybody know why the mouse events would stop when the mouse is directly on top of the Canvas object and not over any children?

  • Plugin not receiving all events

    i have a plugin similar to the example plugin. in the load method, i
    register for all event notifications with the code below. but i am only
    receiving types
    PluginConstants.DEFINITION_CREATED
    PluginConstants.DEFINITION_DELETED
    even for the events that come through taskChanged() have the above types.
    are the other type in PluginConstants not implemented? or am i doing
    something wrong?
    thanks
    public void load(PluginObject pluginData) throws PluginException {
    // Enable this block to subscribe to notifications.
    PluginManager pm = null;
    InitialContext context = null;
    try {
    context = new InitialContext();
    PluginManagerCfgHome pmHome =
    (PluginManagerCfgHome)context.lookup(PLUGIN_MANAGER_CFG_HOME);
    pm = pmHome.create();
    Plugin plugin = (Plugin)ctx.getEJBObject();
    pm.addInstanceListener(plugin,
    PluginConstants.EVENT_NOTIFICATION_ALL);
    pm.addTaskListener(plugin,
    PluginConstants.EVENT_NOTIFICATION_ALL);
    pm.addTemplateDefinitionListener(plugin,
    PluginConstants.EVENT_NOTIFICATION_ALL);
    pm.addTemplateListener(plugin,
    PluginConstants.EVENT_NOTIFICATION_ALL);
    } catch (Exception e) {
    e.printStackTrace();
    throw new PluginException(PLUGIN_NAME, "Unable to get
    PluginManager: " + e);
    } finally {
    close(context, pm);

    hi andrew
    thanks, i dont see a checkbox for 'publish events', do you mean the
    'enable auditing' checkbox? this seems to be producing more events now.
    Andrew Pitonyak wrote:
    "Simon Evans" <[email protected]> wrote in message
    news:[email protected]..
    i have a plugin similar to the example plugin. in the load method, i
    register for all event notifications with the code below. but i am only
    receiving types
    PluginConstants.DEFINITION_CREATED
    PluginConstants.DEFINITION_DELETED
    even for the events that come through taskChanged() have the above types.
    are the other type in PluginConstants not implemented? or am i doing
    something wrong?
    thanksAre all events published? When you open your workflow and then choose
    properties, is there a check mark in the field to publish events?
    Andrew Pitonyak

  • MovieClip does not receive Custom Event

    I have a problem understanding Events and event handling.
    I have a movieClipA wich contains several other movieClips (a1,A2,A3, etc..)
    MovieClipA is parent of movieClips (a1,A2,A3, etc..)
    In movieClipA I use the following code:
    addEventListener ( "Pieter", pieterFnP ) ;
    dispatchEvent(new Event("Pieter"));
    private function pieterFnP (e:Event) {
            trace ("PIETER - Parent");
    } // Is fired when recieving Event
    In movieClips (a1,A2,A3, etc..) I use the code
    addEventListener ( "Pieter", pieterFnC ) ;
    private function pieterFnC (e:Event) {
             trace ("PIETER - Child");
    } // Is NOT fired ?
    When I execute the application, function "pieterFnP" is fired, but "pieterFnC" NOT.
    Thank you.
    Pieter

    In the Flash manuals I see/read; events traveling from the stage down to the object and then bubling up.
    Quote::
    When an event occurs, it moves through the three phases of the event flow: the capture   phase, which flows from the top of the display list hierarchy to the node just before the   target node; the target phase, which comprises the target node; and the bubbling phase,   which flows from the node subsequent to the target node back up the display list hierarchy.
    My First attempt was Capturing events send by the Child objects. But then I had the problem that after the child object was gone, the eventhandler stil existed. Pointing to a null Child object. This behaviour is also described in the Flash manuals. But I never could pin-point which variable (object) still contains a 'reference' ? to the event object.
    So I thougth about a different approach. Which seams to me, was the logical solution, meaning Bubbling down and up.
    My design approach was to define a child DisplayObject, which perform some action, after recieving a event from is parent. So I don't have to keep track of all the created objects. More like the Idea of fire and forget.
    Ok, I go back to my virtual drawing board
    Thanks,
    Pieter

  • ContinuousQueryCache not receiving EntryInserted events

    I am trying to create a ContinuousQueryCache based on a collection of keys and to get insertion events for all of those keys as they enter the cache. My simple code is below. What I am seeing is that I get EntryInserted events in my listener for all of the keys that are in the underlying cache at the time I make the ContinuousQueryCache, but that I do not get any subsequent EnteryInserted events for keys that are later inserted.
    Am I doing something wrong, or am I misunderstanding the operation of CQC's?
    In my server's cache config, I have all "dist-*" caches mapped to a distributed-scheme. In my client's cache config I have "dist-*" mapped to the remote-cache-scheme. I don't think I'm doing anything special there, but if there is any way that the cache config can be messing this up, please let me know.
    The example C# .NET code:
            class CacheListener : ICacheListener
                public void EntryInserted(CacheEventArgs evt)
                    Console.Out.WriteLine("EntryInserted " + evt.Key);
                public void EntryUpdated(CacheEventArgs evt)
                public void EntryDeleted(CacheEventArgs evt)
            static void Main(string[] args)
                var keys = new[] { "a", "b", "c" };
                var values = new[] { 1, 2, 3 };
                var baseCache = CacheFactory.GetCache("dist-testcache");
                baseCache.Add(keys[0], values[0]);
                baseCache.Add(keys[1], values[1]);
                var filter = new InFilter(new KeyExtractor(IdentityExtractor.Instance), keys);
                var cqc = new ContinuousQueryCache(baseCache, filter, new CacheListener());
                Thread.Sleep(500);
                baseCache.Add(keys[2], values[2]);
                Thread.Sleep(5000);
            }Output:
    EntryInserted b
    EntryInserted a
    No insertion for item "c" at all, even though if I look at the cache through a cache viewer utility I can see that it was definitely inserted. Does anyone know why this is, and what I can change to get those subsequent insertion events to appear in my listener?
    Thanks

    I was able to reproduce this behavior with Coherence 3.5.2 using Java.
    Coherence 3.5.3 ContinuousQueryCache behaves as advertised.
    /Mark

  • Event dispatch between two objects not received

    Hi,
    In my application there are two objects: one is
    myAc:ArrayCollection and the second is a mySprite:Sprite. myAC
    stores coordinates and other custom fields of the mySprite objects.
    I would like the sprite object to dispatch an event to the
    array so that when changes are made to the mySprite object the myAC
    can update itself.
    In the mySprite object I have added the following code to
    dispatch the event.
    var e:Event = new Event("spriteMove", true);
    dispatchEvent(e);
    trace("dispatched");
    In the myAC object I have set the following listener
    this.addEventListener("spriteMove", spriteMoveHandler, true);
    private function spriteMoveHandler( event:Event ):void
    trace("recd event");
    var sp:Object = event.target;
    trace(sp.x);
    I do not receive the event in the myAC object.
    However, when I set a similar thing between the mySprite
    object and one of its subobjects viz. myPoint I am able to receive
    the event.
    Thanks for the help,
    Raju

    Please do not duplicate your posts. It can be very confusing when two different persons answer the post in different ways.

  • ICal event times not in sync

    Maybe this has been answered but I couldn't find anything on a search...
    so my iCal on my computer and my iPhone iCal aren't syncing event times correctly. For instance I'll have an event on computer iCal at say, Friday 1pm but on iPhone iCal it says 6pm. All of the events have the wrong times on the iPhone.
    I've reset my iSync history and that did not fix the problem. I've "Replaced information on this iPhone" and that didn't work either. Currently I sync my Entourage calendar to iCal and that works fine. But again when I then sync iCal to my iPhone it screws up all of the dates.
    Any ideas why?

    figured it out. it was a time zone syncing problem.

  • VI containing Event Structure will not receive front panel events in LabVIEW Real-Time.

    Hi again, I'm working in my first UI (attached VI).
    It works when running directly from PC. It doesn't when running from cRIO, there's the message "VI containing Event Structure will not receive front panel events in LabVIEW Real-Time". I've been reading and I found that "Event structures on RT targets do not support events associated with user interface objects, such as VI panels or controls. For example, associating the Value Change event with a control does not work. RT targets support only user events".
    Is that the problem? If it is, how can I create Mouse Up, Mouse Enter, Value Change (or other user interface events) user events?
    If I run my VI in FPGA mode should it run?
    Attachments:
    HMI.vi ‏33 KB

    Since it looks like you are new to the whole RT and machine control, I recommend giving this a good read: NI LabVIEW for CompactRIO Developer's Guide
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • When syncing I receive a message "could not be synced because sync session failed to start"

    When syncing I receive a message "could not be synced because sync session failed to start".  I am using the latest iTunes and also phone is on latest version.

    I'm wondering whether you're using the latest iTunes or not. If you're using the latest iTunes and still face the issue, then you should restart both your computer and your iPhone to make sure the sync process go on properly.

  • All of a sudden tonight when I went to sync with my iTunesMacPro, I received an error message that the iPhone could not be sync'ed because it needed 6.25 GB more space

    I have a 16 GB iPhone 4S.  Tonight when I went to sync with my iTunes on my MacPro, I received an error message that the iPhone could not be sync'ed because it needed 6.25 GB more space. I still have 2.5 GB free. I sync'ed last night fine.  How could I need 8.75 GB (6.25 +2.5) more space on a 16GB iPhone.  I have added nothing but audio podcasts to my iTunes library on my Mac in the last two days and I have not change the sync setting on my iPhone.  Something has gone haywire.  Any ideas.  Mahalo, Oahu Guy

    I resolved this after some analysis.  Turnes out that iTunes was not recognizing that my music was already installed on my iPhone, so when I tried to sync, iTunes was attempting to load all my music a second time, and there was not enough room on my iPhone for that.  I did a restore from backup today and this appears to have resolved the problem.  I initiatied an iTunes sync and it worked fine.  Not sure where the glitch was.  Could have been in the latest update of the iTunes software.  Not sure.  Anyway, I'm good now.
    Oahu Guy

Maybe you are looking for