FLash 7 vs 8 , AS 2.0 script

Can anyone give me an idea why this script will work in Flash
7 , but gives the error code in Flash 8?
on (release, keyPress "<Enter>") {
if (user add pass eq "xxxxx" add "xxxxx!") {
gotoAndPlay("Scene 5", 3);
} else if (user add pass ne "xxxxx" add "xxxxx!") {
gotoAndPlay("tryagain", 1);
Here's the error message
**Error** Scene=animated opening, layer=Layer 3, frame=6:Line
2: ')' expected
if (user add pass eq "xxxxx" add "xxxxx") {
**Error** Scene=animated opening, layer=Layer 3, frame=6:Line
3: Statement must appear within on handler
gotoAndPlay("Scene 5", 3);
**Error** Scene=animated opening, layer=Layer 3, frame=6:Line
4: Unexpected '}' encountered
} else if (user add pass ne "xxxxx" add "xxxxx!") {
Thanks!

the add, eq and ne keywords don't exist in AS2. They were
marked
deprecated in MX 2004, and appearantly gotten rid of in 8.
add is now + or the String .concat() method
eq is now == or ===
ne is now != or !==
What you want is:
on (release, keyPress "<Enter>") {
if (user + pass == "xxxxx" + "xxxxx!") {
gotoAndPlay("Scene 5", 3);
} else if (user + pass != "xxxxx" + "xxxxx!") {
gotoAndPlay("tryagain", 1);
BTW: The second condition can even be removed entirely. If
the first
condition is not true, the second will always be true. So:
on (release, keyPress "<Enter>") {
if (user + pass == "xxxxx" + "xxxxx!") {
gotoAndPlay("Scene 5", 3);
} else {
gotoAndPlay("tryagain", 1);
Will suffice.
Manno
devunit wrote:
> Can anyone give me an idea why this script will work in
Flash 7 , but gives the
> error code in Flash 8?
>
> on (release, keyPress "<Enter>") {
> if (user add pass eq "xxxxx" add "xxxxx!") {
> gotoAndPlay("Scene 5", 3);
> } else if (user add pass ne "xxxxx" add "xxxxx!") {
> gotoAndPlay("tryagain", 1);
> }
> }
>
> Here's the error message
>
> **Error** Scene=animated opening, layer=Layer 3,
frame=6:Line 2: ')' expected
> if (user add pass eq "xxxxx" add "xxxxx") {
>
> **Error** Scene=animated opening, layer=Layer 3,
frame=6:Line 3: Statement
> must appear within on handler
> gotoAndPlay("Scene 5", 3);
>
> **Error** Scene=animated opening, layer=Layer 3,
frame=6:Line 4: Unexpected
> '}' encountered
> } else if (user add pass ne "xxxxx" add "xxxxx!") {
>
> Thanks!
>
Manno Bult
[email protected]

Similar Messages

  • Flash player not working?  Java Script?

    I can't get any videos to play. Nope, no videos for me. I feel lost without youtube. When ever I try to play any video from the net, it says, "You must either have Java script turned off, or you don't have the latest version of flash." I checked, Java is enabled, and I have downloaded flash, but it still doesn't work. I've also tried deleting related flash files, then re-installing. Still no dice. Can anyone help?

    Hi jcammon,
    I have exactly the same problem: Adobe Flash Player v. 10 works fine in Firefox, but not in Safari. I have tried a number of things, and am becoming increasingly frustrated because nothing so far has worked for me.
    -- I repaired the HD disk from the install disk (the HFS volume needed repair).
    -- I have repaired disk permissions a number of times, before and after installation of v. 10.
    -- I downloaded the archive of various Flash Players v. 9, but they are all for PowerPC-based Macs and I have the Intel version.
    -- I downloaded and installed Flash Player v. 9 but since it's an older version YouTube still doesn't work.
    Is there anything else I can try? Safari is a great browser, but it is all but useless to me if nothing flash-related will load. >.<

  • Compliance Settings Adobe flash Player disable Automatic Updates Powershell Scripts fail

    Hello,
    I have setup compliance to check and remediate if Adobe flash Player automatic updates is enabled by using PowerShell scripts.
    If I run the scripts below manually on my pc they work fine, but if I run in sccm 2012 compliance I get:
    Setting Discovery Error
    0x87d00327
    Script is not signed
    CCM
    I tried contacting the person that created the scripts, but didn't get a response.
    Discovery Script
    Set-ExecutionPolicy Unrestricted -force
    <#
      This script will check if automatic updates is disabled and return a Compliant/Non-Compliant string.
      Created:     04.08.2014
      Version:     1.0
      Author:      Odd-Magne Kristoffersen
      Homepage:    https://sccmguru.wordpress.com/
      References:
      - Configure auto-update notification Flash Player
    http://helpx.adobe.com/flash-player/kb/administration-configure-auto-update-notification.html
      - Adobe Flash Player Administration Guide for Flash Player 14
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flash_player_14_0_admin_guide.pdf
      - Adobe Flash Player Administration Guide for Microsoft Windows 8
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flash_player_13_0_admin_guide.pdf
    #>
    $OSArchitecture = Get-WmiObject -Class Win32_OperatingSystem | Select-Object OSArchitecture
    If($OSArchitecture.OSArchitecture -ne "32-bit")
        $CFGExists = Test-Path -Path "$Env:WinDir\SysWow64\Macromed\Flash\mms.cfg"
             if($CFGExists -eq $True)
             {$UpdateCheck = Select-String "$Env:WinDir\SysWow64\Macromed\Flash\mms.cfg" -pattern "AutoUpdateDisable=1" | Select-Object Line}
                if($UpdateCheck.Line -eq 'AutoUpdateDisable=1') {Write-Host 'Compliant'}
                else {Write-Host 'Non-Compliant'}
    else
        $CFGExists = Test-Path -Path "$Env:WinDir\System32\Macromed\Flash\mms.cfg"
             if($CFGExists -eq $True)
             {$UpdateCheck = Select-String "$Env:WinDir\System32\Macromed\Flash\mms.cfg" -pattern "AutoUpdateDisable=1" | Select-Object Line}
                if($UpdateCheck.Line -eq 'AutoUpdateDisable=1') {Write-Host 'Compliant'}
                else {Write-Host 'Non-Compliant'}
    Remediation Script
    Set-ExecutionPolicy Unrestricted -force
    <#
      This script will check if automatic updates is disabled and return a Compliant/Non-Compliant string.
      Created:     04.08.2014
      Version:     1.0
      Author:      Odd-Magne Kristoffersen
      Homepage:    https://sccmguru.wordpress.com/
      References:
      - Configure auto-update notification Flash Player
    http://helpx.adobe.com/flash-player/kb/administration-configure-auto-update-notification.html
      - Adobe Flash Player Administration Guide for Flash Player 14
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flash_player_14_0_admin_guide.pdf
      - Adobe Flash Player Administration Guide for Microsoft Windows 8
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flash_player_13_0_admin_guide.pdf
    #>
    $OSArchitecture = Get-WmiObject -Class Win32_OperatingSystem | Select-Object OSArchitecture
    If($OSArchitecture.OSArchitecture -ne "32-bit")
        $CFGExists = Test-Path -Path "$Env:WinDir\SysWow64\Macromed\Flash\mms.cfg"
             if($CFGExists -eq $True)
             {$UpdateCheck = Select-String "$Env:WinDir\SysWow64\Macromed\Flash\mms.cfg" -pattern "AutoUpdateDisable=1" | Select-Object Line}
                if($UpdateCheck.Line -eq 'AutoUpdateDisable=1') {Write-Host 'Compliant'}
                else {Write-Host 'Non-Compliant'}
    else
        $CFGExists = Test-Path -Path "$Env:WinDir\System32\Macromed\Flash\mms.cfg"
             if($CFGExists -eq $True)
             {$UpdateCheck = Select-String "$Env:WinDir\System32\Macromed\Flash\mms.cfg" -pattern "AutoUpdateDisable=1" | Select-Object Line}
                if($UpdateCheck.Line -eq 'AutoUpdateDisable=1') {Write-Host 'Compliant'}
                else {Write-Host 'Non-Compliant'}
    Thanks,
    Mark

    Hi Jeff,
    You were correct, Default client settings was set to All signed and once I set to bypass, PowerShell Scripts executed.  But now I am getting:    If I run them both from PowerShell, they work fine. Thanks again for your help, Mark
    Error Type
    Error Code
    Error Description
    Error Source
     Enforcement Error
    0x87d00329
    Application requirement evaluation or detection failed
    CCM

  • I am trying to reinstall Flash CS4 professional as the action script is not working but now I am getting an error: 2 message when I use the original CD to try and reinstall

    I can't get the original disk to work on a reinstall.  I get the message
    AdobeColorCommonSetRGB
    Error:
    Error 2.
    I teach a class using this program on Macintosh computers running 10.9.5 and the action script is not working.  It will work on any program designed using the 10.8 but if you design any animation on 10.9.5 the action script will not work for the buttons

    You would have to manually delete the color profiles in question... Run the cleaner tool and see if it gets you started.
    http://www.adobe.com/support/contact/cscleanertool.html
    Mylenium

  • You tube adobe flash player updated and installed ,java script enabled but can't play videos with firefox help

    i have movies from you tube in my que but cannot watch them . I have downloaded and installed adobe flash playe ver 10 5 time and it does not work some one with the same problem said mozilla fire fox is not compatible with the new flash player should i go back to internet explore and uninstall firefox? or is this a problem with your server fix this please

    There are two different versions of Flash, one version for IE (ActiveX) and another version for all other browsers (Plugin version). You need to install the Plugin version,
    1.Download the Flash setup file from here: <br />
    [http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player.exe Adobe Flash - Plugin version]. <br />
    Save it to your Desktop.<br />
    2. Close Firefox using File > Exit <br />
    then check the Task Manager > Processes tab to make sure '''firefox.exe''' is closed, <br />
    {XP: Ctrl+Alt+Del, Vista: Shift+Ctrl+ESC = Processes tab}
    3. Then run the Flash setup file from your Desktop.
    * On Vista and Windows 7 you may need to run the plugin installer as Administrator by starting the installer via the right-click context menu if you do not get an UAC prompt to ask for permission to continue (i.e nothing seems to happen). <br />
    See this: <br />
    [http://vistasupport.mvps.org/run_as_administrator.htm]

  • Flash cs6 createjs not exporting action script

    Hi ,
    I had installed cs6 in my laptop(trail version). Basically I am Action Script 3.0 programmer. I try to develop one application and create js file. Using programming I did simple drag and drop functionality. its working in swf file. Once I publish to js its not working. And I faced the text issues. Can you guys let me know that i did wrong.
    Find the attached test files.
    Thanks,
    Chandra sheker

    CreateJS won`t translate your actionscript to javascript.
    Search for tutorials on the matter that will show how you can replicate AS3 functionality with Javascript

  • Flash et "chemin" pour l'action script

    Bonjour a tous,
    (flash8)
    J'ai une s�quence 1 nomm�e "intro".
    je passe automatiquement a la s�quence 2.
    La s�quence 2 est "bloqu�e" puisque j'ai
    plac� un "stop".
    Sur cette s�quence 2 il y a un clip qui se joue
    normallement
    sii on clique dessus.
    A la fin du clip (image cl� 200 du clip)
    je voudrais faire un goto afin de revenir a la scene "intro"
    gotoAndPlay("intro",1);
    seulement rien ne se passe ?
    j'ai donc attaqu� avec les "chemins"
    _root.gotoAndPlay("intro",1);
    _level0.gotoAndPlay("intro",1);
    rien ne se passe non plus ?
    quelqu'un pourrait m'aider afin qu'a partir du clip
    je puisse avoir un goto me ramenant a la s�quence
    pr�c�dente ?
    merci

    Hello :)
    > (flash8)
    bonne initiative, merci de le pr�ciser ;)
    > J'ai une s�quence 1 nomm�e "intro".
    C'est simple ... depuis FLASH 5 il ne faut PAS utiliser de
    s�quence !!!
    Il faut utiliser des clips tout simplement et si possible sur
    la sc�ne
    principale de l'animation il faut qu'il y est une seule image
    cl� et
    c'est tout... tout le reste doit se positionner dans des
    clips.
    > je passe automatiquement a la s�quence 2.
    > La s�quence 2 est "bloqu�e" puisque j'ai
    plac� un "stop".
    >
    > Sur cette s�quence 2 il y a un clip qui se joue
    normallement
    > sii on clique dessus.
    > A la fin du clip (image cl� 200 du clip)
    > je voudrais faire un goto afin de revenir a la scene
    "intro"
    >
    > gotoAndPlay("intro",1);
    >
    il faut que tu comprennes la hi�rarchie de ton
    animation :)
    De fa�on g�n�ral... tu peux utiliser le
    mot cl� "this" et un trace()
    pour voir o� tu te trouves quand tu tapes du code :
    [code]
    trace(this) ;
    gotoAndPlay("intro",1);
    (/code]
    Si tu ne mets pas de this devant ton gotoAndPlay... c'est que
    tu
    supposes que tu cherches � lancer le gotoAndPlay en
    "local" comme si tu
    avais �cris :
    [code]
    trace(this) ;
    this.gotoAndPlay("intro",1);
    (/code]
    Mais l� tu cherches � cibler la sc�ne
    principale (parent de ton clip) ..
    du coup tu dois taper obligatoirement au minimum :
    [code]
    trace(this) ;
    _root.gotoAndPlay("intro",1); // _root = _level0 =
    sc�ne principale
    (/code]
    > seulement rien ne se passe ?
    >
    > j'ai donc attaqu� avec les "chemins"
    >
    > _root.gotoAndPlay("intro",1);
    > _level0.gotoAndPlay("intro",1);
    >
    > rien ne se passe non plus ?
    >
    > quelqu'un pourrait m'aider afin qu'a partir du clip
    > je puisse avoir un goto me ramenant a la s�quence
    pr�c�dente ?
    >
    Pense � lire l'aide de flash, la notion de
    hi�rarchie entre les clips
    est expliqu�e.
    Pense aussi � utiliser si tu d�butes dans la
    panneau d'action en haut
    l'icon "chemin cible" qui te permettra de retrouver ton
    chemin dans ton
    code !
    EKA+ :)

  • Script adding on to my flash on html page

    errors in page. this script is getting into my html page with
    the flash im adding into. my page does not show in the internet
    after upload. www.aurorabiomed.html/flashretreat.html. everytime i
    add a flash file into my webpage this script is added and my page
    has errors. it was not happening before i reformatted my harddrive
    and reinstalled dw8
    !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    <script src="../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','120','height','600','src','assets/retreat07','quality','high','pluginspage','http://w ww.macromedia.com/go/getflashplayer','movie','assets/retreat07'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="120" height="600">
    <param name="movie" value="assets/retreat07.swf" />
    <param name="quality" value="high" />
    <embed src="assets/retreat07.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="120"
    height="600"></embed>
    </object></noscript>
    </body>
    </html>

    What is the location of this page in the folder structure you
    show?
    > is there something wrong with the source
    > path of the script?
    If you are getting the wrong path to the linked file, then
    your local site
    is not properly defined.
    > - mainwebsite_html folder
    > + assets folder
    > flashretreat.html
    > - scripts folder
    > - templates
    If the page you show below is in fact flashretreat.html, then
    the link that
    DW adds is correct - you have to go up one folder level, find
    the Scripts
    folder (I'm assuming you made a type in showing lower case
    above) and then
    find the required script in that folder -
    <script src="../Scripts/AC_RunActiveContent.js"
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "web_rookie" <[email protected]> wrote in
    message
    news:[email protected]...
    > in the preferences window, under code rewriting i
    disabled active content
    > for
    > 1. insert using browser safe scripts &
    > 2. convert tags to scripts on file open.
    >
    > my page works fine now. if i enable this options and the
    scripts folder is
    > also uploaded my page has errors. is there something
    wrong with the
    > source
    > path of the script? i tried transfering the folder
    inside my webpage
    > folder
    > together with the html pages and assets folder rather
    than at the root
    > folder
    > but still gives me the same error.
    >
    > - Site - Biomed (C:Biomed)
    > - mainwebsite_html folder
    > + assets folder
    > flashretreat.html
    > - scripts folder
    > - templates
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    > <title>Untitled Document</title>
    > <script src="../Scripts/AC_RunActiveContent.js"
    > type="text/javascript"></script>
    > </head>
    >
    > <body>
    > <script type="text/javascript">
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=7,0,19,0','width','120','height','600','src','assets/retreat07','quality
    > ','high','pluginspage','
    http://www.macromedia.com/go/getflashplayer','movie','as
    > sets/retreat07' ); //end AC code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    > rsion=7,0,19,0" width="120" height="600">
    > <param name="movie" value="assets/retreat07.swf"
    />
    > <param name="quality" value="high" />
    > <embed src="assets/retreat07.swf" quality="high"
    > pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    > type="application/x-shockwave-flash" width="120"
    height="600"></embed>
    > </object></noscript>
    > </body>
    > </html>
    >
    Text
    Text
    >

  • Can I use a 2.0 script in a 3.0 script Flash file?

    The following script is a simple photo gallery, written in Action Script 2.0. When I attempt to apply the same script in a Flash file designated as having Action Script 3.0, it does not work properly (the photos advance from frame to frame in a runaway fashion, in one continuous loop).
    Is there some reason why a 2.0 script should not work in a 3.0-specified document?
    Thanks, and here is the script:
    stop();
    btn_next.onRelease=function() {
        if (_root._currentframe==20) {
            gotoAndStop(1);
        else {
            nextFrame();
    btn_prev.onRelease=function() {
        if (_root._currentframe==1) {
            gotoAndStop(20);
        else {
            prevFrame();

    there's no easy way to convert most code.  but that's almost the same in both as2 and as3:
    stop();
    btn_next.addEventListener(MouseEvent.CLICK,nextF);
    function nextF() {
        if (MovieClip(root).currentFrame==20) {
            gotoAndStop(1);
        else {
            nextFrame();
    btn_prev.addEventListener(MouseEvent.CLICK,prevF);
    function prevF() {
        if (MovieClip(root).currentFrame==1) {
            gotoAndStop(20);
        else {
            prevFrame();

  • Latest Flash Player does not recognise an Old Script

    Hi, here's hoping this is in the right Forum. Some time ago I added an excellent Flash widget to a page -  recently I went back to the widget code to add it to a new page, unfortunately now, the element displays in the page as an error message - "You have an old version of Flash Player. Please visit adobe.com and get a new one". I tried in vain to reinstall the latest version of Flash to no avail - it was already installed, as I suspected. Then I remembered that the code was old, so I began to backgrade my Flashplayer - bingo! The excellent 'Facehugger' (form the Alien series of films) appeared. Only now I had an old version of Flash on my pc and nothing else would load. hhhmmmm dilemma, every other Flash I tried to load would require the latest Flash player EXCEPT my beloved Facehugger. So, my question is, are there any Flash code experts out there who would be able to take a look at the widget code and make it compatible with Flash 10+?
    heres the code:- <script type="text/javascript">
    AC_FL_RunContent( 'height','528','width','385','allowscriptaccess','never','allownetwor king','internal','src','http://www.avp-r.com/EN/widgets/facehugger.php?api=html','wmode','tran sparent','menu','false','quality','best','scale','noscale','movie','ht tp://www.avp-r.com/EN/widgets/facehugger.php?api=html' ); //end AC code
    </script><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" height="528" width="385">
    <param name="allowScriptAccess" value="never" />
    <param name="allowNetworking" value="internal" />
    <param name="movie" value="http://www.avp-r.com/EN/widgets/facehugger.swf.php?api=html" />
    <param name="wmode" value="transparent" />
    <param name="menu" value="false" />
    <param name="quality" value="best" />
    <param name="scale" value="noscale" />
    <embed type="application/x-shockwave-flash" allowScriptAccess="never" allowNetworking="internal" src="http://www.avp-r.com/EN/widgets/facehugger.swf.php?api=html" height="528" width="385" wmode="transparent" menu="false" quality="best" scale="noscale" />
    </object></noscript>

    i think the problem is with your html code rather than the swf itself.
    there is now a better way of embedding swfs called SWFObject. Theres a tutorial here: http://www.adobe.com/devnet/flashplayer/articles/swfobject.html and an online code generator here: http://www.bobbyvandersluis.com/swfobject/generator/index.html

  • New to Flash, create a flash form which is emailed using CGI script when submit button is pressed

    I'm trying to build a form in flash that is emailed using CGI
    script. I'm just lost and confused and I just can't seem to figure
    this out.
    This is the CGI coding for HTML and I just need to convert it
    to use in CS3:
    <form action="
    http://www.hostmonster.com/monstermail"
    enctype="multipart/form-data" method="POST">
    Name: <input type="text" name="Name"><br>
    Email: <input type="text" name="mailfrom"><br>
    Phone: <input type="text" name="Phone"><br>
    Service: <input type="text" name="Service"><br>
    <input type="hidden" name="sendtoemail"
    value="[email protected]"><br>
    <input type="submit" value="Send Email">
    </form>
    This is a link to what I'm working on:
    http://www.alternativesolutionsforyou.com/contact.htm

    OK, sorry....no more errors when I test the movie but when I
    test it live....nothing happens???? Here's the link again:
    http://www.alternativesolutionsforyou.com/contact.htm
    Code as it is:
    lv=new LoadVars();
    lv.Name=name.text;
    lv.mailfrom=email.text;
    lv.Phone=phone.text;
    lv.Service=service.text;
    lv.sendtoemail="[email protected]"
    yourSubmitButton.onPress=function(){
    lv.sendAndLoad("
    http://www.hostmonster.com/monstermail",lv,"POST");
    lv.onData=function(){
    // data successfully sent
    // this will execute if your cgi script returns something
    after executing
    I haven't adjusted what happens after you his the submit
    button yet.....just trying to get the email working.

  • What's difference push stream with server script and push with flash media live encoder??

    Hi
    I'm multi point push streaming with adobe flash media server 4
    Stream structure like this
    Open Broadcaster Software (or Flash media live encoder) (RTMP) -> Home Flash media server with multi push script (main.asc)
    -> Stream to 2 justintv channels + 1 dailymotion channel (1024x576 , 1750Kbps)
    no problem at all when streaming to justintv
    but some another stream services have speed problem
    ustream can not push with this method
    and dailymotion, vaughnlive push speed slow down than OBS or FMLE Direct stream
    for example
    when direct streaming with OBS or FMLE (Without home server) , no problem at all stream to dailymotion and vaughnlive
    clearly no lag
    but when push with server script, slow down push speed and unstable (it affect only for dailymotion and vaughnlive streams)
    justintv upload speed same as OBS, FMLE's bitrate but dailymotion, vaughnlive bitrate always slower than justintv or OBS, FMLE
    Like this - justintv , OBS, FMLE (1750Kbps~2000Kbps) but dailymotion, vaughnlive (1600Kbps~1800Kbps)
    I don't understand why have push speed difference between server script push and OBS, FMLE push
    Have any reason? and do not have solution???
    (sorry for my bad english)

    First of all let me clarify that we call multi point publish and it has been explained in detail here
    http://help.adobe.com/en_US/flashmediaserver/devguide/WS5b3ccc516d4fbf351e63e3d11a0773d56e -7ffbDev.html
    When you do multi point publish(MPP) you publish from one server to another server, when you use FMLE you do a normal publish of stream(s) from a client/encoder(FMLE in this case) to the Adobe Media server.

  • Can someone take a look at my project and give me ideas to reduce lag/optimize it? (relatively new to flash and need help)

    Dropbox - TV_AL_Q
    I really need to reduce the lag happening in this project. I know practically nothing about action script except for what I've used in this project so please keep that in mind.
    Im going to try and break apart the grouped art so its in its most basic form and see if that helps, and also change all my tweens to frame by frame since those two things helped me with an animation I did awhile back that was lagging severely.
    But I was hoping someone with more knowledge could take a look and see if there is anything that they know of that I could do to help fix this. I'm working in Flash cs6 and using action script 3.
    I have to turn this project in by this Friday (the 20th) so I would love to get this sorted by then but even if I can't I would still be interested in some possible solutions, just for learnings sake.
    Thanks.

    Thank you for yet another cryptic reply, remember I'm the idiot here who doesn't understand this stuff so please can you explain things in a little more detail. Thanks.
    I am using the JW Player setup assistant and it lists two types of code
    The "Embed code" and the "swfobject 1.5 code" but not an Object/Embed code that you mention.
    This is the code that the website is telling me to use.
    <script type="text/javascript" src="/embed/swfobject.js"></script>
    This text will be replaced
    <script type="text/javascript">
    var so = new SWFObject('/embed/player.swf','mpl','480','270','9');
    so.addParam('allowscriptaccess','always');
    so.addParam('allowfullscreen','true');
    so.addParam('flashvars','&file=http://web.me.com/nathmac31/Flash/WaineWeddingHD. swf');
    so.write('player');
    </script>
    My movie does play on through the player on the JW site, after about 30 seconds of waiting for the picture to appear. When I cut and paste the above code into my webpage, I don't get anything. I have dropped the "Player.swf" and "swfobject.js" files into the folder containing the contents of the page that I want the player to appear on.
    Where is the exact best place to drop these files?

  • How do I turn video smoothing on for projects that I publish to Flash?

    I am using Captivate 7.  I have an MP4 that is places on a slide.  I am publishing to Flash.  I have set everything to the highest quality and have turned off all compression.  Due to contstraines in our delivery system I must limit the playback size by editing the HTML file after it has been plublished (I dont have a choice in this and I have to use Flash).  So the problem is that when the player is resized the video quality is very poor in the flash output.  If I simply play the MP4 outside of flash I can cleanly resize the window.  It appears that video smoothing is not turned on in when Captivte publishes a Flash file.  Anyone know a script or setting to turn this feature on in the resulting flash file?  As a side note before I got here they used Camtasia and it used video smoothing by default.  So Im trying to get the same look.  As a test I took the same mp4 (newly created by me) and droped in into one of their old Camtasia flash folders and it looked fine.  So I know it is something that Captivate is not doing the way I want it too.  Any help?

    From your end, it is likely you cannot. Some cellular providers do not allow anything other than simple SMS, or the person you wish to message may not have elected to include those feature, or have them turned off. It has nothing to do with any settings or capability on your phone.

  • Using flash to display images from sql server or file system

    hello,
    what methods and parameters of the urlloader class we have to use to display images in a flash player if possible..
    also movie should update everytime a new image is added to a database or file
    the images can either be in a file system or in a sql database (if possible)
    does flash comes with an object of this type or we have to create it.
    regards,

    i responded to your duplicate message 4 days ago:
    is it possible to insert and retrieve images from sql server using actionscript.
    you'll need server-side script to query your database and you can use the flash urlloader class to call your script.
    also  is it possible to create a flash scrolling gallery based on images  stored in a database and everytime an image is added it is displayed in  the gallery.
    load the data using the urlloader class and  then load the images.  periodically query the database for new images if  there's no direct way for flash to know a new image was added.

  • IE8 Error when opening Pop-up with Flash Content

    I am running into a problem creating a webpage.  I am very new to AS3 and not quite a novice at Dw CS3.  I have audio files and flash content that is downloadable from my page.  The audio is made available by clicking on a flash button that links to an mp3 or wav file.  The player then opens and plays the file.  I also created some flash animations that are accessed by flash buttons I also created and put on my webpage.  I added scripting (AS3) for those buttons that defines a pop-up window size and points to an html page to put into the pop-up window.  I'm really not sure if this script is the most efficient.  It probably isn't. The script is below: (Note: I could not paste it in so I retyped it.  Don't know why, but the script works even though there might be syntax errors below.)
          //define variable "jscommand" that has URL to open and pop-up window parameters
    var jscommand:String="window.open('Multiplication.html,'miniwindow','height=440,width=605,toolbar=yes,scrollbar=no');";
          //define variable "openflashURL" which runs "jscommand"
    var openflashURL:URLRequest("javascript"+jscommand+"void(0);");
          //define function "openflashdown" that initiates URL request
    function openflashdown(Event:MouseEvent):void{
    NavigateToURL(openflashURL,"_self"};
          //define button listener
    Mult_FlashPlayer_btn.addEventListener(MouseEvent.CLICK,openflashdown);
    The problem is as follows:  When I click on the flash buttons that use the above script, I get a pop-up window with the .swf in it and everything runs fine.  Next, when I click on an audio button, the mp3 file downloads and the player (Real) begins to play it.  But if I try to open up the flash animation again I get this error message from IE8 "Unspecified Error  Internet Explorer cannot download".
    I tried to find anwsers on-line and I found another person with a similar problem.  Their solution was to take the javascript code out of the flash button coding and put it in the html page directly.  I took the first line on code in the above and put it in the html code.  Dw did not recognize it as code but as text.  I don't know where to go from here.  Does anyone know what to do?  I'm a beginner so please be as clear as you can be.

    Try uninstalling your sound card driver in Device Manager and reboot your PC.

Maybe you are looking for

  • Is it possible to create a keylogger in java

    i want 2 know that is it possible to create a program that can record all the key pressed in the rest of the windows application. Like the key pressed in ms - word can be monitored by a java program in the background......or so. Is it possible or it

  • Remapping TrueType Fonts in Framemaker 9.0 maker.ini

    Greetings, forum community. When attempting to embed non-base 14 fonts in PDFs using Pitstop v7.52, I receive a notice that no TrueType version could be located. I believe (please correct me if I'm wrong) that the solution is to remap the unavailable

  • How can I get the whole hierarchy of a dimension member ?

    In the Oracle example jspDrillthrough I retrieve the dimension member of the clicked cell in the crosstable. Please suppose the geography dimension has some levels like countries and continents. What have I to do to get the complete hierarchy of the

  • Different between KEI2 and OKB9

    Hi All, Anybody can help me...Whats the different/function for tcode <b>KEI2-Maintain PA Transfer Structure</b> and <b>OKB9-Change Automatic Account Assignment</b>. Whats the conditions/criteria if I need to maintain the G/L accnt at both tcode? Let

  • User manual for crystal server

    We have been using crystal XI reports for several years.   I'm looking for reference material for getting started with crystal server.    Support recommended taking classes for $2600.    Before I spend that kind of money, isn't there a user manual th