Flash Remote Debugger Help

Yesterday, my Flash CS3 AS2 remote debugging stopped working
after I installed a number of Adobe updates and on Mac OS X (Intel)
update. Before I installed the updates, I was able to debug any SWF
loaded in my browser window with the CS3 debug interface and output
window. After I rebooted, all of my browsers stopped sending my the
prompt to connect to a local host or enter an IP. Also, "debug" is
no longer an option in the drop down menu when I right click on the
swf in the browser window. Flash remote debugging is marked
properly in the FLA publish settings and a new SWD is being
published every time I test. But the player doesn't attempt to
connect at all! I don't know if the loss of this functionality is
related to the updates but it does seem that way.
Any help, please?!
Thanks,
Steven

Problem solved. After the update, I needed to get the newest
version of the Adobe Debug Player for Intel Macs.
see what players you have here:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15507&sliceId=1
get the player specific to your OS here:
http://www.adobe.com/shockwave/download/alternates/#fp

Similar Messages

  • Urgent Flash Remoting Help

    Can anybody tell me how can I call my .net dll in flash using
    flash remoting.
    http://livedocs.macromedia.com/flashremoting/mx/Using_Flash_Remoting_MX/usingFRNET6.htm
    Here is example by macromedia liveDocs but whenever I used
    this code and run my flash application It doesnot show me any
    output.
    I think we can not call function declare in class from flash.
    can anybody help me.

    You can go through this article:
    http://aspalliance.com/942_Working_with_Flash_Remoting_Using_NET
    This article will give you a detail idea about Flash remoting
    with .NET, and also has some sample project.
    Thanks
    Sankalan
    (www.mindfiresolutions.com)

  • HELP ON MOVING FLASH REMOTING

    i seriously need help, i used flash cs3 professional, and
    there is no FLASH REMOTING CLASSES!. i need a very good tutorial on
    how to move FLEX RPC library to FLASH CS3 library. i really need it
    in FLASH CS3. Please reply asap. i really appreciate it very much.
    email [email protected] if can. Thank you.

    Hello,
    Have you seen the tutorials at gotoandlearn.com for using
    AMFPHP for Flash Remoting. In AS3 the Remoting classes have been
    included in the new NetConnection classes.
    Go here to watch the first tutorial and then watch the second
    as it's more in-depth. He talks a little about the Flex RPC lib.
    http://www.gotoandlearn.com/player.php?id=78

  • Help w/speed of Flash application - Use load vars, flash remoting or other....

    I'm looking for a little help with a dynamic Flash
    application I am building with ColdFusion integrated. I need the
    Flash to load and interact with a SQL Server database as quickly as
    possible as the user interacts with the Flash application. I have
    done research and thought that Flash Remoting was the way to go
    especially when using ColdFusion with Flash, but I am experiencing
    a lot of lag time when a user tries to load more data.
    So I'm looking for some advice on what is the fastest/best
    way to pass data back and forth between Flash and ColdFusion.
    Currently I am using Flash Remoting via ColdFusion web services
    (first time using this), but again with the lag time I am receiving
    I am thinking maybe my old way of using LoadVars would be faster? I
    am also open to any other means to pass data from ColdFusion/SQL
    database to Flash that exist. I am just looking for the quickest
    way for my customers to interact with the Flash piece.
    Thanks for all your help!

    Also would like to note that internet explorer does not have this problem, I would prefer to figure out why this is happening and resolve it as I hate IE.

  • HELP: Problem using AS3 and CF-Flash Remoting CFC

    I am trying to use CF flash remoting from an AS3 Class using
    the NetConnection class. The approach I am using is directly from
    "ActionScript 3.0 Cookbook" by Joey Lott et. al.
    I am using a totally standard default install of CF, Flex and
    SQL server on Windows 2003 R2.
    When I do a CF Flash remoting call using,
    _netConnection = new NetConnection();
    _netConnection.connect('
    http://pordev2.wcrt.xeroxlabs.com:8500/flashservices/gateway/');
    _netResponder = new Responder(onGotData, onGotError);
    _netConnection.call("porTechDB.PorComponents.ProjValuationRemote.getProjValuationData",
    _netResponder, 1, strtest);
    all seems OK. The CFC returns the integer and string just
    fine.
    HOWEVER, when I also add an associative array, "aa", to the
    string of arguments, I get an error...
    _netConnection.call("porTechDB.PorComponents.ProjValuationRemote.getProjValuationData",
    _netResponder, 1, strtest, aa);
    returns the error: "Unknown object type tag (17)"
    The same error is also returned if "aa" is an XML variable
    instead of an associative array.
    So:
    a) Is this a bug?
    b) Is there an AS3 specific gateway I should have referenced?
    c) Is Flash Remoting not yet supported in AS3?
    Thanks you for your time,
    Ned
    =================================================================
    Here is my test code:
    <cfcomponent displayname="ProjValuationRemote"
    hint="Returns an array of Project Header, Valuation and supporting
    data recordsets">
    <cffunction access="remote" name="getProjValuationData"
    output="false" returntype="String">
    <cfargument name="test1" type="numeric" required="no"
    default=1>
    <cfargument name="test2" type="string" required="no"
    default = "a default string">
    <cfargument name="AA" type="Struct" required="no">
    <cfset testReturn = #test2# & ": TESTING -- This is
    the return integer: " & #test1#>
    <cfreturn testReturn>
    </cffunction>
    </cfcomponent>
    public function requestVRD():void {
    var strtest:String = "Simple test string";
    var aa:Object = new Object();
    aa.curDataSet = 86;
    aa.curYear = 2007;
    _netConnection = new NetConnection();
    _netConnection.connect('
    http://pordev2.wcrt.xeroxlabs.com:8500/flashservices/gateway/');
    _netResponder = new Responder(onGotData, onGotError);
    _netConnection.call("porTechDB.PorComponents.ProjValuationRemote.getProjValuationData",
    _netResponder, 1, strtest);
    private function onGotData(re:String):void {
    // arVRD = re;
    trace(re);
    returnString = re;
    trace("got remote data response");
    private function onGotError(error:Object):void {
    trace("Executing the gotProjectData_Fault: " +
    error.description);
    trace("Executing the gotProjectData_Fault -- no detail");
    // setErrorAlert();
    This works as expected producing the following trace:
    Simple test string: TESTING -- This is the return integer: 1
    Replacing the remote with the following, which adds an array
    to the parameter list...
    _netConnection.call("porTechDB.PorComponents.ProjValuationRemote.getProjValuationData",
    _netResponder, 1, strtest, aa);
    Produces the following error:
    Executing the gotProjectData_Fault: Unknown object type tag
    (17)

    I didn't think so,
    We are putting together ads with alot of images with that 40k limit
    so the images don't look great.
    I was trying to find the best way to work with the images, while keeping it as simple as possible.
    Oh.... your right I was hoping to slowly introduce my associates into AS3, I thought If this could be done
    It woud be a great tool to introduce them to, but no
    Thank you for your time and feedback

  • Flash Remoting Works Locally But Not On The Server

    Hello,
    I have a flash file that connects to an asp.net page. The
    aspx page queries a databse and returns a set of records to flash.
    Flash reads in those records and processes those records. Locally,
    this works fine. However, on the server, nothing happends. I spoke
    with tech support at hosting company and they tell me everything is
    installed for Flash Remoting.
    Here is the code thats on the server:
    import mx.remoting.NetServices;
    import mx.remoting.NetDebug;
    mx.remoting.debug.NetDebug.initialize();
    //CONSTRUCTOR
    var inited:Boolean = false;
    if(!inited){
    inited = true;
    NetServices.setDefaultGatewayUrl("
    http://63.134.251.243/gateway.aspx");
    var gatewayConn
    bject = NetServices.createGatewayConnection();
    gatewayConn.setDebugID( "Gateway Connection" );
    var SQLQueryToolService
    bject = gatewayConn.getService("matthewlemke", this
    function SQLQueryToolAction(){
    SQLQueryToolService.test("SELECT * FROM flashImages");
    function test_Result(result){
    trace(result);
    _root.abc.text = result.toString();
    SQLQueryToolAction();
    Here is the code locally:
    import mx.remoting.NetServices;
    import mx.remoting.NetDebug;
    mx.remoting.debug.NetDebug.initialize();
    //CONSTRUCTOR
    var inited:Boolean = false;
    if(!inited){
    inited = true;
    NetServices.setDefaultGatewayUrl("
    http://localhost/matt/gateway.aspx");
    var gatewayConn
    bject = NetServices.createGatewayConnection();
    gatewayConn.setDebugID( "Gateway Connection" );
    var SQLQueryToolService
    bject = gatewayConn.getService("matt", this );
    function SQLQueryToolAction(){
    SQLQueryToolService.test("SELECT * FROM flashImages");
    function test_Result(result){
    trace(result);
    _root.abc.text = result.toString();
    SQLQueryToolAction();
    Any help is greatly appreciated.
    Thanks,
    Vic

    I am having the exact same problem. My remoting application
    works fine on my laptop as long
    as the url for the gateway reads
    http://localhost/remotingData/gateway.aspx,
    but if I change
    it to the name of my machine and attempt to run the swf I
    keep getting a NetConnection.call.badversion error in the
    netconnection debugger. If I attempt to connect through IE it just
    sits with no reply.
    Is there some kind of permission thing going on here?
    Flash MX2004 Professional
    Flash Remoting Components MX2004 (unlicensed)
    IIS 6.0
    IE 6.0

  • Flash Remoting not working in CF 10

    We've been using Flash Remoting for years and now, while testing CF 10 on a development server, find that it no longer works.
    In particular, I get a 404 error when trying to access https://{ip address}/flashservices/gateway.
    I've already confirmed that remoting is enabled in the Administrator and followed the steps given in the documentation (http://help.adobe.com/en_US/ColdFusion/10.0/Installing/WSc3ff6d0ea77859461172e0811cdec1896 9-7ffa.html).
    Any advice?

    If you don't want to change your as-files:
    JkMountFile
    "[Path to CF-Installation]/config/wsconfig/1/uriworkermap.properties"
    change
    /flashservices/gateway/* = cfusion
    to
    /flashservices/gateway = cfusion
    restart CF

  • How to debug flash remoting?

    Hi I am using -  flashremoting.jar 1.0.52502 on tomcat.
    I have a 3 year old application that is running on 1 server, it works fine there, the flash client can connect to the java tomcat server and call methods and all is well.
    We are trying to stand this application up on another server, and I cant get the flash remoting to work, the server side java methods never get called (I added logging to them).
    In the adobe troubleshooting it says to go to /gateway and you should get a blank page.
    The weird thing is on both the server that works and the server that doesnt work, if I go there in a browser I get:
    HTTP Status 404 - /flashservices/index.html
    This is the same for both servers. So im not sure what to try next. Im not an expert in flash my flash guy says the client gets:  "Error opening URL"
    The url in the flashvars looks good, the flashgateway.jar file is in the web-inf/lib folder , the frconfig.txt is in web-inf/classes
    my web.xml has this:
    <servlet>
            <servlet-name>FlashGatewayServlet</servlet-name>
            <display-name>Flash Remoting Servlet</display-name>
            <description>
                Servlet-based plugin to Flash Remoting
            </description>
            <servlet-class>
                flashgateway.controller.GatewayServlet
            </servlet-class>
            <load-on-startup>10</load-on-startup>
        </servlet>
    <servlet-mapping>
            <servlet-name>FlashGatewayServlet</servlet-name>
            <url-pattern>/gateway</url-pattern>
        </servlet-mapping>
    what can I check next, how can I troubleshoot this and figure out if its a client problem or a server problem, or somewhere in the middle?
    thanks
    Joel

    I got on line with tech support to get them to show me how to use it. The guy hardly knew anything about it himself. From the coldfusion group and was the guy who was supposed to know. I screen shared with him and every time we tried debugging from flex it would just stop. Seems that if something goes wrong in a coldfusion library, the debugger just stops and so it is something upsteam of your break point. Of course there is nothing to show you that, but it became clear. The guy didn't have any better idea than I did what was going on. I figured that out.
    If you check the docs about CF and flex, their recommendation is write it all as a CF app. debug it and then hook flex to it. Pure garbage. Anybody hear of DRY. I have dumped ever using CF on the back end. It is not an oop language. It is a tag based language for markup pages with quasi script and its ORM is so inflexible its a joke.
    Went back to ruby on rails and rubyamf for my backend to flex apps (with Mate as MVC framework) and I could not be happier. Never had such an unpleasant develpment experience than working with Coldfusion as the backend to a flex app. Good luck.

  • If VS 2008 'Remote Debugger' is added to an existing VS 2008 install, should VS 2010 first be uninstalled?

    I found that Visual Studio 2008 Remote Debugger was not included when Visual Studio 2008 was installed.  I also have Visual Studio 2010 installed.  Should Visual Studio 2010 be uninstalled prior to installing Visual Studio 2008
    Remote Debugger?
    Thanks

    Hi Bontrager,
    Based on your issue, I know that since the different Visual Studio versions exist as separate applications. So if you want to install the Visual Studio 2008 Remote Debugger, you will not need to uninstall Visual Studio 2010.  Visual Studio 2010 will
    not affect you install the Visual Studio 2008 Remote Debugger.
    Hope it help you!
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Where is flash remoting in actionscript 3.0\flash cs5

    hello everybody,
    i have been looking throught all the available tutorials on this site including flash cs5 help, actionscript 3.0 developer's guide, learning actionscript 3.0 and i can't seem to find anything relating to flash remoting (i.e how to retrieve and send data to and  from a server like coldfusion). has it been removed?
    i have solutions that were built with flash and actionscript 2.0 that uses data retrieved from coldfusion server for it's operation, i was thinking of migrating them to actionscript 3.0, but it keeps saying that the classes, packages or interfaces like mx.remoting, mx.rpc can not be found. even when i create a new flash document specifying 2.0 as the docuent type, it is still not compiling,. does this mean i have to revert to flash 8\actionscript 2.0 because that is what i built the programs with. please  any information or guidiance will be highly appreciated.
    thanks to you all.

    To do it in AS2 you need just install the remoting classes again. You can either copy them fro your old install or get them:
    http://drupal.org/node/258605
    Scroll down a bit and you'll see a link to the as2 remoting classes: Remoting_FlashCS3.zip
    In AS3 there are a few ways. Some people have made classes for it, or you can use the built in methods of NetConnection. Here's a couple examples of that:
    http://www.oscartrelles.com/archives/as3_flash_remoting_example
    http://www.flash-db.com/Tutorials/helloAS3/

  • FLEX 2...  Or Flash Remoting

    Hi, could someone please help me make a decision with which
    architecture to use to build a flash application?
    I want a flash front end, i dont care about users who dont
    have a flash player; this is for a commercial enterprise for a
    specific user base. My application is for property, the management
    and maintenance of, so the property is the main object and all data
    relating to its financial budgets, leaseholders who live in the
    block, maintenance records, health and safety and cleaning records;
    etc. The users all need to be directed by and communicate through
    this central organisation and management tool.
    I can use Flash pretty well but have never used flash
    remoting or ever learned to connect flash to database query
    results.
    So do i build using the Flex 2, Adobe Air, or Flash Remoting
    MX
    I have been learning Coldfusion and have a back end being
    developed as we speak in fusebox methodology and microsoft sql
    database.

    Hi,
    If you must make application more flexible for you,
    you must get Flex. it's an ide.
    If you want to custom componant or animation you must take
    flash.
    Olivier
    Stu@Seashores a écrit :
    > Hi, could someone please help me make a decision with
    which architecture to use
    > to build a flash application?
    > I want a flash front end, i dont care about users who
    dont have a flash
    > player; this is for a commercial enterprise for a
    specific user base. My
    > application is for property, the management and
    maintenance of, so the property
    > is the main object and all data relating to its
    financial budgets, leaseholders
    > who live in the block, maintenance records, health and
    safety and cleaning
    > records; etc. The users all need to be directed by and
    communicate through this
    > central organisation and management tool.
    >
    > I can use Flash pretty well but have never used flash
    remoting or ever learned
    > to connect flash to database query results.
    >
    > So do i build using the Flex 2, Adobe Air, or Flash
    Remoting MX
    > I have been learning Coldfusion and have a back end
    being developed as we
    > speak in fusebox methodology and microsoft sql database.
    >
    >
    >
    >

  • Web Host can't get Flash Remoting to work

    Please help this non-technical client get my website up,
    please!
    I have had an application developed and my programmers have
    utilized FlashRemoting.
    I have seen the application working on one web host's testing
    server, but we had to move it because of tech support issues.
    This new host has told me that they've installed Flash
    Remoting, but my programmers say it is not installed properly.
    (The say it must be installed, not copied into wwwroot)
    One very confusing issue is this:
    1. A testing link using my domain name pointing to a
    flashremoting sample does NOT work
    http://www.investlogos.com/flashremoting/samples/asp/default.htm
    2. The very same link only using my IP Address instead of my
    domain name DOES work.
    http://69.90.47.4/flashremoting/samples/asp/default.htm
    The programmers have opened a trouble ticket asking for the
    .Net environment to be installed where the domain is hosted and to
    resolve the address, but no response as of yet from tech support.
    Both sides are saying it isn't thier fault and I am stuck in
    the middle with a website 2 months past deadline.
    Does anyone have any ideas about what is going on, or at
    least what 'side' I should harp on to get his fixed?
    (...or as a last resort, can anyone tell me a REALLY good
    host that supports Remoting? I'd hate to move again, but spinning
    my wheels is getting me nowhere!)
    Thanks to anyone who has any input.

    Hi,
    Since you have talked about .NET I assume that you are using
    .NET as
    application layer.
    If yes then yes you need get .NET framework installed before
    you
    attempt to install the Flash Remoting.
    If your sample work from IP then I can say Remoting is
    installed
    properly if your IP is the same where the site domain points
    to.
    So if the IP and the Domain are the same box then problem is
    not with
    the installation rather I should be with Remoting licensing
    issue you
    got to buy the Remoting license to use that and I guess the
    demo or
    Developer license is being installed there.
    You can mail me if you want to discuss this to find the
    solution at
    [email protected]
    Remove all the numeric from the email id to get the correct
    one.
    Good Luck
    Hemendra Singh

  • How to test flash remoting?

    I am using cf 7.0.2.I want to use coldfusion remoting.
    Please let me know if I need install other software and how
    to make it work.
    I also need to know how to test the function.Thanks
    Mark

    mark416 wrote:
    > I am using cf 7.0.2.I want to use coldfusion remoting.
    >
    > Please let me know if I need install other software and
    how to make it work.
    >
    > I also need to know how to test the function.Thanks
    >
    > Mark
    flash remoting is built-in in CF7, and unless you need to
    enable
    integration of webs services, you do not need to change
    anything
    to test if fr is enabled, just go to
    http://localhost/flashservices/gateway
    - if you see a blank page in
    response you are good to go
    you will obviously need MM/Adobe Flash to make flash movies
    that
    get/post data with remoting... keep in mind, though, that
    flash
    remoting components were included with Flash only up to ver 8
    (Flash CS3
    does not have them at all, since it uses a different approach
    altogether; though you can still make it work with components
    for
    previous flash versions, it is a bit of a PIA...)
    i am sure others will add a lot to this (i am just a casual
    flash
    remoting coder/user - it is not my sharpest knife...)
    a few websites that helped me get going were:
    http://www.asfusion.com/blog/entry/remoting-for-coldfusion-flash-forms
    (and a lot of other pages in that blog + read comments too!)
    http://articles.techrepublic.com.com/5100-22-1050210.html#
    http://blog.vixiom.com/2007/04/17/actionscript-20-flash-remoting-with-flash-cs3/
    http://www.builderau.com.au/program/web/soa/Consuming-Web-services-in-Flash-MX/0,339024632 ,320282917,00.htm
    hth
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Installing Flash Player Debugger Issue

    In our organisation we are not allowed to install any software/package so easily. The thing is by default all the machine have flash player (version 11.4) and in one of the machine I want to install flash player debugger  (11.0). But the system not allowing to install flash player debugger because, the flash player is already available in the system. Can you tell me how to install flash player debgger without uninstalling existing flash player. Is it possible to customize flash player debugger by removing flash player and keep only in debugger?  thanks in advance. Srini

    Hi mr.adrianp,
    We are happy to help you and let you come out of the trouble that has been caused to you while using Adobe product.
    Please refer the KB doc link mentioned below for the same:
    Flash Player with Google Chrome
    Hope this helps. Let me know if you need further assistance.
    Regards,
    Anubha

  • Flash Builder Debugging keeps trying to Debug in Flash CS5. HELP!

    Hello
    I have the CS5 master suit installed (OSX) and am having loads of problems using the stand alone Flash Player debugger in Flash Builder.
    Previously I had an error message saying it could not find the debugger, I've obviously done something as now it keeps on opening Flash CS5 and using the Flash CS5 IDE Player and gicing me this message. Error #2032: Stream Error. URL: file:////Volumes/Macintosh%20HD/Library/WebServer/Documents/TestDebug2/bin%2Ddebug/textLa yout_1.0.0.595.swf
    All I want to do is use the stand alone debug flash player and debug in Flash Builder. Am I able to point Flash Builder to use a certain Debugger?
    Can anybody help me?

    I figured it out.
    Although Adobe should have this working out of the box in my opinion.
    Running OSX 10.6.4 Master Suite CS5
    By default a swf opens in Flash CS5 and not the stand alone player (as I'm sure it did before in previous versions). So when you wanted to debug using the stand alone player from Flash Builder it was opening up in Flash CS5
    To fix I changed the default open with program to the Flash Player Debugger. Now Flash Builder by default uses the stand alone Flash Player Debugger.
    Hope this help any body.

Maybe you are looking for