Sharing information Instantly between multiple Local SWFs without a server

Hey there everyone, so here is my problem:
I would like to Have a string (JSON object)  that is shared across X number of SWFs that are running locally on the users machine. In addition to that, I would like to 'instantly' (with in a few MS) know when said JSON object has been updated. This needs to be done _without_ a remote server, and in AS3 (duh )
What I've tried:
Shared Object - Great for storing information across multiple SWFs and have had no problems reading / writing however since it is not remote there is no event (that i know of) to listen to on SWF_A to tell me when SWF_B has changed the SO
Local Connection - this would work with the Shared Object, in place of event listeners to tell everyone else when to update.  However, you cannot 'connect' to the same name more than once.  Becase of this, each application would need to know the name of every other SWF that the user is currently running, and notify individually
And yes, I thought of Timers, and no, they are not the ideal /acceptable solution.
Looked for 3rd party libraries, haven't found any.
Any insight would be super useful.  Thank you.
-Andrew

Yea, I thought about that also, kind of creating a stack, however there are 2 main issues with that.  A timer is still implemented for the 'controlling SO' swf to check for updates, and when / where does the main SWF get created.  Let's say the user has a SWF off my home page www.myexampleurl.com, one a subsequent page: www.myexampleurl.com/checkScores.php, and one in a MySpace widget (LOL myspace) www.myspace.com/myspaceIsLame then the main homepage would create this SWF, however if the user doesn't have the homepage open, where would the SWF go?  This would require working out each application to determine if it  has premissions to open up it's own instance of this swf to handle things.
To do it right, seems like it would take a long time, and to do it fast, seems like it would get super sloppy super fast.  I do appreciate your help though!
Any other thoughts?
-Andrew

