No visuals with video tutorial

I get sound but no visuals with the video tutorials. Any clues? Thank you.

See discussion @ http://discussions.apple.com/thread.jspa?messageID=6343029&#6343029

Similar Messages

  • Apple video tutorial not working

    Hi, I faced problem with video tutorial in apple site , it is not working but a quotation mark appeared .
    I have flip 4 mac on my computer
    Quick time updated to 7.6.2 edition.
    How can i solve this problem ?
    because i would like to watch these videos
    Thank you

    Hi Mih008
    i had similar problem with my old macbook and my recent macbook pro when i transferred my file to it.
    it turn that i had corrupted file in the quick player and it had to be removed , off course this problem had to be solved by mac specialist .
    everything now runs smoothly.
    good luck

  • Tried to follow the second video tutorial with no success

    Hi,
    I tried to run the second video tutorial (Your Second AFCS Application) on LCCS SDK Navigator with no success.
    VideoChat.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
                   minHeight="600" xmlns:rtc="AfcsNameSpace">
        <!-- Place non-visual elements (e.g., services, value objects) here -->
        <!--<rtc:ConnectSessionContainer id="cSession" autoLogin="true" width="100%"
        height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room">
        -->
        <!--
        <rtc:ConnectSessionContainer width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4">
        -->
        <rtc:ConnectSessionContainer id="cSession" autoLogin="false" width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4" creationComplete="showLogin()">
            <rtc:authenticator>
                <rtc:AdobeHSAuthenticator userName="Guest"/>
            </rtc:authenticator>
            <mx:HBox width="100%" height="95%">
                <mx:VBox width="25%" height="100%">
                    <rtc:WebCamera width="100%" height="100%"/>   
                </mx:VBox>
                <rtc:SimpleChat width="75%" height="100%"/>               
            </mx:HBox>
        </rtc:ConnectSessionContainer>
        <fx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                protected function showLogin():void {
                    var login:LoginDialog2 = new LoginDialog2();
                    login.connectSession = cSession;
                    PopUpManager.addPopUp(login, this);
                    PopUpManager.centerPopUp(login);
            ]]>
        </fx:Script>
    </s:Application>
    LoginDialog2.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx" title="Enter Guest Name" width="274" height="116">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import com.adobe.rtc.session.IConnectSession;
                import mx.managers.PopUpManager;
                [Bindable]
                public var connectSession:IConnectSession;
                protected function login():void {
                    connectSession.authenticator.userName = userNameField.text;
                    connectSession.login();
                    PopUpManager.removePopUp(this);
            ]]>
        </fx:Script>
            <s:TextInput width="234" id="userNameField" enter="login()" x="10" y="10"/>
            <s:Button label="Ok" click="login()" x="173" y="43" width="69"/>
    </s:Panel>
    Basically, I pressed the Debug button and all I am getting is:
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 646,462 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 370,463 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 2,292,131 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 648,239 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 441,686 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 1,429,050 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 323,414 bytes after decompression
    I am not getting any message related to connection.  Any idea of what's wrong?
    Thanks,
    Kevin

    I got the following error:
    Description    Resource    Path    Location    Type
    Parse error: '<fx:Script>' is not allowed to follow '<fx:Declarations>'.    LoginDialog2.mxml    /VideoChat/src    line 9    Flex Problem
    If I did:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Panel xmlns:fx="http://ns.adobe.com/mxml/2009"
                 xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:mx="library://ns.adobe.com/flex/mx" title="Enter Guest Name" width="274" height="116">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <fx:Script>
                <![CDATA[
                    import com.adobe.rtc.session.IConnectSession;
                    import mx.managers.PopUpManager;
                    [Bindable]
                    public var connectSession:IConnectSession;
                    protected function login():void {
                        connectSession.authenticator.userName = userNameField.text;
                        connectSession.login();
                        PopUpManager.removePopUp(this);
                ]]>
            </fx:Script>
        </fx:Declarations>
            <s:TextInput width="234" id="userNameField" enter="login()" x="10" y="10"/>
            <s:Button label="Ok" click="login()" x="173" y="43" width="69"/>
    </s:Panel>
    in LoginDialog2.mxml, putting <fx: Script> inside <fx:Declarations>
    I then tried to change some of the code segments around in VideoChat.mxml but still no success:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
                   minHeight="600" xmlns:rtc="AfcsNameSpace">
        <!-- Place non-visual elements (e.g., services, value objects) here -->
        <fx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                protected function showLogin():void {
                    var login:LoginDialog2 = new LoginDialog2();
                    login.connectSession = cSession;
                    PopUpManager.addPopUp(login, this);
                    PopUpManager.centerPopUp(login);
            ]]>
        </fx:Script>
        <rtc:ConnectSessionContainer id="cSession" autoLogin="false" width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room4" creationComplete="showLogin()">
            <rtc:authenticator>
                <rtc:AdobeHSAuthenticator userName="Guest"/>
            </rtc:authenticator>
            <mx:HBox width="100%" height="95%">
                <mx:VBox width="25%" height="100%">
                    <rtc:WebCamera width="100%" height="100%"/>   
                </mx:VBox>
                <rtc:SimpleChat width="75%" height="100%"/>               
            </mx:HBox>
        </rtc:ConnectSessionContainer>
    </s:Application>

  • Tried to follow the first video tutorial with no success

    Hi,
    I tried to run the first video tutorial (Your First AFCS Application) on LCCS SDK Navigator with no success.
    The code as described is:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:rtc="AfcsNameSpace">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <rtc:ConnectSessionContainer width="100%" height="100%" roomURL="https://connectnow.acrobat.com/smoky6880/room">
                <rtc:authenticator>
                    <rtc:AdobeHSAuthenticator userName="*******" password="*******"/>
                </rtc:authenticator>
                <mx:HBox width="100%" height="100%">
                    <mx:VBox width="25%" height="100%">
                        <rtc:Roster width="100%" height="50%"/>
                        <rtc:WebCamera width="100%" height="50%"/>   
                    </mx:VBox>
                    <rtc:SimpleChat width="75%" height="100%"/>                   
                </mx:HBox>
            </rtc:ConnectSessionContainer>
        </fx:Declarations>
    </mx:Application>
    Basically, I pressed the Debug button and all I am getting is:
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 370,463 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 2,292,131 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 706,253 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 648,239 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 441,686 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 1,429,050 bytes after decompression
    [SWF] C:\Documents and Settings\Kevin Lee\Adobe Flash Builder 4\VideoChat\bin-debug\VideoChat.swf - 323,414 bytes after decompression
    I am not getting any message related to connection.  And yes, the username and password are correct; I just removed them for privacy.  Any ideas?
    Thanks,
    Kevin

    Hi Kevin (and welcome to the forums!),
    Wow, that's a trip... ConnectSessionContainer is a visual component, so I
    guess it needs to be outside your <fx:Declarations> tags. I didn't know that
    putting it in there would cause all hell to break loose (I love how the
    number of bytes keeps changing!); you learn something new every day!
    nigel

  • Is there a video tutorial available on creating an html email with dreamweaver

    Is there a video tutorial available on making an html email with dreamweaver?

    Hello Warren,
    Currently we do not offer a video on this topic; all of our getting started videos currently available can be seen at: http://helpx.adobe.com/creative-cloud/learn/start.html.  That's not to say a video such as the one you are looking for doesn't exist out in the wild somewhere, but we have not produced any content on that particular topic.
    However, we're just getting started (no pun intended ) so feedback like yours is valuable as we consider future topics to focus our getting started projects on.
    Thank you for your input.
    Ed Sullivan

  • HT3042 Please show us the video tutorial for this because i am having so much problem with my iphone5 bluetooth and can not send any file . So plz plz help me

    Please show us the video tutorial for this because i am having so much problem with my iphone5 bluetooth and can not send any file . So plz plz help me

    You have to use airdrop which is on iOS 7

  • Create a website with dreamweaver tutorial video

    Dont waste time trying to learn. Get video tutorials from
    dreamweaver. Yeas you heard me right.
    www.webmaniaxs.com

    Hi bugmenow,
    I disagree, video tutorials aren't always easy to use. You
    have to stop them all the time and if you don't want any sound (for
    example at your work) it isnt possible to use video tutorial. Next
    to that there aren't so many video tutorials as normal
    tutorials.

  • Anyone recommend a good tutorial for 'working with video' in Logic?

    I've worked with video a fair amount, but only ever skimmed the surface and found odd workarounds to get things to happen how I want them.
    The manual is scant when it comes to features such as SMPTE locking and beat mapping scenes to bar lengths and all sorts of other tricks I'm probably unaware of.
    The only Macprovideo I can find is from 2005 and whilst I'm sure has some common features, is perhaps not up to date enough. And this http://www.soundonsound.com/sos/jul07/articles/logictech_0707.htm is ok for a quick overview but I'd like to see some of it in action (or at least have more detailed exercises).
    Does anyone know any tutorials they'd recommend? Cheers

    canon pixma 6200 series works

  • Jeff + Michael 'New Video Tutorial' ?????

    Did I read a while back that Jeff and Michael had (were) producing a new video tutorial concerning LR called something along the lines of 'From Shoot to Print'? Have I got this all wrong, and if not, anyone else heard about it and when/if we can expect it? Perhaps Jeff will be so kind as to jump in here. :-)

    Ian
    Thanks for that. I raised it here due to the many problems people appear to be having with their prints - especially with Epsom printers. Whether or not this is due to incorrect profiles, a fault with several Epsom printers, failing to set up LR correctly or a combination of each is anyones guess, but as Jeff appears to be using Epsom printers it would be nice to know whether the tutorial video will go into detail (visually) of how he sets the entire thing up.
    It might just give those having current printing problems something to look forward to, and others (like me) who are considering upgrading their current printers a better reason not to shun Epsoms. :-)

  • ANN: Video tutorial for defining a PHP local testing server on Windows

    I have created a video tutorial to show how to define a PHP
    local
    testing server on Windows. It's just under 8 and a half
    minutes, and can
    be found here:
    http://experts.na3.acrobat.com/phplocalsitewin/
    I made it for Windows only to avoid confusing viewers with
    too many
    bewildering choices. I'll try to make a Mac version in the
    not too
    distant future, but don't yet have video capture software for
    a Mac.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

    "David Powers" <[email protected]> wrote in message
    news:gfc9vd$2qt$[email protected]..
    >I have created a video tutorial to show how to define a
    PHP local testing
    >server on Windows. It's just under 8 and a half minutes,
    and can be found
    >here:
    >
    >
    http://experts.na3.acrobat.com/phplocalsitewin/
    >
    > I made it for Windows only to avoid confusing viewers
    with too many
    > bewildering choices. I'll try to make a Mac version in
    the not too distant
    > future, but don't yet have video capture software for a
    Mac.
    Great tutorial David, thanks for sharing
    Thierry
    http://www.TJKDesign.com/go/?0
    | Articles and Tutorials
    http://divahtml.com/products/scripts_dreamweaver_extensions.php
    | Extensions
    that keep your markup clean
    http://www.fourlevel.com/ |
    CSS Menus, Gallery, Tab Panels, etc

  • LIVE Video Tutorial! How to Upgrade or Replace RAM - HP Expert Day "How-To" Video Series – Today at 12:00pm PST

    Join us at 12:00pm Pacific time for a LIVE video tutorial of how to upgrade or replace RAM! The video features HP experts who work with the products every day!
    I am an HP employee.

    #test

  • LIVE Video Tutorial! How to Replace and Configure a Video Card - HP Expert Day "How-To" Video Series – Today at 1:00pm PST

    Join us at 1:00pm Pacific time for a LIVE video tutorial of how to replace a video card and configure video settings! The video features HP experts who work with the products every day!
    I am an HP employee.

    #test

  • LIVE Video Tutorial! How to Prepare for Backup and Recovery - HP Expert Day "How-To" Video Series – Today at 2:00pm PST

    Join us at 2:00pm Pacific time for a LIVE video tutorial of how to prepare for system backup and recovery! The video features HP experts who work with the products every day!
    I am an HP employee.

    #test

  • LIVE Video Tutorial! How to Replace a Hard Disk Drive - HP Expert Day "How-To" Video Series - Today at 11:00am PST

    Join us at 11:00am Pacific time for a LIVE video tutorial of how to replace a hard drive! The video features HP experts who work with the products every day!
    I am an HP employee.

    #test

  • Video tutorial AFCS SDK Navigator

    hello i just finished the second video tutorial and every thing seems to be working fine ( I added audio to the app since it has none). I am using the free developer edition but the room keeps crashing when my friend, from brazil,  and I conference with video and audio...... here is my code.  could someone check it and let me know if i have any mistakes that may cause this..... thanks
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:rtc="AfcsNameSpace" xmlns:ns1="*" creationComplete="showLogin()"><rtc:ConnectSessionContainer 
    id="cSession" autoLogin="false" width="858" height="100%" roomURL="https://connectnow.acrobat.com/kingkevin/mymeeting">
    <rtc:authenticator>
    <rtc:AdobeHSAuthenticator userName="Guest"/>
    </rtc:authenticator>
    <mx:HBox width="100%" height="100%">
     <mx:VBox width="228" height="100%">
     <rtc:Roster width="222" height="180"/>
     <rtc:SimpleChat sessionDependent="true" useExternalContextMenu="false" newMessageColor="0x000000" width="223" height="313"/>
     </mx:VBox>
     <mx:Panel width="398" title="Webcam" layout="vertical"horizontalAlign="
    center" height="497">
     <!--WEB CAMERA / AUDIO -->
     <rtc:WebCamera width="351" height="298"/>
     <!-- AUDIO PUBLISHER-->
     <!-- AUDIO LISTENER -->
     <rtc:AudioSubscriber/>
     <!-- ENABLE / DISABLE AUDIO-->
     <mx:Button label="Audio on/off" toggle="
    true" id="audioButt" color="#000000"click="(audioButt.selected) ? audioPub.publish() : audioPub.stop()"
    />
     <rtc:AudioPublisher id="audioPub"/>
     </mx:Panel>
     <rtc:Note sessionDependentItems="false" height="496" width="215"/>
     </mx:HBox>
     </rtc:ConnectSessionContainer>
     <mx:Script>
    <![CDATA[
     import mx.managers.PopUpManager 
    protected function showLogin():void{
    var login:LoginDialogue = new LoginDialogue();login.connectSession = cSession;
    PopUpManager.addPopUp(login,
    this);PopUpManager.centerPopUp(login);
    ]]>
    </mx:Script> </mx:Application>

    Ok thanks for quick reply.      I've posted the debug info below.  What happens is - I can connect with another user but the connection dies after a very short period of time........we have tested it and we like to conference. it seems that when we are conferencing with audio and video the room disconnects.
    Both names dissapear from the listbox .  Chat and camera buttons are disabled.  Then when I try to reconnect right away my user name does show up in the list box. the chat button stays disabled and the camera button stays disabled.  the audio button is enabled but when i click it, it give this pop up error message
    Error: AudioPublisher: The stream cannot be published because user does not have permission.
    at com.adobe.rtc.collaboration::AudioPublisher/publish()[C:\work\main\connect\cocomo\src\com \adobe\rtc\collaboration\AudioPublisher.as:649]
    at flex_chat/__audioButt_click()[E:\adobelivecyclecollaberationservice\flex_chat\src\flex_ch at.mxml:27]
    Then In about ten minutes i can log back in again and everything works.......
    thanks.
    [SWF] E:\adobelivecyclecollaberationservice\flex_chat\bin-debug\flex_chat.swf - 1,608,396 bytes after decompression
    AFCS Beta Build # : 1.02
    requestInfo https://connectnow.acrobat.com/kingkevin/mymeeting?guk=Zzp6eGN2Og==&mode=xml&x=0.524566510 2265775
    #TicketService# ticket received: y1o0rybhmdh8
    Getting FMS at https://na2.connectnow.acrobat.com/fms?ticket=y1o0rybhmdh8, attempt #1/3
    result: <fms>
    <origin>fms5.acrobat.com</origin>
    <proto_ports>rtmps:443</proto_ports>
    <retry_attempts>2</retry_attempts>
    </fms>
    #FMSConnector# Mon Jan 4 14:52:37 GMT-0500 2010 protocols: [object ProtocolPortPair]
    #FMSConnector# Mon Jan 4 14:52:37 GMT-0500 2010 [attempt 1 of 2] Connecting to 0/0: rtmps://fms5.acrobat.com/cocomo/na2-82d1d7aa-c46c-4f48-bb97-7373a85dcd84/mymeeting #startProtosConnect#
    #FMSConnector# Mon Jan 4 14:52:37 GMT-0500 2010 tempNetStatusHandler 0/1,NetConnection.Connect.Success
    #FMSConnector# Mon Jan 4 14:52:37 GMT-0500 2010 isTunneling? false
    #FMSConnector# Mon Jan 4 14:52:37 GMT-0500 2010 is using RTMPS? true
    RECEIVED LOGIN AT SESSION
    .user descriptor from server [object]
    .displayName [string]= zxcv
    .userID [string]= GUEST-845BD1BB-D0BB-477A-A29C-3B506F4120BA
    .affiliation [number]= 5
    .role [number]= 50
    RECEIVENODES UserManager
    receiveAllSynchData UserManager
    RECEIVENODES FileManager
    receiveAllSynchData FileManager
    checkManagerSync:[object FileManager]
    RECEIVENODES AVManager
    receiveAllSynchData AVManager
    checkManagerSync:[object StreamManager]
    RECEIVENODES RoomManager
    receiveAllSynchData RoomManager
    checkManagerSync:[object RoomManager]
    checkManagerSync:[object UserManager]
    RECEIVENODES default_SimpleChat
    receiveAllSynchData default_SimpleChat
    RECEIVENODES default_WebCamera
    receiveAllSynchData default_WebCamera
    RECEIVENODES default_Note
    receiveAllSynchData default_Note
    RECEIVENODES default_Note
    receiveAllSynchData default_Note

Maybe you are looking for

  • Advice re best practice for managing the scan listener logs and list logs

    Hi friends, I've just started a job as a RAC dba administrator for some big 24*7 systems, I've never worked with clusterware and RAC. 2 Space problems 1) Very large listener_scan2.log in /u01/11.2.0/grid/log/diag/tnslsnr/<server name>/listener_scan2/

  • Enabling non-modal JDialog

    I have created a JDialog which is non-modal. This dialog has lot of controls viz. buttons, combo box etc. This dialog is launched on clicking a button placed on panel. Surprisingly, when the dialog is launched, all components are disabled. Is there a

  • 1920 x 1080

    I've been looking through old posts on here and one of them seems to be saying that FCE 4 cannot accept 1920 x 1080, only 1440 x 1080. Is that right? Thanks Richard

  • How can we reject an already approved sales quotation and sales order

    Hi, Could anyone please tell me how can we reject an already approved sales quotation and sales order. Thanks and Regards Mahavir

  • List of GP Tables

    Hi , I want to know the list of tables that will updated when a GP process is started Regards, Satish