Sort of off topic, but same old question looking for a new answer

Ok I'm ready to start a new site. I'm going cheap as it's all coming out of my pocket including hosting. I want to put a video chat room on my site. Is there anyway to capture a webcam in this fashion in director. I've done tons of searching but I can't really find anything. I'm trying to avoid using the flash communication server for three reasons. 1) I already have the director multiuser server that will host up to 1000 users (the room will never be anything close to that big 50 peeps tops) and my web host will support it and install it for me. 2) I can't find anything at a really cheap price. I'm looking at 25 cam users at once... 3) Actionscript is nothing I've every really worked with before, but I could do the lingo programming.
I have a few questions First of all I read something about putting a flash element on the stage, and that the flash player is what captures the webcam. But I assume that it still needs flash communication sever to upload the video. Is this correct?
Is there an xtra that will do what I  want?
I read something about encoding the video to realvideo, but I have no clue how as I've never done anything like that before. Will this work and do you know of a tutorial for this?
Do you know of a really really cheap flash comm host?
Really off topic but, I could write the text chat end of it in cold fusion. Is there a known way to easily add the video in this way?
Does anyone know of a cheap off the shelf video chat room that I can put up on my site and just pay for the bandwidth overage that it uses?
Thanks for any help any of you could give me.
Cane

There are several 2.4 GHz MacBook pros shipped over several years.
If this is your Mac (2007 model) scroll down to the memory section and read:
http://www.everymac.com/systems/apple/macbook_pro/stats/macbook-pro-core-2-duo-2 .4-15-santa-rosa-specs.html
Standard RAM:
2 GB
Maximum RAM:
6 GB*
Details:
2 GB installed as two 1 GB modules. No slots free.
*Apple officially supports a maximum of 4 GB of RAM but third-parties have been able to upgrade the system to 6 GB of RAM using one 2 GB and one 4 GB memory module.
Site sponsor Other World Computing sells MacBook Pro memory, as well as hard drives, batteries, carrying cases, and accessories.
... and that sponsor is not a bad place to get RAM at all. They are experts, and back it up with a "money back if it does not work in your Mac" guarantee.

