| Author |
|
stoem Big Kahuna

stoem == Stefan
Joined: 05 January 2004 Location: United Kingdom Posts: 1079
|
| Posted: 19 March 2004 at 17:19 | IP Logged
|
|
|
post here
__________________ Flashcomguru.com
|
| Back to Top |
|
| |
toyansk Flashcom Newbie


Joined: 10 February 2005 Location: Brazil Posts: 19
|
| Posted: 09 April 2005 at 00:16 | IP Logged
|
|
|
Hi,Israel Cazares!
Congratulations for your tutorial!
But, how can I do the same thing (switch) between two different files?
I need to develop an application which has two files: one that should control (Switcher.fla) and other that should receive the information (Viewer.fla). On the first one, when clicking on a button, the action should be sent to load the files through loadMovie on the second one.
I have posted this doubt at several Flashcom's foruns, but I still haven't found the solution. I will be very grateful if you can help me in this matter.
Thank you in advance and best regards,
Airton Toyansk
|
| Back to Top |
|
| |
stoem Big Kahuna

stoem == Stefan
Joined: 05 January 2004 Location: United Kingdom Posts: 1079
|
| Posted: 09 April 2005 at 12:19 | IP Logged
|
|
|
maybe this helps
http://www.macromedia.com/devnet/mx/flash/articles/live_vide o_switcher.html
stoem
__________________ Flashcomguru.com
|
| Back to Top |
|
| |
toyansk Flashcom Newbie


Joined: 10 February 2005 Location: Brazil Posts: 19
|
| Posted: 10 April 2005 at 15:14 | IP Logged
|
|
|
Thanks, Stoem!
But I'm newbie in ASC and I didn't understand very well this tutorial. It seems very confused to me.
I've developed an example which it works about dynamic text. In this example, when I submit the button, this file sends a variable to the second file, and a message is showed in this second file.
If you want, I can send you these flas, if you can help me...
best regards,
Airton Toyansk.
|
| Back to Top |
|
| |
redonkulus Flashcom Newbie

Joined: 01 March 2005 Posts: 13
|
| Posted: 03 May 2005 at 20:09 | IP Logged
|
|
|
hello,
I am stuck and need some help. I read this article and it works great if you have two cameras but what if I wanted to have one stream be a webcam and the other stream be the video out from a computer (i.e. what would display on the monitor). Is this possible? I am looking everywhere but all I see are examples that show how to use the get.camera function to use multiple cameras and no other video input.
Thanks for your help
Seth
|
| Back to Top |
|
| |
Ultimate Moderator

Super Flashcommer
Joined: 05 January 2004 Location: Canada Posts: 1130
|
| Posted: 03 May 2005 at 20:21 | IP Logged
|
|
|
Flash can only see an "input" if it is in the camera list. Camtasia installs a driver that allows you to capture the screen and output it to flash. It shows up in the camera list as Camtasia I think.
__________________ Blog: http://www.sti-media.com
Community Site: http://www.FMSGuru.com
Game: Checkers
|
| Back to Top |
|
| |
redonkulus Flashcom Newbie

Joined: 01 March 2005 Posts: 13
|
| Posted: 03 May 2005 at 22:26 | IP Logged
|
|
|
is there a way to get input from the video card to show up as a camera in flashcom?
|
| Back to Top |
|
| |
Ultimate Moderator

Super Flashcommer
Joined: 05 January 2004 Location: Canada Posts: 1130
|
| Posted: 03 May 2005 at 22:38 | IP Logged
|
|
|
Supposedly there is a video card driver that will allow you to do this.
Though I can't recall which one.. I'll search around a bit, if I find something I'll post again.
__________________ Blog: http://www.sti-media.com
Community Site: http://www.FMSGuru.com
Game: Checkers
|
| Back to Top |
|
| |
hacebe Flashcom Badass


Joined: 27 December 2005 Posts: 142
|
| Posted: 04 March 2006 at 01:52 | IP Logged
|
|
|
im trying to put the cams in a combo box and make it switchable(i think this word doesnt exist)...
//in here it list all cams in the combo box "cams_cb";
var cam_array:Array = Camera.names;
for(i=0;i<cam_array.length;i++){
cameras = cam_array;
cams_cb.addItem({label:cameras , data:i});
}
and in the combo box actions ive put
on(change){
myCam = Camera.get(this.value);
trace(this.value);
video_mc.attachVideo(myCam);
ns.attachVideo(myCam);
}
nothing changes!!! i want to change the camera from the combo box selection!!! is there a way to do that???
tnx
|
| Back to Top |
|
| |
stoem Big Kahuna

stoem == Stefan
Joined: 05 January 2004 Location: United Kingdom Posts: 1079
|
| Posted: 04 March 2006 at 13:29 | IP Logged
|
|
|
not sure if this helps but check out
http://www.flashcomguru.com/tutorials/switch_cams.cfm
stoem
__________________ Flashcomguru.com
|
| Back to Top |
|
| |
hacebe Flashcom Badass


Joined: 27 December 2005 Posts: 142
|
| Posted: 04 March 2006 at 16:48 | IP Logged
|
|
|
yeah, buti want to list all cameras in the cmbo box, and when i choose one, the video feed changes to the camera ive choose!!! you have a component in your website, that makes what i want, but thats so difficult to me to setup, i have done everything in my app, now I need to make the cam changes
anyway.. Thanks Stoem
if u find out what im looking for, please post in here... its very important
|
| Back to Top |
|
| |