Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

jcastelain
jcastelain
Offline

Badges

Badges
3

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
5

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by jcastelain
Customize the badges you want to showcase on your profile
Re: Working with Screen Sharing - Adobe LiveCycle 22-06-2010
Any news on this screensharing feature?If there are other solutions, I'd be interestedThanksJulien

Views

135

Likes

0

Replies

0
Re: SimpleChat issue - Adobe LiveCycle 28-07-2009
Hello,I compiled the code bellow with the two .swcs that are given in the AFCS SDK Navigator Air application (player9 and player10) So that's just a SimpleChat instance right in the ConnectSessionContainer, nothing really adavanced, just the basicsI also recorded a video of my screen, to show you exactly what is happening, that is, when the enter key is pressed in the SimpleChat instance the text does not get cleared,You can view this video here : http://vimeo.com/5813985or here : http://www....

Views

166

Likes

0

Replies

0
Re: SimpleChat issue - Adobe LiveCycle 28-07-2009
Hi again, And thanks for your code and helpI think I wasn't clear in my description. For me, everything's working fine except on little issue, I put the swf file online so that you could test for yourself, the problem I'm having is that when you hit the "enter" key in the textinput to send a message through the chat, the text in the text input (the message you typed) stays there, and if you click the send button, the text in the text input gets cleared. You can view this here, http://punkscum.or...

Views

161

Likes

0

Replies

0
Re: SimpleChat issue - Adobe LiveCycle 28-07-2009
Of course, I have several files, basically, I was following the video tutortials that ship with the sdkThis is the main mxml file : import mx.managers.PopUpManager; protected var loginDialog:LoginDialog; protected function creationCompleteHandler():void { loginDialog = new LoginDialog(); loginDialog.connectSession = connectSession; loginDialog.addEventListener("login", loginHandler); PopUpManager.addPopUp(loginDialog, this); PopUpManager.centerPopUp(loginDialog); } protected function loginHandler(event:Event):void { PopUpManager.removePopUp(loginDialog); } [Event(name="login")] import com.adobe.rtc.session.IConnectSession; [Bindable] public var connectSession:IConnectSession; protected function loginHandler():void { if (userName.text == null || userName.text.length < 1) return; connectSession.authenticator.userName = userName.text; connectSession.login(); callLater(function():void { userName.text = "" }); var e:Event = new Event("login"); dispatchEvent(e); }

Views

162

Likes

0

Replies

0
SimpleChat issue - Adobe LiveCycle 28-07-2009
Hi everyone,I just got the latest build and the AFCS Navigator, very cool stuff ... congrats to the team working on this.I'm using a SimpleChat instance in my application and I noticed this strange behavior :When you type in text in the text input and press the enter key, the text input does not "get cleared", whereas if you type on the send button, the text gets cleared, I tried override the SimpleChat class, and overrideing the sendNewMessage method, but I don't think that's the correct way to...

Views

1.8K

Likes

0

Replies

6