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

saracinesca
saracinesca
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
8

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by saracinesca
Customize the badges you want to showcase on your profile
Re: change audio/video source on the fly - Adobe LiveCycle 03-12-2010
I would to solve the same issue with the camera, but I don't know about some kind of "webcamera manager".This is my code... (don't works), thanks in advance.......private function cameraChanged(event:Event):void { videoContainer.publisher.stop(); videoContainer.publisher.addEventListener(StreamEvent.STREAM_DELETE, onCameraChanged); } videoContainer.publisher.cameraNameIndex = cameraSelection.selectedIndex.toString(); //maybe here is wrong. videoContainer.publisher.publish(); videoContainer.publi...

Views

101

Likes

0

Replies

0
ScreenShareExampleSpark - Adobe ScreenSharing doesn't popup - Adobe LiveCycle 19-11-2010
I'm running the ScreenShareExampleSpark from the just updated sampleApps folder.on Windows Vista, lccs.swc updated and Flax SDK 4.1The example works fine locally on my notebook, but the same code doesn't works online on my test website.The "Adobe ScreenSharing" fire but doesn't popup. Any advice?Thanks.

Views

571

Likes

0

Replies

1
Re: Too many push messages - Adobe LiveCycle 09-11-2010
strange...I'm monitoring the chatroom in Room Console by realtime Logs... (LCCS Navigator)here the stats:60 min in chat (x2 user), 60 push messages and 100 MB used (is it normal? 100MB in p2p mode, I've setted requireRTMFP="true")The strangeness is that at https://portal.collaboration.adobelivecycle.com/the report for the same room shows:165 min in chat, 797 push message and 198 MB used.I'm planning to use LCCS for my business and I want to be sure about costs.

Views

98

Likes

0

Replies

0
WebCamera How to set display name - Adobe LiveCycle 09-11-2010
It' possible to setup a display name different from the name on LCCS?I have OWNER on LCCS but I want display my name.(I don't wont change the name on LCCS)

Views

628

Likes

0

Replies

2
Too many push messages - Adobe LiveCycle 09-11-2010
924 push messages were sent in 52 minutes in a room with 2 users.I have a simple code with only:a AudioSubscribera AudioPublisherand a WebCameraWho sends these messages?Can I reduce this number?

Views

645

Likes

0

Replies

2
AudioSubscriber: how to move up/down volume - Adobe LiveCycle 04-10-2010
I'm playing with rtc:WebCamera and I would change the AudioSubscriber volume by a Slider.Somethings like this, but it don't works.private function speakerVolumeChanged(e:SliderEvent):void{ audioSub.soundTransform.volume = e.value; } thanks.

Views

544

Likes

0

Replies

1
Re: change audio/video source on the fly - Adobe LiveCycle 04-10-2010
Many thanks...Yes, I'm using multiple microphones/cameras.Now this is the right code (for me) private function micChanged(event:Event):void { audioPub.stop(); audioPub.addEventListener(StreamEvent.STREAM_DELETE, onMicChanged); } private function onMicChanged(se:StreamEvent):void{ audioPub.microphoneManager.micIndex = micSelection.selectedIndex; audioPub.publish(); audioPub.removeEventListener(StreamEvent.STREAM_DELETE, onMicChanged); }

Views

99

Likes

0

Replies

0
change audio/video source on the fly - Adobe LiveCycle 04-10-2010
something like this:private function micChanged(event:Event):void { audioPub.stop(); audioPub.microphoneManager.micIndex = micSelection.selectedIndex; audioPub.publish(); }but this don't works...

Views

711

Likes

0

Replies

3