Share Flash Screen (multiuser Whiteboard)

Aug 8, 2011

How can I make a Flash Application that can be shared? Shared in the sense of like a paint box. If someone is painting there then the painting must be shown to all users. This means each user can write and edit in the paint box at the same time..

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Multiuser Pictionary / Can Share Drawing?

Mar 9, 2009

I'm trying to make a multiuser (Flash Media Server 3 compatible) version of Pictionary in AS3.(Using Flash CS3).The part that is particularly confusing me is "how can I refresh the drawing on the screen of the user who is not currently drawing?"Looking at them both they are not drawing "real time" but instead refreshing the drawing every second or so. That would be fine for me... I just can't figure out how to share the drawing. (Essentially taking a snapshot of the current state of the drawing and sending it to the other players.)Currently I'm trying to send mouse position data to the SharedObject and then back to the drawing tool but this just creates a data lag and it doesn't show on the other player's screen.

View 2 Replies

AS3 :: Flash - Library For Multiuser Drawing Application

Feb 6, 2012

There are several flashbased painting/sketching online apps that allow multiple users to paint simultaneously. Some examples: [URL]For a project, we want to implement something similar. The question is, whether we need to start from scratch or whether there are any libraries available that could facilitate development (especially the networking part).

View 1 Replies

Media Server :: Screen Share With Online User?

Sep 20, 2011

I'm working on e-learning project using ASP.NET,C#,SQL Server and Windows XP.I'm developing an interactive videoconferrencing using WebCam and at the same time i want to share the user desktop screen. Through FMS videoconferrencing(WebCam) is working fine. But i'm unable to share screen to online user

View 3 Replies

Java :: Flash Whiteboard Web Applet?

Nov 5, 2009

I want to put a whiteboard on my website so users can draw something and then save the image to the server containing the drawing. Are you aware of any open source/free already made whiteboard application out there ? I also need the save image function.

View 2 Replies

Php :: Any Opensource Flash+PHP Multyuser Whiteboard?

Jun 3, 2010

Is there any opensource Flash+PHP multyuser whiteboard?

View 4 Replies

ActionScript 3.0 :: Open Source Whiteboard In Flash?

May 13, 2008

Anyone know of an open source whiteboard in Flash? Something similar t

View 6 Replies

Actionscript 3 :: Share TextArea Component In Multiple SWF - Runtime Share Library?

Jan 12, 2011

How to share TextArea Component in multiple swfsaylib.swf (has TextArea Componenet)main.swf (Import TextArea Componenet from lib.swf)section.swf (Import TextArea Componenet from lib.swf)

View 1 Replies

Javascript :: "Share Screen" On Skype Link?

Mar 18, 2012

Is there a way to "share screen" Skype link? I need to import it both in html page and flex application.

View 1 Replies

Actionscript 3 :: Flex Multiuser Multi-chatroom Apps?

Jul 15, 2011

I need a custom multi-user multi-chatroom app to extend an existing Flex app that I have.

I obviously wouldn't like to develop it from scratch, but focus only on the customizations and integration.

Are there any products (free or commercial) that provide multi-chatroom functionality from which I could start?

View 3 Replies

C# :: Multiplayer Whiteboard Race Condition?

Jun 5, 2011

Imagine a multiplayer whiteboard where several people can draw at the same time. To keep it simple, lets say there's a single object on the whiteboard which can be moved or deleted by any user. There is no notion of user-owned objects (i.e. it's important that any user be allowed to manipulate any object... it's a free-for-all whiteboard)My problem is this... if two users try to do a different action on the object at the same time, i.e. one deletes it the other moves it, what happens?

Right now- in just letting the messages go through, it gets all out of whack.One idea was to have a serverside control which resolves who has control of the object, and nothing is allowed to happen clientside until that conflict is resolved. Conflict resolution can be based on a first-come, first-serve basis.Even though this can happen very fast, the small delay (~50-300ms) is unacceptable since movement must be instantaneous on the client side. For example, instead of manipulating objects, think of a pen. For there to be a delay till they've already started drawing... not good!

Another idea was to have a "request control" button, which asks the serverside extension for control.... same idea as before, but now they aren't frustrated by the initial delay of pen drawing. This is also not so good though since they must hit that button till they can do anything, and this whiteboard is really meant for kids..

View 3 Replies

ActionScript 2.0 :: How To Create Clear Button For Whiteboard

Sep 9, 2009

I am new to Flash. I downloaded the whiteboard component and it is really cool. I am trying to include a button to the component so that upon button click all the drawings like rectangle, line, arrow etc., must get cleared.

View 1 Replies

Media Server :: Synchronizing RSOs In Whiteboard Application

May 2, 2010

I have prepared a CUSTOM WHITEBOARD. This whiteboard is shared by two clients. They BOTH can draw on the board using TOOLS in the WHITEBOARD PANEL SET of the application. When someone DRAWS I do following actions:
 
1: Capture the WHITEBOARD FULL AREA/CANVAS using jpgEncoder().

2: Then I send this BYTEARRAY to the FMS server as Remote Shared Object.

3: The client then draws that RSO onto the WHITEBOARD.
 
Pretty simple though.
 
BUT, I am having synchronization ISSUES. The issues are as follows:
 
Issue 1: Image updates with no synchronization and seems to be zig-zag/random  when they both draw at a normal speed.

View 2 Replies

Flex :: Create A Simple Drawing Board/whiteboard Functionality?

Jun 17, 2009

How do I create a simple drawing board/whiteboard functionality in Flex ?

View 2 Replies

Flex :: Drag And Drop - Whiteboard Application - Like Visio / MS Powerpoint

Dec 7, 2009

I am creating an application that will allow users to model system information by allowing them to Drag and Drop objects from a Flex Tree into some sort of canvas/grid ie: like a whiteboard application eg: Visio/MS Powerpoint etc. The application requires the following functionality:

Drag and drop items from a Tree to some sort of canvas/grid Move items within the canvas/grid Delete items from the canvas/grid Resize items in the canvas/grid
Save the position of the items to a database Has good performance in terms of rendering components with images I am not sure which Flex component is best suited to the canvas/grid. I was thinking of using either:

Datagrid or (can't drag/drop to cells easily though) Grid or (can drop to cells via gridrow/griditems mxml tags) TileList or (problem with this is that it rearranges all items when you move 1 item) some other list? I think the grid would suite my purposes the best as it would enforce objects to be placed within a gridrow/griditem.

View 1 Replies

Flash :: Create A Share Button In AS3?

Mar 24, 2010

creating an AS3 Facebook share button? I need to be able to customize the title, description and picture.

View 3 Replies

Flash :: AS3 Swf Hosting An Swf Share The Same Array?

May 22, 2009

I have an AS2 swf that has an array that is updated when a user clicks on items on the screen. The array stores the currently selected items. This As2 swf is hosted by an AS3 swf loaded in using Loader class and a local connection between them is managed by swfBridge. I want to know what the best way for both AS3 and AS2 swfs to share this array is? or how can I call a function in the AS2 (client) swf and return the array to the AS3 (host) swf when it needs to read the items from the array?

View 1 Replies

ActionScript 3.0 :: Share Flv On Facebook From Within Flash?

Jan 20, 2011

i have something like a flv player in my flash site and i load different flvs depending on user interaction. I want to add a "share on facebook" functionality so the videos will be shared on fb in a way similar to youtube sharing. I've serached a lot but there seems to be a lack of documentation on this subject.

View 0 Replies

ActionScript 2.0 :: Share Data Between Different Flash?

Sep 22, 2004

alright.. recently i needed to share data between different flash .swfs on a homepage.. so i tried to use Shared Objects to do so. sofar its fine.. i tried it .. and as long as the data is stored on my harddisk. the sharedObject "cookies" work fine.. but when i put the site online.. they simply dont work anymore..

could this have something to do with security settings of the browser used?.. doesnt a web browser allow flash to access the harddisk to read and write shared objects.. is there another.. simpler and more reliable way to send data from one .swf file to another..?? (without using php -> my webserver doesnt support this sofar )

View 1 Replies

Flash :: IDE, Duplicated Objects Share Instances?

Jul 30, 2009

I'm using CS3+AS3 and I have a Flash project with a menu, the items in the menu can expand to reveal more items and this is currently done by having each state of the menu in a separate frame, and then doing "gotoAndStop" in this movieclip when buttons are pressed.Perhaps not the best solution, but works very well for this purpose, but as you can imagine, this means that the "same buttons" in "different frames" will do the same thing.All frames were constructed by duplicating the first frame, then moving the buttons around and adding more buttons where needed. So now I set instance names to the buttons in frame #1 and added event-listeners. But when I tested the project, the buttons that had event-listeners in frame #1 also had them in all the other frames. Now this could be an awesome feature, but right now it's more of a huge mystery to me.

ance names in frame #2, but yet they share the same instance. I searched all over the IDE but I could not find any functionality to actually determine what instances are linked, how to link instances or unlink instances. But I do know that two objects share instances when you duplicate them.So my question is, is there no functionality in the Flash IDE to actually make more efficient use of this?

View 1 Replies

Flash :: Share Same NetConnection Object Between Two Views?

Jun 11, 2011

Flex Mobile applications are view based. And I'm using Adobe Cirrus (im assuming its the same for any FMS netConnection) Does anyone know how to maintain a persistent netConnection between views in a flex Mobile Application?[code]I want to be able to trace(netConnection.nearID) on this view, go to another view and trace(netConnection.nearID) and get the same result. and be able to have a cirrusStatusHandler() function like I have a above to listen for cirrus events. Then be able to do netConnection.close() on another view if i wanted to to be able to close the connection.

Brainstorming Ideas what I was thinking I could do:I was thinking I could maybe set up the connection on the main ViewNavigatorApplication mxml file, but i have so much going on and being triggered based on netConnection status events it seems it might be really complicated to handle everything from that mxml file on each of the views. Maybe I could declare the netCon vars in the ViewNavigatorApplication mxml file, and just add event listeners to those vars on each view? But i'm not familiar with accessing vars that exist in the mainViewNavigatorApplication mxml file.I just need to be able to make the connection once, and then it stays persistent until I call netConnection.close()I guess I could use separate views where I dont need the netConnection and just have this particular view use "states" inside the view where the netCon needs to be persistent. It just seems silly be be using states since this is a view based application.[code]and the same in my Home View but i'm getting a null error when i try and call trace(netConnection.nearID) in the crationComplete function on profileView (which is after homeView) to see if it still has the same netConnection and should then be able to get the same nearID

View 4 Replies

Flash :: Share Classes Between Parent And Child SWF?

Aug 13, 2011

So i have a situation where i want to pass a object of a class say 'MyBigAwesomeClass' from a child to a parent. I import the class definition into both the parent and child. Now, if i load the child swf from a location that is relative to the location of the parent , all is fine, however the moment i load it using a full absolute path, it treats the definitions for 'BigAwesomeClass' in parent and in child as different and does not allow an object of the type 'BigAwesomeClass' to be assigned to an object of the same in the parent class.I am totally stumped, and have banged my head over ApplicationDomains, including using this code

loader.contentLoaderInfo.addEventListener(Event.COMPLETE,swfLoaded);
var context:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain);
loader.load(new URLRequest(_file.url),context);

[code].....

View 4 Replies

ActionScript 3.0 :: Opening Facebook Share In A Div Above Flash?

Aug 3, 2009

how to open the Facebook Share page above my flash content inside of a div.

Here is the JS I would use to open it in a new window:

function facebook_share() {
u="http://thepageiwanttoshare.com";
t="pagetitle";

[Code].....

I then call this JS code from flash with ExternalInterface.

This code will basically open the facebook share page in a new window 626x436 with no toolbar etc.

This works perfectly, but I want to take this functionality and instead load that content into a specific div, which I guess I can then place above my Flash (using the z-index of the div and the wmode transparent param on the flash embed statement).

This doesn't seem like it would be too difficult, but I have never done something quite like this before. I heard that Adobe AIR actually has a Window class that can be used like an html window within flash, but unfortunately I am using AS3/Flex SDK.

View 0 Replies

ActionScript 2.0 :: Facebook Share Buttons Within Flash?

Sep 16, 2010

Anyone have experience with this? I'm not much of a javascript person. This would be the code you could use on an html page.

I fugure you somehow have to have flash read the js file from fbook and then pass the share_url variable to it?

[Code]...

View 3 Replies

ActionScript 3.0 :: Add A Facebook Share Button To Flash Ad?

Aug 10, 2011

I need to add a facebook share button to a flash ad.

View 1 Replies

Actionscript 3.0 :: Have Facebook Share Function In Flash?

Jan 19, 2010

I'm currently doing a project that have a share button that linked to different social networking site.

I search the net, All i have to do is load

View 1 Replies

ActionScript 2.0 :: Share Social Sites In Flash?

Dec 16, 2008

How do i create social sites (Myspace, facebook etc) share links in flash- so my site A should have an icon for another site B, when clicked one can go to the site B and share my site A there. is there any component in 2.0 to get it done.. or it simply be adding icons for these sites and using geturl .

View 1 Replies

Flash :: Share Cookie / Data Between Multiple Domains And Swf's

Jan 4, 2010

I am trying to create a login system where a user would be able to login inside of one flash game on say, [URL], and then that same login data would be preserved for all the games on [URL] and also the games on [URL] and [URL] I am new to shared objects in flash so if anybody knows of a way to do this in either php, as3, html, js (or a mixture of all) then that would be great.

(PS. I would prefer not to use a method that requires a javascript bridge to retrieve cookies as this is impossible for games that are played on game-portal sites where only a swf file is used)

View 1 Replies

ActionScript 3.0 :: Flash - Share Objects Only Working Locally?

Sep 23, 2010

I'm having problems with Shared Objects. They seem to work on my machine but when I put them on a server they're not working anymore.Basically I have a page with a video player and I only want the video to play when the user visits the page for the first time.This is the code:

PHP Code:
var beenVisited:Boolean=false;var shared:SharedObject=SharedObject.getLocal("visited");if (shared.data.visits==undefined) shared.data.visits = 1; beenVisited=fa

[code]......

View 2 Replies

ActionScript 2.0 :: Create A Facebook Share Button In Flash?

Mar 11, 2011

Is there any possibility to create a facebook share button in flash? need it in as2 . I need that button to share a link on facebook from a swf file.

View 4 Replies







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