Similar Messages

  • Question/Problem Sharing iTunes Library between multiple users

    Hello all,
    I have a question (potential problem) regarding sharing an iTunes Library between multiple users.
    In the past, I had placed the iTunes folder in /Users/Shared, and created an alias to it in the "Music" folder of each user, and it worked fine.  However, with a recent upgrade to Mac OS 10.5, only the Home user account can access the library. 
    I read the Apple Support Document http://support.apple.com/kb/ht1203 uner Mac OS X which specifically states *not* to move the iTunes folder, just the iTunes Media folder (which I don't have, would that be iTunes Music?).
    Any recommendations?  Should I delete the different alias, move the iTunes folder back to the home user, and then follow the instructions in the support document?
    We're also looking to sync music purchsed on our iPod touches, as well as apps (which weren't supported in our privous Mac OS X version.
    Any advice is appreiciated.

    David Guay wrote:
    ... iTunes Media folder (which I don't have, would that be iTunes Music?).
    yes.
    specifically states *not* to move the iTunes folder
    *do* keep the entire iTunes folder in /users/shared, however, instead of creating aliases, launch iTunes while holding the option (⌥) key, click choose library when prompted, and select the iTunes folder in /users/shared.
    obviously, only one iTunes at a time can access the library !

  • Sharing of video between multiple applications,

    Is there software that allows the sharing of the iSight cam between multiple applications at the same time.

    Welcome to Apple Discussions, HappyMacste
    Apple's iSight "Your camera is in use by another application" message says "iSight can be used by one application at a time."
    http://b-l-a-c-k-o-p.com/CamCamX.html claims "you can use all your favorite cam applications AT THE SAME TIME."
    EZ Jim
    PowerBook 1.67 GHz   Mac OS X (10.4.10)    G5 DP 1.8  External iSight

  • Sharing iMail Accounts Between Multiple Computers

    I have a Macbook Pro and an iMac and would like to know how to share the iMail account information between them so I do not have to setup the accounts from scratch. Does anyone know how to do this? Any help would be appreciated.

    You need to have all the music stored in a shared folder.
    http://support.apple.com/kb/HT1203
    If you move all the files around with Win Explorer, itunes will lose the paths to the files. It might be best to move everything to the shared folder and have them start over with a blank library (new ratings, playcounts)
    The last lines in that article state
    +When another user of the computer has imported new music from CD, repeat steps 6 through 8 to add the music to your library.+
    You might want to use a little program like "itunes folder watch" to do it automatically for you.

  • Connect to multiple local instances without enterig passwords

    Oracle 10R2 on Linux Gentoo
    I have several local instances which I want to connect in shell script without setting password explicitly. But when I use @connect_string it seems to me that os authentication is ignoring by oracle. Look at this:
    oracle@omega1 ~ $ sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 24 16:38:40 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    oracle@omega1 ~ $ env | grep ORACLE_SID
    ORACLE_SID=orcl
    oracle@omega1 ~ $ sqlplus /@orcl as SYSDBA
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 24 16:39:05 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-01031: insufficient privileges
    Enter user-name:
    oracle@omega1 ~ $ groups
    oinstall dba

    I wouldn't like to enter sys password interactively because i use sqlplus from shell script which is ran under cron (unix scheduler).
    remote_login_passwordfile is already set to exclusive:
    oracle@omega1 ~ $ sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 24 17:04:33 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> show parameter remote_login_passwordfile
    NAME TYPE VALUE
    remote_login_passwordfile string EXCLUSIVE
    I've also recreated password file with no result:
    oracle@omega1 ~/oracle/product/10.2.0/db/dbs $ orapwd file=/home/oracle/oracle/product/10.2.0/db/dbs/orapworcl entries=20 force=y password=*********
    oracle@omega1 ~/oracle/product/10.2.0/db/dbs $ sqlplus /@orcl as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 24 17:13:23 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-01031: insufficient privileges

  • Sharing a library between multiple user accounts on the same PC

    I have an XP pc setup for the kids and each has their own login so they can have their own bookmarks, shortcuts, desktop, etc. They each have an iPod and use iTunes. I want them to share the same music library so that when one downloads or rips a song, It's available to each of them. Using the default installation, it is currently not working the way I want it to. Is what I'm describing possible? If so, how do I configure it?

    You need to have all the music stored in a shared folder.
    http://support.apple.com/kb/HT1203
    If you move all the files around with Win Explorer, itunes will lose the paths to the files. It might be best to move everything to the shared folder and have them start over with a blank library (new ratings, playcounts)
    The last lines in that article state
    +When another user of the computer has imported new music from CD, repeat steps 6 through 8 to add the music to your library.+
    You might want to use a little program like "itunes folder watch" to do it automatically for you.

  • How can i avoid sharing information automaticly between my iphones

    i have 3 iphones with the new software, but i dont want to share information among them, how do i do that

    Actually, you never said anything about not being able to log out on either phone.
    Go to your support profile - https://daw.apple.com/cgi-bin/WebObjects/DSAuthWeb.woa/446/wo/na8PRIlf99e4AnJyoJ maNw/0.49.1 login and remove the device from there.

  • Sharing Music Playlists between multiple Itunes ID's

    Hi there
    As I was the first member of our family to get an Ipod, the Apple & Itunes ID has always been mine. When my daughter got her Ipod, she just logged on using my apple credentials and the playlists were obviously available. With my wife and daughter now moving onto Iphones, they have set up their devices using new Apple ID's and Itunes ID's, and I just wondered if it's possible that I can still share my playlists?
    Obviously we don't want to purchase music twice etc, but all 3 of us require the unique id's for Facetime etc
    Can anyone help, I can't seem to find a solution to what I hoped was an easy question

    To copy music between two computers follow these instructions.
    http://docs.info.apple.com/article.html?artnum=93063
    To copy playlists works similar:
    On Computer #A select the playlist you want to transfer
    From iTunes Menu - File select "Export Song List ..."
    Transfer the resulting xml file
    On the target computer from iTunes Menu - File select "Import" and select the above mentioned xml file

  • Sharing iOS updates between multiple Macs on same home network

    Good morning -
    Does anyone know if it it's possible to share the iOS update file from one Mac to another? I downloaded iOS 4.3.1 for my iPhone 4 this morning, but if I can avoid having to download it all over again on my wife's Mac for her iPhone, that would be great! If the file is in the Finder somewhere, I would think I could move it over using File Sharing...
    Thanks for any help!

    there is no problem doing that on a windows machine on a windows machine you just press shift and restore in itunes and point to the downlloaded firmware file

  • Merged Project - Can you share images between multiple projects/topics without images actually copied into each project?

    I have a merged project that I use the same images in several topics in different projects. I use the resource manager but each time these images are being copied into each project. My merged project is getting so large it is taking forever to download. I hope I'm just missing a step to eliminate the redundant usage of these images.

    I'm concerned since the complete merged projects have increased in size on a steady basis. For example, January 2014 project size was 288mb and I just published again today and it has increased to 353mb. There are so many images replicated over and over in each merged project. We are getting complainants from our customers on the size of our online documentation. I was hoping for a easy solution and thought this might be the best way.

  • Difference between compiling locally and on the server with FDS

    Hi,
    I am doing soming very basic testing with remote Java objects
    and I am finding that if I create a FDS project and compile on the
    server the code runs, if I create a FDS project and compile locally
    it gives me the following error :
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error
    NetConnection.Call.Failed: HTTP: Failed"]
    what gives?
    The compiler in Flex Builder string is :
    -services "C:\Archivos de programa\Apache Software
    Foundation\Tomcat
    5.5\webapps\flex\WEB-INF\flex\services-config.xml" -locale en_US
    Any insights?
    David

    Hi,
    I am also facing an issue regarding compiling mxml using
    remote objects using flex sdk. The error I am getting is
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Security.Error error Error #2048: Security
    sandbox violation:
    http://localhost:9080/iReports/flexFiles/mxml/AdminServices.swf
    cannot load data from
    http://localhost:9080iReports/messagebroker/amf."
    Can u help me?
    Thanks,
    Cheree

  • Store images to local disk without content server

    Hello
    I want to setup a content repository to store content (images & docs) to file system.  I had a look in transaction oac0 and tried testing a few configurations but no luck.  This is only for a temporary\interim solution.  Is there a way to set this up without a Content Server being installed?
    Is this supported?
    Regards,
    Dave

    Dear Dave,
    I think the best way for this scenario would be to define a data carrier in transaction DC20. For this data carrier you can for exmaple maintain a network path where the originals are stored.
    In CV01N or CV02N you can then add the original and just enter the data carrier and the filename. To access the file in the network path you must not check it in. Till the file is checked out the system will always try to access the file in its original directory without needing any content server.
    Best regards,
    Christoph

  • Share Data Source between multiple report projects in Microsoft SQL Server 2012 Reporting Services

    I have a reports solution in 2012 which contains multiple report projects one each for target deployment folder and we use TFS 2012 for report deployment.
    We have a template project which has a bunch of template reports and all the datasources used in different reports.
    When I develop a report, I cannot "Preview" in TFS but, for deploy this used to work fine util the reports solution was in TFS 2010 & Visual Studio 2008 R2. Since we moved to TFS 2012 & SSRS 2012 not being able to deploy till I create all
    the necessary datasources for each project and now all the developers complaining that they cannot develop reports in TFS itself as they cannot preview (this problem was existing previously) and now not being able to deploy as it errors for each report "Could
    not find specified rds file". I tried messing around with the .rptproj file DataSources tag that did not help either by modifying it like below.
    <DataSources>
    <ProjectItem>
    <Name>DB.rds</Name>
    <FullPath>Template\Data Source\DB.rds</FullPath>
    </ProjectItem>
    </DataSources>
    Is there a way I could share a Data Source between multiple projects in Microsoft SQL Server 2012 Reporting Services?
    Thanks in advance.............
    Ione

    Hi ione721,
    According to your description, you want to create a shared data source which works for multiple projects. Right?
    In Reporting Services, A shared data source is a set of data source connection properties that can be referenced by multiple reports, models, and data-driven subscriptions that run on a Reporting Services report server. It must be within one project.
    We can't specify one data source working for multple projects. In this scenario, we suggest you put those reports into one project. Otherwise you can only create one data source for each project.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • [CS4]  save on a local file without  user intervention

    hey,...sorry for my english...
    i work with a other application who need to have the
    information written in the local file without an user intervention
    so...
    i would like to know if it s possible to write or rewrite on
    a local file without intervention of the user...
    whitout the ""save dialogue box" or with a managed save
    dialogue box...
    how to write in a local file without user intervention...
    i need really an answer to make real my project...
    thans for your conprehension

    hey
    thx a lot for your help ...
    if i understand well ...
    it is possible to write or rewrite in a specific folder
    who is determinated by the application folder of
    an specific AIR apllication
    who during his install give the ""authorization to
    write/rewrite /save in his specific installation foder"
    so it s possible with combination of an AIR application.....
    can you give me some information about this AIR application
    that i must build...
    some direction to ask help
    because i dont have the knowledges to do that
    what style/type of AIR application
    what charachteristics of this AIR application....
    so some information that can i use to ask help in the good
    place...
    one more time thx a lot for your help...;)

  • Localization issue: adding strings to locale swfs

    We are currently building an application that hosts flex
    modules within an ASPX application. We have a "homepage" that
    allows users to configure which dialogs (we call them widgets) will
    show on their homepage. At this point, we have had one resource
    bundle (.properties file) that we have used for all of the strings.
    We compile these resource bundles in the locale swfs for each of
    the 8 langauges we support.
    The twist is that we also allow customers to write "custom
    widgets" in Flex that they can add to the homepage if they so
    desire. It sounds like they could create a custom .properties file
    which would allow us to create a seperate resource bundle for the
    strings for their dialog. But then would the en-us.swf have to be
    recreated to include their bundle in the overall swf? If so,
    wouldn't the client have to have our "standard app" .properties
    file to make one cumulative en-us.swf?
    Or can you have multiple locale swfs for different dialigs
    (ie Standard.us-en.swf and Custom.us-en.swf)? That way our standard
    strings stay seperate, but the client can still add their own?
    Anyone have any thoughts?

    I think you can have separate locale swf. I think you can use
    loadResourceModule() to load any resource swf. See FB3 help topics:
    Localizing Flex Applications
    Using resource modules
    Creating resource bundles at run time

Maybe you are looking for

  • Batch determination and BAPI_GOODSMVT_CREATE

    Hi experts! I'm new to batch determination and I'm facing an issue. I've set up a batch determination configuration and it works fine when I post a goods movement in dialog process (MB11) entering * in the batch field. Now I'm trying to do the same w

  • Zipeg and limewire no longer functioning (both bounced back).

    Greetings, Zipeg and limewire are no longer functioning on my mac (limewire first, about 3 weeks ago). In fact, i've tried to re-downloaded both softwares but the applications will only bounce back and not functioning. Previously (2 months ago), i ha

  • Firefox wont open any pages

    I've been using Firefox for a couple of years with no trouble. Firefox installed an update on Friday and then stopped working. It won't open any pages. I tried uninstalling an reinstalling. I've set my firewall not to block Firefox from accessing the

  • Re: Q150 DisplayPor​t to HDMI output FAIL

    Got it.  I replaced the Video driver package which has an audio driver as well

  • How to create a software package for PDA?

    On the configuration guide for MI7.1, page 30, it refers a OSS note 1042773 about how to create a software package on PDA. However when I try to pull out note 1042773, I get an error: " An SAP note with the number requested could not be found.  " Ple