Ios :: Flex AND IOS Push Notifications?

Aug 31, 2011

It's posible build a Flex 4.5.1 and Adobe AIR app for iOS, And use push notifications?

View 2 Replies


Similar Posts:


Actionscript 3 :: Send Push Notifications From AIR Desktop Client Without Middleware?

Jan 19, 2012

With this PHP code:

<?php
$apnsHost = 'gateway.sandbox.push.apple.com';
$apnsCert = 'apns-dev.pem';

[code].....

View 2 Replies

Javascript :: Notifications To Flex On Multiple Objects

Feb 24, 2010

I know that with ExternalInterface, we can register ActionScript functions that will be callable from JavaScript, But i want to register actionscript function for of one class which has multiple instance created in the Application. So how it will recognize which object action script function will called from java script.

[Code]...

View 1 Replies

Flex :: Display Notifications In Windows Taskbar?

Aug 19, 2011

I've searched a LOT, but dint get the solution to this: Is there a way to display flex notifications in Windows taskbar, ie, the notification should still be visible even if the application s not exactly frontmost in the monitor..There are ways to do this on AIR, or even flex4..but not Flex3??

View 1 Replies

ActionScript 3.0 :: Scope Within Package - Trace Always Shows A Blank Array Before Push And An Array With One Object In It After The Push

Nov 12, 2009

I have a class in which I have declared an array. The functions in that class are designed to make changes to the array, but it's not working:

[Code]...

Anything I do to customerCheck treats it as if it were a new array. This is especially obvious when using customerCheck.push in addCharToCheck() -- the trace always shows a blank array before push and an array with one object in it after the push... then next time it does the same. I know I'm making some sort of fundamental error regarding the scope of the array within the class but I just cannot find any good information on how to fix it! Moving to AS3 (been coding it for all of about 3 weeks) is a nightmare so far, and it seems to be the 'easy' stuff that causes me problems

View 6 Replies

ActionScript 3.0 :: Stop All Notifications

Dec 11, 2011

stop all notifications
 

View 3 Replies

Django - HTTP Push Examples In Flex?

Aug 31, 2009

I am trying to create a simple board game (a kind of checkers), where users will be able to play online with each other using flex application as a client.

I am using django application to process the game on the server side. And I come across the problem, if one user made a move, I can send it to a server, but how do I let the opponent know about it?

The way I am thinking to do it is to create a timer and send requests to the server asking was opponents move done or not....But here we have 2 limitations:

1) Each client would produce big amount of requests (not sure how server will work if I have e.g 100 such clients)

2) If players will chose game with a time limit for example 5 minutes/per game it will be very important to show them situation on the board as soon as it changes (without a pause), but timer will send request only on timer event, so if for example I will chose tick interval to 5 seconds it will mean that 5 seconds another side will not be aware of the situation changes.

View 4 Replies

Flash :: Push Data To Flex Client?

Mar 14, 2010

I want to push data to flex clients. I am talking about anywhere between 5000-15000 concurrent users, need to get data every time a currency is changed so that means lots of changes for lots of users.

I have been looking into WebOrb.net, but the performance seem very poor (100 users concurrent) for a product so pricy (we purchased a license).

So, I have to look into alternatives, I know there's fluorineFx but it seems no one is really using it for products and it lacks in examples and documentation.

My question is: what products can answer my needs (.net backend) and what are the performance I can expect out of these products?

View 1 Replies

Flex :: Push The Player Object Into A Vector?

Jul 7, 2010

I'm having a very weird problem with a vector in my application.

Details...I have the following classes.

Person,Player,PlayerController.

Player extends Person. Person extends ObjectProxy in order to enable binding.So the Player class has the [Bindable] tag.The PlayerController class contains a remote object calling a php method to receive a firstname and a lastname and when the CallResponder gets the result from the call,the result handler creates a Player instance. At that moment I am trying to push the player object into a Vector..

The problem is the following.Every time the push method is called, the vector is being populated with the last player that was created but not just in the end of the vector. It replaces the other instances as well! So the vector always contains the most recent player instance but in every position of it.I have also tried doing it with an Array and the results are the same.

View 1 Replies

Php :: Push Information From A Proxy To A Flex Application?

Jul 29, 2010

So I have a PHP proxy that gets information from a website. Let's say the proxy gets the information from (www.example.com). It checks if the number of lines returned is the same as before, if not then there are more lines, it counts the difference then it need to push this information to the Flex client saying that it has new information, (x) more lines have been written.I am not really sure how to do the push mechanism on the php proxy because I am not sure how to actually push from the proxy to the client, never done it before.

View 2 Replies

Flex :: Push From Server To Blackberry Playbook?

Jul 13, 2011

Is possible to make a "push", initiated by a server, to send data down to a Blackberry playbook application?

