Flash Seminars

My company is in the process of impelenting Computer Based
Training (CBT) for current Instructor Led (IL) courses. We have
three Instructor/Specialists that have attended the Flash Rich
Content Creation and Action Scripting courses and/or Flash 8
Designer Academy. We are looking for additional training in Flash
to help us develop templates in Flash to support the conversion of
IL courses to CBT courses. At the end of the course/seminar we want
to come home with a viable working template that can be used to
seamlessly trasition to CBT.
Does anyone have any suggestions on where to go for this type
of training/seminar?

for begining to intermediate instruction you could try
learnFlash.com they really do a
good job with step by step implementation of most of the basic and
advanced principles, in a wide variety of Flash based subjects. All
video - btw :)

Similar Messages

  • Put PHP Content into Dynamic Text Field

    How do I put the contents of a php document into a dynamic
    text field in a Flash document? Thanks.
    G

    Do you mean an html document generated from a PHP script?
    Do you mean the source of a PHP script?
    Probably you mean you want to format a page such as a PHP
    script would do.
    That is done either manually inside a Flash movie or
    dynamically via
    Actionscripting. Then you only send data back and forth
    between PHP and
    Flash using either the LoadVars or the XML Actionscript
    classes. You can use
    HTML inside of Flash TextField objects but again that will be
    data sent from
    the PHP server script.
    Here are some basic examples I use in Flash seminars you can
    look at:
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/LoadVars/LoadVarsEx01.php
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/LoadVars/Ex02/LoadVarsEx02.p hp
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/GenerateFlashObjectsFromPHP/ Ex01/GenerateFlashObjectsFromPHPEx01_Doc.php
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/XMLPHP/EX01/XMLPHPEchoEx01_D oc.php
    You also want to look at the docs for LoadVars and XML
    sendAndLoad methods:
    XML
    http://livedocs.macromedia.com/flash/8/main/00002879.html
    LoadVars
    http://livedocs.macromedia.com/flash/8/main/00002336.html
    Lon Hosford
    www.lonhosford.com
    May many happy bits flow your way!
    "gena.wenli" <[email protected]> wrote in
    message
    news:e5g6av$lpv$[email protected]..
    How do I put the contents of a php document into a dynamic
    text field in a
    Flash document? Thanks.
    G

  • PHP Check box in Flash

    Hello all,
    I have a flash form that has three checkboxes and some input
    text boxes. My form uses a PHP script that works perfect for the
    text but not the Check boxes. I'm not using the checkbox component,
    I'm using a check box i got from flash kit. Below is the code for
    the checkbox movie and my php code. What do I have to declare in
    the my php file to have the check box work?
    on (press) {
    if (Number(CB_1) == 0) {
    tellTarget ("checkbox1") {
    gotoAndStop(2);
    CB_1 = 1;
    showstate1 = "yes";
    } else {
    tellTarget ("checkbox1") {
    gotoAndStop(1);
    CB_1 = 0;
    showstate1 = "no";
    This is my php code
    <?
    // Enter your contact email address here
    $adminaddress = "[email protected]";
    // Enter the address of your website here include
    http://www.
    $siteaddress ="www.mysite.com";
    // Enter your company name or site name here
    $sitename = "my site";
    No need to change anything below unless you want to add or
    subtract functions or change the wording of things sent back to the
    flash file ...
    // Gets the date and time from your server
    $date = date("m/d/Y H:i:s");
    // Gets the IP Address
    if ($REMOTE_ADDR == "") $ip = "no ip";
    else $ip = getHostByAddr($REMOTE_ADDR);
    //Process the form data!
    // and send the information collected in the Flash form to
    Your nominated email address
    if ($action != ""):
    mail("$adminaddress","New User has Registered",
    "A visitor at $sitename registered!\n
    Personal Info
    Name: $fname
    Last Name: $lname
    Address: $add
    City: $city1
    State: $state
    Zip: $zip
    Telephone: $tele
    E-mail: $email
    Recieve Free Book: $showstate1
    Invitation to Seminar: $showstate2
    Schedule Free Visit: $showstate3
    Comments
    $comment
    Logged Info :
    Using: $HTTP_USER_AGENT
    Hostname: $ip
    IP address: $REMOTE_ADDR
    Date/Time: $date","FROM:$adminaddress");
    //This sends a confirmation to your visitor
    mail("$email","Thank You for visiting $sitename",
    "Hi $fname,\n
    We will process your request and send you a user name and
    password within 48hrs.
    Thank you for your registering at $sitename!\n
    $sitename
    $siteaddress","FROM:$adminaddress");
    //Confirmation is sent back to the Flash form that the
    process is complete
    $sendresult = "Thank you for comments and questions. You will
    receive a confirmation email shortly.";
    $send_answer = "answer=";
    $send_answer .= rawurlencode($sendresult);
    echo "$send_answer";

    1. You have not posting anything to show how Flash is
    communicating wit the
    server PHP script and it a guess that the variable in the
    checkbox is not
    getting sent.
    2. Code with tellTarget is old and will be completely
    obsolete as you want
    to migrate this to newer and newer features in Flash for the
    future.
    Lon Hosford
    www.lonhosford.com
    Flash, Actionscript and Flash Media Server examples:
    http://flashexamples.hosfordusa.com
    May many happy bits flow your way!
    "Asesino" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello all,
    > I have a flash form that has three checkboxes and some
    input text boxes.
    > My
    > form uses a PHP script that works perfect for the text
    but not the Check
    > boxes.
    > I'm not using the checkbox component, I'm using a check
    box i got from
    > flash
    > kit. Below is the code for the checkbox movie and my php
    code. What do I
    > have
    > to declare in the my php file to have the check box
    work?
    >
    > on (press) {
    > if (Number(CB_1) == 0) {
    > tellTarget ("checkbox1") {
    > gotoAndStop(2);
    > }
    > CB_1 = 1;
    > showstate1 = "yes";
    > } else {
    > tellTarget ("checkbox1") {
    > gotoAndStop(1);
    > }
    > CB_1 = 0;
    > showstate1 = "no";
    > }
    > }
    >
    >
    > This is my php code
    >
    > <?
    >
    > // Enter your contact email address here
    > $adminaddress = "[email protected]";
    >
    > // Enter the address of your website here include
    http://www.
    > $siteaddress ="www.mysite.com";
    >
    > // Enter your company name or site name here
    > $sitename = "my site";
    >
    > /*******************************************************
    >
    > No need to change anything below unless you want to add
    or subtract
    > functions
    > or change the wording of things sent back to the flash
    file ...
    >
    > *******************************************************/
    >
    > // Gets the date and time from your server
    > $date = date("m/d/Y H:i:s");
    >
    > // Gets the IP Address
    > if ($REMOTE_ADDR == "") $ip = "no ip";
    > else $ip = getHostByAddr($REMOTE_ADDR);
    >
    > //Process the form data!
    > // and send the information collected in the Flash form
    to Your nominated
    > email address
    > if ($action != ""):
    > mail("$adminaddress","New User has Registered",
    > "A visitor at $sitename registered!\n
    > ---------------------------------------------
    > Personal Info
    > Name: $fname
    > Last Name: $lname
    > Address: $add
    > City: $city1
    > State: $state
    > Zip: $zip
    > Telephone: $tele
    > E-mail: $email
    > ---------------------------------------------
    > Recieve Free Book: $showstate1
    > Invitation to Seminar: $showstate2
    > Schedule Free Visit: $showstate3
    > ---------------------------------------------
    > Comments
    > $comment
    >
    > ------------------------------
    >
    > Logged Info :
    > ------------------------------
    > Using: $HTTP_USER_AGENT
    > Hostname: $ip
    > IP address: $REMOTE_ADDR
    > Date/Time: $date","FROM:$adminaddress");
    >
    > //This sends a confirmation to your visitor
    > mail("$email","Thank You for visiting $sitename",
    > "Hi $fname,\n
    > We will process your request and send you a user name
    and password within
    > 48hrs.
    > Thank you for your registering at $sitename!\n
    >
    > $sitename
    > $siteaddress","FROM:$adminaddress");
    >
    > //Confirmation is sent back to the Flash form that the
    process is complete
    > $sendresult = "Thank you for comments and questions. You
    will receive a
    > confirmation email shortly.";
    > $send_answer = "answer=";
    > $send_answer .= rawurlencode($sendresult);
    > echo "$send_answer";
    >
    >
    >
    >

  • Please give me some examples of video chat with adobe flash builder 4 or adobe flex 3.5

    I'm a newbie for flex. I had a project from my college to made a video chat application using Adobe Flash Builder 4 and used Red5.  please help me, give me some examples of video chat source code, so that i may to learn it. thanks a lot friends.

    As you are starting at the beginning you may as well start with FB4. When you install FB4 you will find that its start page has links to documentation tutorials and examples through the tour-de-flex. There are some great blogs that continue to offer advice and examples, nothing beats well written examples for learning. If you are on face book there is an Adobe Flex page that is continually giving links to examples and information about e-seminars.
    And of course there is here. So jump on board and have a bit of fun.
    David

  • Connecting a CSS doc to an XML file, in a dynamic text field in Flash

    Hi all,
    I am trying to connect a CSS file such that it applies it
    self to the content of an XML file, viewed inside a dynamic text
    field. So far I have managed to gather the code that "calls" the
    contents of the XML file and also the code that calls the CSS file.
    However, when I test the flash movie I get "undefined" instead of
    the actual copy.
    Attached then is the the AS code, XML file, and CSS file. I
    hope you could help me connect everything together.
    And of course, THANKS!!
    -----AC------
    Scrolling Text XML by Digital Science |
    www.digitalscience.za.org
    /////////////Load XML Data/////////////
    function loadXML(loaded) {
    if (loaded) {
    xmlNode = this.firstChild;
    header = [];
    txt = [];
    total = xmlNode.childNodes.length;
    for (i=0; i<total; i++) {
    header
    = xmlNode.childNodes.childNodes[0].firstChild.nodeValue;
    txt
    = xmlNode.childNodes.childNodes[1].firstChild.nodeValue;
    gotoAndStop(11);
    } else {
    errorMsg.text = "Error loading XML";
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("ewmn_content.xml");
    stop();
    import TextField.StyleSheet;
    var ss:StyleSheet = new StyleSheet();
    ss.onLoad = function() {
    txt_mc.styleSheet=this; // where yourTF is your textfield
    ss.load("jokes.css"); // where yourSS.css is your css file.
    -----XML----------
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/css" href="jokes.css"?>
    <JOKES>
    <ONE>Tirza Sapir</ONE>
    <JOKE>Founder and choreographer of the RikudNetto dance
    group, teacher and lecturer, researcher, documenter and
    choreographer within the framework of Eshkol-Wachman Movement
    Notation. She was Head of the School of the Arts of Dance at the
    Seminar Hakibbutzim College of Education, 2000–2007, where
    she established the Dance Theatre and the Practicing Teachers
    courses, and specialized training in Teaching and Treatment of
    Learning Disabilities by means of Eshkol-Wachman Movement Notation.
    She has written three books containing the movement scores of dance
    suites: Birds, Landscapes, and Hanukka Notebooks. Member of the
    Movement Notation Society, 1968–2008. Student and colleague
    of the late Professor Noa Eshkol who was the co-founder and
    inventor of Eshkol-Wachman Movement Notation.</JOKE>
    <ONE>Sharon Reshef-Armony</ONE>
    <JOKE>Head of the School for the Arts of dance at the
    Kibbutzim College of Education in Tel Aviv. Teaches EWMN,
    dance-theatre and composition. Choreographer of theatre plays and
    film. Selected works: Hunger (Tmuna Theatre 2003-09), Film - Live
    (Haifa Theatre 2007-08), Yakish &amp; Pupche (Gesher Theatre
    2007-09), Children of a lesser God (Beer Sheva Theatre 2008-09).
    M.Ed (1997) from Lesley College MA in Creative Arts in Learning.
    Doctoral student at ResCen, Middlesex University/ London.
    Dancing in Rikudnetto group since 1990.</JOKE>
    <ONE>Tally Ronen</ONE>
    <JOKE>M.Ed. at Lesley University in Integrating Arts in
    Learning.
    Educational instructor at Kibbutzim College of Education and
    teaching dance in schools and at Clore Center, Upper Galilee. Dance
    choreographer for children.
    Dancing in Rikudnetto group since 1991.</JOKE>
    <ONE>Nira Al-Dor, Ph.D</ONE>
    <JOKE>20 years of Teaching EWMN at the School of the
    Dance Arts in Kibbuzim College of Education and at the School of
    Arts in Tel Aviv. Her study was focused on the impact of learning
    EWMN on the development of coordination.
    Dancing in Rikudnetto group since 1986.</JOKE>
    <ONE>Henner Drewes</ONE>
    <JOKE>Lectures at the Kibbutzim College of Education in
    Tel Aviv on dance and notation related technology. In 2008 he
    started working as a research assistant at Salzburg University in
    the project Visualizing Dance Archives.
    He was awarded the Tanzwissenschaftwpreis NRW, Germany 2006
    for his research on 3D representation of movement and notation.
    Ph.D. (2002) at the University of Leipzig. He is the author
    of the software EW Notator, a 'word-processor' for creating EWMN
    scores.</JOKE>
    <ONE>Shlomit Ofer</ONE>
    <JOKE>M.A. at Haifa University at the Faculty of
    Education with distinction, and currently doctoral student there.
    Educational instructor and teacher of EWMN at Kibbutzim
    College of Education. Staging performances of dance theatre in the
    community.
    Dancing in Rikudnetto group since 1993.</JOKE>
    <ONE>Lilach Shalit</ONE>
    <JOKE>M.A. in Expressive Therapies with specialization
    in dance-movement therapy at Lesley University.
    Educational instructor and teacher of EWMN in the course for
    Dance-Theatre at Kibbutzim College of Education. Also teaching EWMN
    in the School for Advanced Studies of the college, course for
    Learning Disabilities, and at Orot College.
    Dance-movement therapist and team coordinator at 'Tom' school
    for learning disabilities and owner of a private clinic for
    dance-movement therapy.
    Dancing in Rikudnetto group since 1998.</JOKE>
    <ONE>Michal Manor-Amir</ONE>
    <JOKE>M.A. at the University of Leeds (Bretton Hall
    College and Israel Extention) in Arts Education specialization in
    Dance. Doctoral student at the Hebrew University of Jerusalem, in
    the Faculty of Humanities, the School of Education.
    Teaching movement in the Kibbutzim College of Education
    within preparatory courses of Dance, Dance-Theatre and within the
    Preschool course.
    A corrective teacher through movement and EWMN in elementary
    and high schools, and a national teacher-instructor at the dance
    supervisor's office in the Israeli ministry of education.
    Dancing in Rikudnetto group since 1998.</JOKE>
    <ONE>Amit Chesny-Bahari</ONE>
    <JOKE>B.Ed. at Kibbutzim College of Education.
    Teaching movement and dance to preschool and high school
    children.
    Dancing in Rikudnetto group since 2004.</JOKE>
    <ONE>Orly Yaakov</ONE>
    <JOKE>B.Ed. at Kibbutzim College of Education, and
    graduating from the special education faculty.
    Teaching EWMN and creative movement at elementary schools as
    well as special education school for children ages 6-21 with medium
    to deep retardation. Also teaching creative movement and
    preparation for ballet to preschool children.
    Dancing in Rikudnetto group since 2006.</JOKE>
    </JOKES>
    ------CSS-----
    JOKE
    COLOR: #333333;
    DISPLAY: block;
    FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif;
    WHITE-SPACE: normal;
    font-size: 11px;
    MARGIN-BOTTOM: 15px;
    BODYBLD
    COLOR: #990000;
    DISPLAY: block;
    FONT-SIZE: 11pt;
    FONT-WEIGHT: bold;
    MARGIN-BOTTOM: 0px
    BODYBOLDUN
    COLOR: #00CCFF;
    DISPLAY: block;
    LINE-HEIGHT: normal;
    MARGIN-BOTTOM: 10px;
    TEXT-ALIGN: left;
    font-size: 11px;
    text-decoration: underline;
    font-weight: bold;
    ONE
    COLOR: #00CCFF;
    DISPLAY: block;
    LINE-HEIGHT: normal;
    TEXT-ALIGN: left;
    font-size: 14px;
    font-weight: bold;
    white-space: normal;
    QUESTION
    COLOR: red;
    DISPLAY: block;
    FONT-FAMILY: Arial;
    FONT-SIZE: larger;
    FONT-VARIANT: normal
    TITLE
    COLOR: black;
    DISPLAY: block;
    FONT-FAMILY: 'Arial Black';
    FONT-SIZE: 14pt
    CATEGORY
    FONT-FAMILY: Arial;
    FONT-SIZE: 8pt;
    FONT-VARIANT: small-caps;
    TEXT-TRANSFORM: uppercase

    In essence you can just do:
    TextField.text = XML.node1 + XML.node2;

  • Adobe Flash Player Doesn't Work

    Goodday,
    I was unable to attend an on-line seminar due to Adobe Flash Player. The system is an iCore 7, running Windows 8.1 and the browser is Internet Explorer 11.1. I did follow the correcting on-line instructions and ended back where I started and without Flash Player.
    Can you assist and get my Flash Player working>
    Rob
    [email protected]

    See: http://helpx.adobe.com/flash-player/kb/flash-player-issues-windows-8.html
    as well as: http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11
    IE11 has caused a LOT of troubles (typical for Microsoft) all over the web. Microsoft will learn one day to EXTENSIVELY beta test their junk before just throwing it out there for everyone to consume.

  • Please help  finding the Flash program in Toronto

    Hello everybody!
    Can anyone direct me to a College that has the best program
    (full-time/ part-time- up to 1-2 years, but not distant) in
    Web-design, particularly in Flash. I'm searching such program in
    Toronto and 'll be thankfull for any information you can give.

    I'm no expert on Flash, but I can tell you some basic stuff
    you should know:
    1. most universities will not teach flash.
    2. the professors who do teach flash preferred Actionscript 2
    over Actionscript 3. I don't know how they feel about AS4, but it
    seems the skeleton/reverse kinematic features are a really big hit
    even with the glitches.
    3. Flash is like Rome. Your knowledge of it will not be built
    in a day, no matter how shiny the speaker's teeth may be.
    Based on these three points, you should look for something
    that familiarizes you with Object Oriented Programming, Web Design,
    Animation, and Multimedia. You probably know all this stuff
    already, but you want to avoid the guy who says for $750 bucks his
    2 hour seminar will make you a pro. For $750 bucks you should
    expect a full multi week course with multiple days each week,
    several course objectives, a final project, and some textbooks to
    boot. Cut the textbook down to 1 manual from Barnes & Noble and
    pick up the programs from here:
    http://www.studentdiscounts.com/index.asp?PageAction=VIEWCATS&Category=791

  • Need help integrating flash with asp

    i am creating a dynamic site that pulls all of its content
    from and access database. i would like to make the entire page in
    flash. i have never used flash to pull any content from a datbase
    before. does any one know how to do this ? or know of a good
    tutorial? i can only seem to find tutorials for flash 8 or flash 5,
    nothing for mx2004.
    it seems like every thing i try doesnt work and no one knows
    how to help me.
    feeling very discouraged,
    -furley

    Flash has nothing to do with getting data from an Access
    database.
    You need to focus on either ASP or ASP.Net, a scripting
    language for the
    server script either JScript or VBScript, middleware usually
    ADO or ADO.Net
    and finally SQL. All of these items go together in a server
    side script that
    could work with non-Flash or Flash client interfaces. You
    should find many
    tutorials on the internet with these items as it has been
    done for nearly a
    decade.
    You also can use ColdFusion.
    For Flash, you need to learn LoadVars Actionscript class if
    you plan to
    communicate data in the URL Variables format or XML
    Actionscript class if
    you want to use XML data format. It will not really matter to
    Flash what is
    on the server side as it will only be sending and receiving
    data in either
    of those two data formats (URL Variables or XML).
    If you want to look at some Using VBScript, ASP, ADO and an
    OLEDB Connection
    examples I use for seminars in Web database you can take a
    look here:
    http://www.hosfordusa.com/ClickSystems/courses/webdb/.
    However they lack
    Flash example but would work "as is" with a Flash example.
    Once you look at some of those options, you can then form
    more specific
    questions for this forum and especially with using the
    LoadVars and XML
    Actionscript classes or the XML connector Flash component.
    Lon Hosford
    www.lonhosford.com
    Flash, Actionscript and Flash Media Server examples:
    http://flashexamples.hosfordusa.com
    May many happy bits flow your way!
    "professorfurley" <[email protected]> wrote
    in message
    news:[email protected]...
    i am creating a dynamic site that pulls all of its content
    from and access
    database. i would like to make the entire page in flash. i
    have never used
    flash to pull any content from a datbase before. does any one
    know how to do
    this ? or know of a good tutorial? i can only seem to find
    tutorials for
    flash
    8 or flash 5, nothing for mx2004.
    it seems like every thing i try doesnt work and no one knows
    how to help
    me.
    feeling very discouraged,
    -furley

  • Keynote 08 Flash Export not compatible with Adobe Acrobat Connect Pro

    Hello
    Our company uses Keynote extensively for presentations. We also give presentations online using Adobe Acrobat Connect Professional (hosted, formerly known as Macromedia Breeze - <http://www.adobe.com/products/acrobatconnectpro/>). Where as it's a great environment for online seminars (best I've seen), it fails dramatically when you upload a looping Flash file created in Keynote. I first tried this in Keynote '06 and now in '08.
    When I tried in Keynote 06, the animation was three slides looping, synced to an audio track. When I tried in '08, it was one slide with (the new) animations looping over 20 seconds (or so) without a soundtrack.
    I have some contact with Adobe, and this issue has been sent to their engineering department, but they seem to think there's something funky about the format of the file that Keynote exports. I'm trying to gather more data for them to investigate with.
    Does anyone know what version of Flash Apple's export is most like? Do we have any specs on the file export format?
    Has anyone tried using Flash exports in other Flash-using online environments?
    Thanks!
    ~brian

    I believe I figured it was somewhere between Flash 5 and Flash 6. I say this because while the resulting presentations could be opened in QuickTime (which only uses Flash 5) a better result would be achieved by viewing in the browser. Either that, or QuickTime's Flash 5 support isn't complete.

  • Flash games on Safari

    One of the few things I don't like about my computer is that it runs flash games very slowly. I've always noticed this with Macs. Is there some plugin or something I can download, or is my computer just too slow?

    It's not necessarily your computer and you're not the only one. The Flash player for Mac has always been second rate. However, you might be happy to hear that the Flash Player 8 for Mac is supposed to be equal to the PC version. I got this straight from the horse's mouth at a recent Macromedia Studio 8 seminar.

  • Flash & Premiere Pro or After effects?

    Looking for advice, I am a Graphic Designer with no formal training in animation.  I recieved a job I just can't pass up.
    It is a great opportunity for me to learn animation.  I need to create a cartoon mascot that will be in an environment, that will also be animated.
    It will be animated for presentation purposes, on-site seminars, youtube, and webinars.  Will also be uploaded to a flash to hand out.
    Would also love to do text/information effects, as well as to animate on the web.
    I am trying to chose an Adobe product that will help me acheive this, did some research and was interested, just not sure which product to use.
    I like what I see so far on Ae, but when I called Adobe they said Flash & Premeire Pro.
    I am currently learning web design, it would be better for me to learn one program to acheive animated presentation with creative effects, for videos, and web.
    I have heard all different things about flash on the web,
    and I truly do not need to get in a tangle mess of changing and importing files for the animation to be on the web.
    Is Ae the right product for me to learn?  or is Flash & Premiere Pro?
    I have CS6 Master collection.  I would like to achevive presentation and 2D animated Cartoon with same program,
    across all platforms for the web would be nice too.
    I need to make a decision because I have to educate myself to acheive a creative presentation.
    Any suggestions on Which program to start out with would also be great!
    Seminar presentation, youtube videos, email blasts, & webinar, one program to learn...is it possible??
    Your Help on this matter is SO appreciated!

    Flash Professional is used for cartoon animation a lot, especially when using vector graphics and creating output for the web.
    After Effects can be used for character animation, too.
    This article pulls together some great resources for character animation in After Effects:
    http://provideocoalition.com/ryoung/story/animate_a_character_in_after _effects
    Start here to learn After Effects:
    http://adobe.ly/AE_basics

  • Embedded Flash Warning in Powerpoint 2003-2007

    We use Powerpoint 2007 at work and ever since our adobe flash got updated to version 11 we keep getting a warning on every slide we have embedded a flash video for training. This is very annoying and embaresing when presenting a training seminar with our powerpoint presentation. I tried the following suggestions as to go into the flash settings and allow trusted locations with the folder that contains the powerpoint file and still get the flash warning. I've also tried to go into powerpoint settings and allow the same folder that contains the powerpoint file to unrestrict flash files. I don't really want to upgrade to Office 2010 at the moment as I have read in other blogs that's one solution. Please help as I don't want to revert back to flash version 9 either.

    I don't know what that means - can you post a screenshot of such a warning?

  • New To Flash Lite

    Hi,
    I am new to Flash Lite. Can any one tell me a site to learn
    about Flash Lite.

    Ciao
    here the Boston Adobe Mobile and Devices User Group site:
    http://flashmobilegroup.org/
    There are a collection of links to many Flahs Lite
    developers, articles, presentations and seminars.
    you can take a look at my blog too: www.biskero.org
    I suggest you to view some of the online presentations from
    Adobe
    Alessandro

  • Live Streaming video and Flex2(3?) + Flash Media Server?

    I've seen alot of topic on how to create video sites for
    clips, etc. with Flex and Flash Media Server, but how about live
    streaming video, like a concert or a seminar. I can't find any
    information on this at all, could anyone point me in the right
    direction?

    What you need is grab video/sound form camera/mic, publish it
    on FMS and let the other clients play it. In a few steps:
    // get camera and mic
    var cam:Camera = Camera.getCamera(); // get default camera
    var mic:Microphone = Microphone.getMicrophone(); // get
    default mic
    // if you have VideoDisplay, for monitoring
    videoDisplay.attachCamera(cam);
    // create new RTMP connection to FMS/your app
    var nc:NetConnection = new NetConnection();
    // new stream should be create *after* nc has connected, not
    before
    // so this is executed after the below nc.connect() succeeds
    nc.attachEventListener(Event.CONNECT, function(){
    var ns:NetStream = new NetStream();
    ns.attachCamera(cam);
    ns.attachMicrophone(mic);
    ns.publish("streamname", "live"); // or "record" if you want
    to live+rec
    // connect to default instance of app 'appname' on your FMS
    nc.connect("rtmp://fms.ip.address/appname");
    If you're using Flex2 and FMS2 (the latest FMS is 3), you
    might need to
    cuange the connection encoding to AMF0 (which is what FMS2
    uses) in order for this to work.
    Hope this helps; I've written it from my head so it probably
    has mistakes, but it's the general workflow; the docs in the
    language reference for specific functions mentioned here will also
    help.

  • AS2: Sending URL string, and recieving in flash on seperate page

    i'm trying to send some data from a list component to another
    web page, and have flash collect it and take you to an appropriate
    frame... this is what i'm using to send the data
    getURL("
    http://www.myothersite.biz?seminar="+list_box.selectedItem.firstChild.firstChild.nodeValue ,
    "_blank");
    now how can i retrieve that from the other page? I know how
    to use FlashVars and such, but only when you define it.. I don't
    know how to make it dynamic... does that make sense?

    dzedward,
    >> i'm trying to send some data from a list component
    to
    >> another web page, and have flash collect it and take
    >> you to an appropriate frame...
    I would use the LoadVars class in that situation. Have you
    checked into
    that? Create an instance of LoadVars, then add properties to
    your instance
    to match whatever data you're sending. Invoke
    LoadVars.sendAndLoad(), or
    see the LoadVars class entry for additional options.
    > ok, I worked this out with javascript, however i need to
    > URLdecode it... I'm not sure how to do that with
    javacript,
    > I'm no javascript expert, just dabble. anyone have some
    clues?
    Both JavaScript and ActionScript have escape() and
    unescape() functions
    for just that purpose. :)
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

Maybe you are looking for

  • Encore doesn't display the right subtitle on DVD preview

    Hello there, I'm using ENCORE 6.0.1.13 I've put 28 subtitle tracks properly in my project (28 different languages). Everything looks fine in the project but when I preview or burn the DVD and I choose a subtitle language from the menu, the chosen sub

  • UTL_COMPRESS Zipping Multiple BLOBs

    Hey everyone, I'm having trouble figuring out how to use UTL_COMPRESS. What I want to do is take several BLOBs from one table, and put them into one zip file. Can anyone show me an example of where this is done? Here is some sample code of what I hav

  • Error in XD01 creation

    Hi, I am getting the following error while creating the Customer Master Record Field KNVV-CHSPL does not exist in field tables (TMOD)* I check the same in customer account group field status but i was not able to found this field. Please suggest and

  • How to recover emails after i deleted the roaming folder

    Hello i deleted my roaming folder by mistake and i can't access my emails. i used a software called crash plan to recover some data and it recovered a folder that has like 5 gb of data and 2 profiles ...but even if i select this folder in server sett

  • How do I find out the answers to my security question?

    how do I find the answers to my security questions?