Similar Messages

  • WebAssist Cart help? I know it's off topic but... Could really use some help...

    I've got a shopping cart that is working and I'm trying to update the
    quantities in inventory by subtracting the quantity ordered from the total
    inventory in a table called ITEMS.
    I can update a record after a sale in the cart, but right now it is
    updating by completely replacing the value of the items in inventory with
    the quantity in the checkout cart. So, if there are 800 items, after the
    update, there are -1 total in inventory, not 799.
    The problem is that I don't know how to coordinate the item(s) in the stored
    shopping cart with a call to their ID and quantity in the online database.
    Here's what I have so far:

    Ahhhhhhhh Jeff...<br />If I can get this going...<br /><br />I spent days looking for this solution.<br />Thank you very much.<br />Just bought Dreamweaver CS3 and am battling through the bells and whistles.<br /><br />Liz<br /><br />----- Original Message ----- <br />From: "jefferis" <[email protected]><br />To: <[email protected]><br />Sent: Tuesday, June 19, 2007 9:50 AM<br />Subject: Re: WebAssist Cart help? I know it's off topic but... Could really <br />use some help...<br /><br />>A new message was posted by jefferis in<br />><br />> ADDT - PHP Application Development --<br />>  WebAssist Cart help? I know it's off topic but... Could really use some <br />> help...<br />><br />> On 6/16/07 3:06 PM, in article [email protected],<br />> "[email protected]" <[email protected]> wrote:<br />><br />>> Hi jefferis....<br />>><br />>> How did you solve the problem?<br />>> I am having the same problem trying to incorporate an inventory code into <br />>> a<br />>> shopping cart that will deduct the number of items purchased from my <br />>> total<br />>> inventory to let me and my customers know how many items I have remaining <br />>> in<br />>> stock.<br />>><br />>> Ex:<br />>> inventory: 500 plants<br />>> purchased: 20 plants<br />>> remaining inventory: 480 plants<br />><br />> Yes I did.<br />><br />> I've been struggling with this piece of pie for about 5 days and<br />> thought it might benefit others, so here's a way to update your quantities<br />> in INVENTORY after a checkout success.  I read another thread but found it<br />> way too complex and depended on holding inventory in the session:<br />> http://www.webassist.com/professional/support/kbcompletethread.asp?DiscID=33<br />> 046<br />> But you may lose the info when you go offsite to Paypal, e.g., to complete<br />> the transaction.<br />><br />> Here's my approach using the "checkout_success.php" page.  Using this page<br />> works because user arrives here ONLY after a successful purchase.<br />> First of all, I used the BSM php sample store as a starting point.  I <br />> added<br />> an ItemQuantity field to the items DB to track the stock or items in<br />> inventory in the store.<br />><br />> In order for this automatic deduction of sold items to work, it must be<br />> placed within the do while {  area of the  display page for the cart's<br />> items. } The code is commented below:<br />><br />> <?php<br />> //WA eCart Show If Start<br />> if (!$eCart->IsEmpty())     {    // IF CART NOT EMPTY...<br />> ?><br />>    <h2>Order Receipt </h2>  // STANDARD STUFF TILL NEXT COMMENT<br />>    <br /><br />>    <h3 class="eCart_OrderHeaderInfo">Order number: <?php echo <br />> session_id();<br />> ?></h3><br />><br />>    <p class="eCart_OrderHeaderInfo">This is your order receipt. Please <br />> make<br />> a copy for your records. An email will also be sent to you. </p><br />>    <table class="eC_ShoppingCart" border="0" cellspacing="0"<br />> cellpadding="0"><br />>            <tr><br />><br />>                    <th>Name</th><br />><br />><br />>                    <th>Price</th><br />><br />><br />>                    <th  class="eC_FormItem" >Quantity</th><br />><br />><br />>                    <th>Total</th><br />>            </tr><br />>        <?php<br />> while (!$eCart->EOF())      {  // DO WHILE FOR EACH ITEM IN CART<br />> ?><br />>            <tr><br />><br />>                    <td><img src="/images/thumbs/<?php echo<br />> $eCart->DisplayInfo("Thumbnail"); ?>" alt="" width="100" height="100"<br />> class="eC_ProductThumb" /><br />>                        <p class="eC_ItemLabel"><?php echo<br />> $eCart->DisplayInfo("Name"); ?></p><br />>                  <p class="eC_ItemDescription"><?php echo<br />> $eCart->DisplayInfo("Description"); ?></p>  <p<br />> class="eC_ItemDescription"><?php echo $eCart->DisplayInfo("ID");<br />> $idCall = $eCart->DisplayInfo("ID");?>>  // CREATE A VARIABLE FOR<br />> //THE ITEM's ID NUMBER in the DB<br />> //USE DISPLAY ID TO GET ID # and make it = $idCall<br />> </p></td<br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("Price")); ?></td><br />><br />><br />>                    <td  class="eC_FormItem" ><?php echo<br />> $eCart->DisplayInfo("Quantity");<br />> $solditems = $eCart->DisplayInfo("Quantity");?>  //DO THE SAME FOR <br />> QUANTITY<br />> //SOLD, MAKE QUANTITY SOLD  = $solditems<br />> </td><br />><br />> // NOW UPDATE THE DATABASE. SUBTRACT $solditems from ItemQuantity ( YOUR<br />> //INVENTORY OR STOCK)<br />> //FOR EACH ITEM IN CART. SELECT the item's ID  by $idCall:<br />> <?php<br />> mysql_select_db($database_connBSM, $connBSM);<br />> $query_itemQ = "Update items SET  items.ItemQuantity = <br />> items.ItemQuantity -<br />> $solditems WHERE items.ItemID = $idCall";<br />> $itemQ = mysql_query($query_itemQ, $connBSM) or die(mysql_error());<br />><br />> ?><br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("TotalPrice")); ?> </td><br />>            </tr><br />>        <?php<br />>  $eCart->MoveNext();    //// REPEATS BEHAVIOR FOR EACH ITEM IN CART<br />> }<br />> $eCart->MoveFirst();<br />> ?><br />> BTW, once the items in inventory = 0, the items do not appear in the<br />> catalog.  That is set in the catalog page's recordset.<br />> Jeff<br />> ~~~~~~~~~~~~<br />> Jefferis Peterson, Pres.<br />> Web Design and Marketing<br />> http://www.PetersonSales.com<br />><br />><br />><br />><br />> ------------------------------------------------------<br />> View/reply at <<a href="/cgi-bin/webx?13@@.3bc3e9d6/5">jefferis, "WebAssist Cart help? I know it's off topic but... Could really use some help..." #6, 19 Jun 2007 6:50 am</a>><br />> You must visit the conference to reply. Email replies are not allowed and <br />> will be returned.<br />> Use the unsubscribe form at <br />> <a href=http://www.adobeforums.com/cgi-bin/webx?280@@.3bc3e9d6!folder=.3bc3909c> <br />> to cancel your email subscription.

  • Slightly off topic but a query on open type fonts

    Hi all
    I went to buy the frutiger fonts (9fonts) from adobe. The format is open type which is what I want. B ut when going to buy them I am asked whether I want mac or windows format. I thought open type fonts were cross platform? We have both MACs and PCs, if I want the font on both do I have to buy both formats ?
    Link to font:
    http://store.adobe.com/type/browser/P/P_1186.jhtml
    Thanks for any help, sorry for this being off topic but I couldn't see where else to post.
    gerryR

    Yes, that's it, pretty much. Also, our download manager needs to know whether you're using Mac or Windows. The *contents* of the purchased file are the same.
    T

  • TS4062 I've done all of these recommended steps.  My problem is that I have a new laptop that I am trying to sync my iPhone (and iPad for that matter) via Wi-Fi but both devices are looking for the old laptop to sync.  Any other suggestions?

    I've done all of these recommended steps.  My problem is that I have a new laptop that I am trying to sync my iPhone (and iPad for that matter) via Wi-Fi but both devices are looking for the old laptop to sync.  My iTunes is version 11.0..3.42, iPhone is 6.1.4, and iPad 6.1.3.  Any suggestions?

    All I had to do was complain.  I synced my iPhone to the Windows machine, checked the other account at iTunes prompting (where no apps had shown up previously), reconnected the iPad, and 140 apps downloaded including the App Store.  I have no idea why.

  • When trying to send a link off firefox via email the system looks for a g mail account that I do not have nor want to have. I've told the settings to use my outlook account but it keeps looking for g mail. how do i correct?

    when trying to send a link off firefox via email the system looks for a g mail account that I do not have nor want to have. I've told the settings to use my outlook account but it keeps looking for g mail. how do i correct?

    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

  • TS3992 I lost my iphone 4, i now have an iphone 5. I tried to restore the phone from the back up but i accidently restored the back up intead. now i can't seem to access the old back ups for the new phone. Does this mean Icloud has deleted the old back up

    I lost my iphone 4, i now have an iphone 5. I tried to restore the phone from the back up but i accidently pressed "restored back" up intead.
    Now i can't seem to access the old back ups for the new phone. Does this mean Icloud has deleted the old back ups?
    Help!
    xD

    Help for forgotten passcode >   iOS: Forgotten passcode or device disabled after entering wrong passcode
    When you have access to your iPhone again, FaceTime is a pre installed app that cannot be removed.
    Try a search >  iOS: Understanding Spotlight Search

  • Can I exchange the old iPod nano for the new iPod nano?

    I was wondering if I can exchange my old iPod nano for a new one even if it costs a tiny bit extra.

    Hi Deborah,
    Your profile doesn't say what country you live in, but for example, if you go to the US Apple online store, you can click on the
    b Sales and Refunds
    link at the bottom of the page, to find Apple's policy.
    I'd suggest you dig a bit deeper into the online store site until you get to the appropriate
    b education store
    webpage, in case the
    b Sales and Refunds
    links at the bottom of that page leads to a modified policy.
    And even if you are past the stated
    b Refunds
    period, you have nothing to lose by calling the appropriate number (eg. in the US: 1-800-676-2775) to see if you can get a Return Material Authorization, especially since you wish to order a new computer at the same time. The worst they can say is "no".
    I'm assuming the iBook transaction was entirely online, but if it was instead bought through a campus bookstore to get the educational discount, the campus bookstore would then be another place to approach to see if they have different policies to the online store.
    best of luck,
    ...ben
    PS. I assume you know that this is a user-to-user discussion forum, and Apple won't respond to the questions you post here? But you will certainly find empathetic, fellow Mac owners who are happy to help you if they can.

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • I want to replace a four year old Time Capsule for a new Airport Extreme, how difficult is it?

    I want to replace a four year old Time Capsule for a new Airport Extreme, how difficult is it? The ADSL connection come from a Modern Router provide by the local Telephone company.

    Reply back when you get the new device, but in short, you'll have to put your extreme in bridge mode and just connect the same wires as your current TC.
    See here http://www.macobserver.com/tmo/answers/how-to-add-a-time-capsule-or-airport-extr eme-to-an-existing-network-with-br

  • Old Black Macbook for a New Macbook Pro?

    about 5 or 6 months i got a black macbook and i have 3 years of warranty but the motherboard crashed on me out of the random so im just wondering can take my old black macbook for a new macbook pro and pay the difference?
    Message was edited by: iloveska2

    Apple will typically allow a return within 14 days of your purchase... which is basically what you would need to do if you wanted to make an exchange. You would basically return your old one and buy the new one. As the previous poster mentioned, at this point, you won't be able to achieve this working directly with Apple. As your machine is 5-6 months old, there is wear to consider... it is basically no longer a new machine. Apple stores are not equipped to "appraise" used machines.

  • My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTune.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    My Snow Leopard 10.6.3 has Safari 4.0.4 but this cannot be used for the new features of iTunes.  I tried upgrading to Safari 5.1.7 but it needs Snow Leopard 10.6.8.  Where can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?

    Hi..
    here can I get a version of Safari 5.1 that is compatible with Snow Leopard 10.6.3?
    Not possible. You need to update to v10.6.8
    Click your Apple menu > Software Update
    Or update using the this download > Mac OS X 10.6.8 Update Combo
    Then restart your Mac.

  • How is it possible for me to turn in my old iPhone 4s for the new iphone 5 for the lowest price

    how is it possible for me to turn in my old iPhone 4s for the new iphone 5 for the lowest price

    You would have to sell your iPhone 4S for cash to then buy the iPhone 5.
    http://gizmodo.com/5934778/where-to-sell-your-iphone-4s-for-the-most-money

  • I have a new mac and want my old photoshop on it , how get i the old serial key for the new ?

    I have a new mac and want my old photoshop on it , how get i the old serial key for the new ? My old mac is deleted ...

    We would need to know the version of Mac OS you are running and the version of Photoshop you want to install.
    The serial number is the tricky part. If you have no idea where you placed it and did not register your product with Adobe, your chances are very low of retrieving it.

  • How do I trade in my old Ipod Nano for the new one?

    How do I trade in my old Ipod Nano for the new one?

    You can trade in your old iPod at your local Apple Store for a 10% discount towards the purchase of a new one. 
    If you are referring to the 1G Nano recall, see this page.
    http://www.apple.com/support/ipodnano_replacement/
    B-rock

  • I forgeting my Answer questions.how can get new Answer questions?

    i forgeting my Answer questions.how can get new Answer questions?

    Look to the right on this page under 'More like this'.