If so how is this best implemented in Flex/Actionscript? ie. How do we capture this on the client?

View 1 Replies

Actionscript :: Flex - Push A View From A Class?

Nov 16, 2011

I have a remoteobject class that handles all interactive with my remote data service. each time a call is made the dataservice checks that the user has a valid session. if they don't it won't run the requested method and it returns a fail. I can capture this fail in the fault handler. What I want to do it if it happens is push the login screen to the user.I have tried the following

var navigator:ViewNavigator;
navigator.activeView.navigator.pushView(views.LoginScreen);

But this is not working and fails with Cannot access a property or method of a null object reference. which makes sense. so my question is how can I get a reference to the current running view navigator object and push the view?As requested here is the full remote object class

package remoting
{
import events.RemoteExceptionEvent;
import flash.events.*;

[code]....

View 1 Replies

Flash - Add Chat Sound Notifications?

Jan 6, 2011

I have developed a chat site and would like to add a sound notification (beep or something) when there is a new message kind of like facebook chat.

I know this requires flash but have no idea on how this could be accomplished. Can anybody explain how to make this or a good resource that explains it?

View 2 Replies

Flash :: Xml - Javascript / Notifications In Slideshow Pro?

Jun 11, 2009

I am using SlideShow Pro (a flash slideshow/media player) on a site. I want to receive notifications (in JavaScript) from the flash player when a video is finished playing so I can load another video via Ajax.There is an onVideoEnd() ActionScript call in the API:

[Code]...

How do I receive notifications or execute this in JavaScript? Slideshow Pro comes with many examples of how to send messages TO SlideShow Pro, but none on how to receive notifications via JavaScript. The docs say that the entire API is available via JavaScript

View 1 Replies

Java :: Push Data From Service To Flex Clients?

Dec 9, 2010

Since my service, I would like to push data (messaging).

@Service
@RemotingDestination
public class LoginService implements ILoginService
{

[Code]....

With this implementation, nothing to do ... clients receiveid nothing.

So, how I push data from a service like that ? Is it possible ?

View 2 Replies

Actionscript :: Flex Long Polling (server Push) Without BlazeDS?

Oct 19, 2009

Apart from using BlazeDS, are there any pre-existing libraries that implement long polling (or server push) in Flex?I've read I like to implement Flex to Server comet / long polling for games, but he's only asking if it's possible to implement... Not if implementations exist.

View 2 Replies

Javascript :: Flex Ajax Bridge, Or Any Other Push Method With ColdFusion?

Jul 5, 2011

Is it easy to implement Flex Ajax Bridge with ColdFusion? Where can I learn how to use it? My frontend is pure HTML+JS and I just need the push capability. I thought of using Websocket Event Gateway and Server Sent Event (aka EventSource) but seems like they don't have much browser support quite yet. Any pure jQuery short/long polling option Any good Server Sent Event polyfill solution available for older browsers?

View 3 Replies

Actionscript :: PureMVC Proxies Send Notifications Themselves ApplicationFacade?

Aug 24, 2009

In the PureMVC framework, Proxies communicate with the ApplicationFacade (and thus any interested components) via a Notification. Should this Notification be sent via their own instance, or the Singleton instance of the ApplicationFacade? Frankly, does it matter?

[Code]...

The second method looks more verbose and less intuitive to me. Moreover, the Proxy has the ability to send Notifications, which, in my mind, means it probably should. Are there instances where the Proxy should only send a Notification via the ApplicationFacade instance?

View 1 Replies

ActionScript 3.0 :: Receive Email Notifications Upon Receiving Replies From Others?

May 4, 2011

Is it possible to receive email notifications upon receiving replies from others?

View 5 Replies

Java :: Push Data From BlazeDS Without Receive Message From Flex Client?

Dec 9, 2009

I am using BlazeDS for data-push feature in my Flex application project. From the official tutorial, Getting started with BlazeDS, it shows messaging example with producer/consumer from API. but how can I implement server side which doesn't need to be invoke from Flex client, but from within server-side instead. I got some idea but I don't know how to do because I'm a Flex developer, not Java developer In Google, there's a tutorial show about I need to extend ServiceAdapter class in Java-side, which extends Invoke method. Do I need to extend other class instead of this to do what I want?

View 3 Replies

Flex :: Messaging - Selective Server Data Push Using Spring Blazeds

Mar 1, 2011

I have a flex UI which communicates with server using spring blazeds. I have a very typical requirement of Live data streaming on a panel in UI. Requirement is like this, We have an object say, Person and server keeps pushing its data on blazeds message destination where UI panel consumer has subscribed and hence user can see this live data in a panel. User can open multiple panels in same browser to view data for different Persons at the same time (e.g id=1,2,3 respectively). There can be multiple UI users who may be viewing the same data for person id=1 at a given time, lets say.

Basically I want to separate data between UI panels. UI panel opened for person id=1 must not display data of that for person id=2. I am doing this using headers-selectors, but apparently I found out that the differentiation to select and display what data happens on UI which is causing performance issues. I learned that using subtopics may improve performance. But, before proceeding for it, I want to know, will UI browser end up in receiving data irrespective of subtopic assigned to data and then consumer will decide to accept it or not?

View 1 Replies

Java :: MessageBrokerServlet Initialization Problems- Push Data To Flex Application

Jan 25, 2012

I am working on a server push from Java to Flex. But some how the MessageBrokerServlet is not getting initialized, seems like it is calling a method from: flex.messaging.config.LoginCommandSettings.setMatch() Eventually I found out that this method indeed does not exist in that class (LoginCommandSettings). I there something else that is going wrong?

[Code]....

View 1 Replies

ActionScript 2.0 :: Check For External Variable To Show Update Notifications?

Mar 25, 2011

I was wondering if it's possible to show a notification for new updates in a swf file.

Like what if I upload a .txt file somewhere and inside it there's a variable, something like;

Code:
newupdate="Version 2.0 is ready for download at domainname.com."

And this will show up in a text field somewhere in my swf file. Is this possible? Are there any pros and cons about using this method of notification?

(Using Flash CS5, AS2)

View 3 Replies

Flex :: Taken Push View Object Into Next View?

Sep 28, 2011

My problem is that when I try to pass an object from the navigator.pushView(view, dataobject), I can't figure out how to access the dataobject from actionscript. I can access {dataobject.property} from MXML easily, but I want to set a variable in the new view to the passed dataobjects property.

View 1 Replies

ActionScript 1/2 :: Pop/Push MC To Stage?

Mar 11, 2010

attempt to create an array that will contain 8 instances of 2 different movieclips. As each (checkmark MCs) is added to the stage, another attention getter clip will be removed (circle MCs).So on my first frame of this command one bluecircle should be popped from the stage, and one bluecheck pushed. Then the same with the green clip on the next frame, again back to the blue's on the following frame, and finally both one blue set and one green set.I had attached them and removed them via strict declarations of attachMovie(...) and removeMovieClip(...) linked to the next/previous buttons I had encoded but found that this was a bit buggy as it sometimes generated extra clips that weren't necessarily added and removed correctly depending on the step the user was at.

View 3 Replies

ActionScript 3.0 :: Push A Vector To The UI To Use?

Jun 8, 2011

I have a main.mxml in a flash builderproject. In some library I have a vector. I need to push that vector and its contents to the ui to use to populate lists and what not. How would that be done?

View 1 Replies

Flash :: How To Add Data With Push

Jan 19, 2012

I am trying add data to an array, but using myArray.push() isn't working the way I want it to. I am using a datagrid so the array has to be in the format var tabledata:Array = [{'Column Name':'Something', 'Another Column':'More data'}]; but then adding to it using tabledata.push([{'Column Name':'Something', 'Another Column':'More data'}]); Doesn't seem to be working - it adds a row but doesn't add any data to the cells. **Fixed it, just have to remove the square brackets in the push command tabledata.push({'Column Name':'Something', 'Another Column':'More data'});

View 2 Replies

ActionScript 3.0 :: Push In The Right Direction?

Jan 21, 2009

I need a push in the right direction. I have been programming ActionScript 3 for about a year and am just starting to separate my code out of the Flash using classes and things like that.

Anyways here is the problem. [URL].. Go here and upload an image and notice how when you drag the image a black box still appears to visually show the image is under the Obama logo image. I am trying to figure out how this was accomplished.

First: Is a mask being used to only show the image in that particular area? Or is this an transparent gif above the uploaded image? If a mask is being used then how is the rectangle achieved and how is the drag and drop still working when the mask hides the image?

Second: How is this box effect being achieved? Those are the most important questions. I figured out how to make an image resize using a slider. However I am curious how this guy did the advanced image resizer.

If someone can point me in the right direction as to how this is accomplished that would be great. [URL]..

View 1 Replies

ActionScript 2.0 :: Not Allowing To Push MC?

Sep 27, 2009

I would like that the user couldn't move the MC anymore on frame 2, is that possible?Because when I am in frame 2, I can still move the MC and it goes back to frame 1 again [code]...

View 4 Replies

Push Away State And Return

Oct 17, 2010

I have a movie in which I have several squares that are pushed away once you mouse over them, this is achieved with some action script. What I need to do is once the viewer leaves the flash window where these squares are housed, I need them to go back to their original state, or the state in which all of the square line up against each other and do not break up because of the the mouseover effect.

[Code]....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved