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

richtextformat
richtextformat
Offline

Badges

Badges
14

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
101

Discussions

Discussions
0

Questions

Questions
40

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by richtextformat
Customize the badges you want to showcase on your profile
Re: Webcam not released on SessionEnd - Adobe LiveCycle 14-04-2010
i think this could be my bad nigel. looks that way, will let you know.dub.

Views

111

Likes

0

Replies

0
Re: Webcam not released on SessionEnd - Adobe LiveCycle 14-04-2010
hey hironmayi do have a call to _webcamsPublisher.stop(); in my code, amongst many other things (MeetingRoomMediator class is currently 1559 lines long, too much to post all of here)

Views

109

Likes

0

Replies

0
Webcam not released on SessionEnd - Adobe LiveCycle 14-04-2010
We have this prop in our ALCS session:private var _webcams:WebcamSubscriber;when the session ends we simply call close:_webcams.close();However, the little green light next to the inbuilt cam stays lit on our MBP's.Is there something else we need do too?

Views

522

Likes

0

Replies

5
Re: Scaling a SharedWhiteBoard - Adobe LiveCycle 14-04-2010
i have figured out how to do this:1. ensure that every instance of your SharedWhiteBoard is the same width & height across all connected machines2. NEVER change this width & height3. put every instance of your SharedWhiteBoard in a Canvas container that is exactly the same size as said SharedWhiteBoard4. use the transform.matrix property of your containing canvas to scale the container, but not the SharedWhiteBoardpainful, that was.

Views

113

Likes

0

Replies

0
Scaling a SharedWhiteBoard - Adobe LiveCycle 14-04-2010
I used to scale my SharedWhiteBoard by putting it in a canvas and adjusting scaleX & scaleY on said canvas, but a problem has come to light with that technique.1. Person A starts a sharedwhiteboard with bg image at 800 x 450px and a space available for the whiteboard the same sime.2. Size of whiteboard is set to match image size3. Person B enters the same ALCS session with a space for their whiteboard of 1200 x 600px4. Person B's whiteboard sets its dimensions to 800 x 450px, then uses whiteboar...

Views

474

Likes

0

Replies

1
WBModel.addShape Error - Adobe LiveCycle 14-04-2010
Hey everyone, me again!I am creating a SharedWhiteBoard thus:_whiteBoard = new SharedWhiteBoard();_whiteBoard.connectSession = _afcsSessionProxy.connectSession;_whiteBoard.width = _whiteBoard.height = MetricsConstants.WHITEBOARD_DEFAULT_SIZE;_whiteBoard.setStyle("backgroundAlpha", 0);_whiteBoard.addEventListener(FlexEvent.CREATION_COMPLETE, _onWhiteBoardCreationComplete);_whiteBoard.addEventListener(WBCanvasEvent.PROPERTIES_TOOLBAR_ADD, _onWhiteBoardPropertiesToolBarAdded);_whiteBoard.addEventLi...

Views

400

Likes

0

Replies

1
Re: ConnectSession stopping halfway thru login - Adobe LiveCycle 02-03-2010
Nigel, RaffGood to hear from you guys again. Thanks for the fix, I have just logged in again successfully.Man, it's good to be back.r.

Views

115

Likes

0

Replies

0
ConnectSession stopping halfway thru login - Adobe LiveCycle 01-03-2010
Hello everyoneDunno if you remember me, I posted A LOT of questions here last summer about what was then called Cocomo. The client has had a fresh burst of cash so i'm back on the project now after a six month lay off, and i'm gonna need reminding of how a few things work.So firstly, I have the problem that the header here suggests: ConnectSession stopping halfway thru loginI'm opening a sesh & listening for these events:_connectSession = new ConnectSession();_connectSession.userManager.addEvent...

Views

511

Likes

0

Replies

4
Re: No audio: what gives? - Adobe LiveCycle 16-10-2009
listening to stream receive:audPub.addEventListener( StreamEvent.STREAM_RECEIVE, onListen);indications are i'm getting one (well, the listener fires anyway) so i'm assuming something wrong with the AudioSubscriber set-up. none of the AudioSubscriber listeners are firing...

Views

145

Likes

0

Replies

0
No audio: what gives? - Adobe LiveCycle 16-10-2009
'lo alli've got this pretty simple audio app: import com.adobe.rtc.events.StreamEvent; import com.adobe.rtc.events.CollectionNodeEvent; import com.adobe.rtc.events.SessionEvent; private function onCreationComplete ():void { connSesh.addEventListener( SessionEvent.SYNCHRONIZATION_CHANGE, onConnSeshSync); connSesh.login(); } private function onConnSeshSync (event:SessionEvent):void { audPub.addEventListener( StreamEvent.STREAM_RECEIVE, onListen); audSub.addEventListener( CollectionNodeEvent.SYNCHRONIZATION_CHANGE, onListen); audSub.addEventListener( StreamEvent.STREAM_RECEIVE, onListen); audSub.addEventListener( StreamEvent.CONNECTION_TYPE_CHANGE, onListen); audSub.addEventListener( StreamEvent.NO_STREAM_DETECTED, onListen); audPub.subscribe(); audSub.subscribe(); audPub.publish(); } private function onListen (event:Event):void { trace('onListen'); } 'thing is: no audio, complete silence. any ideas why?

Views

773

Likes

0

Replies

2