Maybe you are looking for

  • Questions about Using Itunes for Nano. New User

    Hi everyone! i am a new ipod user that is new to the itunes software. I have a few questions regarding making playlists and transferring them into the ipod nano and deleting songs from the ipod nano thru itunes or the device. Can someone provide a li

  • How can I change the font size in icloud

    I was typing in my email account in icloud and somehow hit two keys simultaneously and everything in icloud suddenly got lots smaller. Now the type is so small I can barely read anything. I've tried to recreate what I did but to no avail. I've looked

  • How to troubleshoot user account in Lion?

    I am using MS Office 2011 for Mac. When I open documents on my MBP that are using the 'Review' feature it crashes Word instanteously. It happens all the time. I have installed all updates for Lion and for Office. The same documents work on my iMac th

  • Query regarding BAPI_SALESORDER_CREATEFROMDAT2

    Dear friends, <%@page language="abap"%> <% TYPE-POOLS ZSALE. %> <html>   <head>     <link rel="stylesheet" href="../../sap/public/bc/bsp/styles/sapbsp.css">     <title> Display Page </title>   </head>   <body class="bspBody1">     <%     DATA ORDER_P

  • Integration SAP with Documentum

    Hi! We use Documentum SAP Archive Services 6.7SP2 to store content data of some SAP documents in Documentum repository. We configured this service in Documentum WebAdmin's node "ArchiveLink - Archive". So, content of some SAP documents becomes object