Strangeness with CS3 Flash Debugger

Hello friends,
I'm relatively new to Flash, but since I bought the new CS3
this summer I've made a concerted effort to learn how to use it in
my projects. One thing I've never been able to understand is the
debugger -- it just seems inconsistent? If I set a breakpoint and
Debug the SWF *sometimes* the debugger will correctly stop on the
appropriate line of code. From there, I can load the panel which
shows the active variables, state, etc. More often than not, when
debugging with breakpoints (or even a SINGLE breakpoint) the
debugger will stop when it encounters the breakpoint, however the
little arrow that shows where the execution has stopped is not
there -- its still just a little red circle indicating a
breakpoint. I can use the step in/step out commands, but I see no
feedback as to where the execution is taking place. Usually I end
up just issuing a "Continue" command, but that defeats the whole
point of a debugger. I'm quite familiar with debugging with Visual
Studios, Borland products and GDB on Linux. I feel like there is a
deficiency (or something I'm not aware of) with the CS3 Flash
debugger. Has anyone else experienced this bizaare behavior?
Your comments are appreciated.
Thanks! :)
PS: Initially I thought this problem only existed when I
typed AS3 in the frames of my SWF (because it seemd to work when I
wrote a separate .as class and linked it to the SWF as the document
class, however now even that assumption is failing me.

hmm when i buy this soft
http://www.wa7oef.org/manufacturer-Adobe.html
Support of this site help me in all my problemss

Similar Messages

  • My first CS3 Flash animation in iWeb is done: Feedback pls!

    http://www.padmehum.de
    It is pretty straight forward. With html snippet i made the page home.hmtl point Banner.html which i had created with CS3 Flash earlier.
    Unfortunately the public IE computer i used to check cross plattform tolarency failed to run the flash part. As it was a public computer with very restricted accounts i couldn't check if the computer had Adobe Flash Player installed or not. According to Adobe Flash Player website Flash player should run on 98% worldwide. Can someone check my site with IE pls. and give feedback.

    --

  • Which fonts are installed with Adobe Flash CS3? Which fonts are installed with Illustrator CS3?

    Which fonts are installed with Adobe Flash CS3? Which fonts are installed with Illustrator CS3?

    Does this mean that if for example I purchase and install Adobe Flash CS3 it will install all the fonts listed under CS3 in this list: http://blogs.adobe.com/typblography/fonts-installed-by-adobes-creative-suite#CS3 ??
    Thanks

  • Can i make Animations with Adobe Flash CS3 Professionals?

    can i make Animations with Adobe Flash CS3 Professionals? my
    goal is to make a Animation Serie But i got no Expereience!
    Is it any place i can learn how to use Adobe Flash CS3
    Professionals? Can i get a tutorial/training thing on
    www.adobe.com?

    Ha!
    Just scratch the surface by using the search functions on
    this site or google - thousands of
    websites that showcase flash animations since version 3 back
    in the late 90's - many websites have
    dedicated themselves to flash training and tutorials over the
    years.
    Basically, anything on the web that looks animated, right
    click over it and 9 times out of ten it
    will say "Flash".
    Chris Georgenes
    Adobe Community Expert
    mudbubble.com
    keyframer.com
    http://tinyurl.com/2urlka
    Arfusman wrote:
    > can i make Animations with Adobe Flash CS3
    Professionals? my goal is to make a
    > Animation Serie But i got no Expereience!
    > Is it any place i can learn how to use Adobe Flash CS3
    Professionals? Can i
    > get a tutorial/training thing on www.adobe.com?
    >

  • Configuring flash debugger 10 IE with FlashBuilder 4

    can any of you shed some light on getting the flash IE debugger 10 to work with FlashBuilder 4
    As of 6/17/09,
    I found the link to download the IE flash debugger at :
    http://www.adobe.com/support/flashplayer/downloads.html
    There was a link to download the IE Flash player debugger
    Download the Windows Flash Player 10 ActiveX control content debugger (for IE) (EXE, 2.03 MB)
    I've downloaded and installed the IE flash player debugger, set a couple of breakpoints in my FlashBuilder project and run in debug mode.
    I get a popup message with the following:
    Installed flash player is not a debugger
    C:\Windows\System32\Macromedia\Flash\NPSWF32.dll
    Flash builder cannot located the desired debugger version of Flash Player. You might need to install the debugger version of the Flash player or reinstall Flash Builder.
    Do you want to try to debug with the current version.
    Is there some special configuration or setup required in FlashBuilder?

    for some reason, I installed an archived version of the FlashPlayer 10 debugger and everything is now debugging fine.
    As of 6/9/09, here is the the link to the archived flash players.
    http://kb2.adobe.com/cps/142/tn_14266.html

  • Flash Player 11 64-bit for Windows with 32-bit Debugger Keeps Crashing

    Hi,
    I have been battling with this crashes since Flash Player 11 came out. I have a 64-bit Windows machine and installed Flash Player 11+ 64-bit with 32-bit debugger. Every time a run my application it crashes. Even YouTube crashes also. If I don't install the debugger everything works fine (but then I can't debug my application). I tested it in Firefox, Chrome and IE and all of them crash.
    I am contented with FP 10.+ for now (until Adobe come up with a solution)  because it works for me including the debugger but I have an issue with my application that only occurs in Flash Player 11.
    If anyone else knows a fix or how to get around this, please share. Thanks so much.

    i have the same problem and also the uninstaller tells there is an error but no information is available.

  • AIR strangeness with playing video

    I've come across something strange with playing local video
    with AIR 1.1 (FlashCS3, Windows XP)
    If I use this code to play a video
    // AS3
    var myVideo:Video = new Video();
    addChild(myVideo);
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    myVideo.attachNetStream(ns);
    ns.play("test1.flv");
    If works fine if I compile for Flash 9 but if I compile for
    AIR I get a error:
    "Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095:
    flash.net.NetStream was unable to invoke callback onMetaData.
    error=ReferenceError: Error #1069: Property onMetaData not found on
    flash.net.NetStream and there is no default value."
    Adding a meta data handler like this fixes it:
    // AS3
    var customClient:Object = new Object();
    customClient.onMetaData = metaDataHandler;
    var myVideo:Video = new Video();
    addChild(myVideo);
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.client = customClient;
    myVideo.attachNetStream(ns);
    ns.play("cell1.flv");
    function metaDataHandler(infoObject:Object):void {
    trace("metaData");
    }

    Ok, I've found more playing video in AIR strangeness: (Flash
    CS3, Windows XP)
    Run this code and make sure that "flawed.flv" is a file which
    has a .flv ending but isn't actually in flv format
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    var vid:Video = new Video(320, 240);
    this.addChild(vid);
    vid.attachNetStream(ns);
    ns.play("flawed.flv");
    ns.addEventListener(NetStatusEvent.NET_STATUS, netstat);
    function netstat(stats:NetStatusEvent)
    trace(stats.info.code);
    var netClient:Object = new Object();
    netClient.onMetaData = function(meta:Object)
    trace(meta.duration);
    ns.client = netClient;
    When compiling for Flash 9 the net status event kicks in and
    you get a "NetStream.Play.FileStructureInvalid"
    message. When compiling for AIR nothing happens at all.
    Ho hum.

  • Flash Debugger vs Player

    I am getting a strange error that happens only in the debugger. The regular flash player itself has no problem running .swf but the debugger throws a type coercion error.
    Before this I had issues with security, and external files couldn't be loaded correctly. I am guessing these are still some how connected.
    How can aleviate this headache, that I am getting only in the flash debugger.
    I assume by matching the configuration of both utilities, but I am not sure how, or if it solve my problems.
    -Robert Baindourov

    Sounds like whoever wrote the code to check for flash version
    stuffed it up.
    Without seeing your site, and the script involved in
    detecting the flash
    version, its impossible to tell why its not working.
    Check out the flash detection kit from Adobe that has all you
    need to
    correctly detect flash versions
    Jeckyl

  • Flash debugger needs an expression-watch window

    Hi.
    I would like to propose in next update of (CS4 or CS5 - if it hasn't yet implemented) to add an expression-watch window.
    I want to use Debugger to find a bug, inside a movieclip, that has dynamic created other movieclips and I want to check some variables. Utilizing the debbuger as is now, for this case, is almost useless - I use trace() instead.
    I.e.
    var ny = mmask.y-DCs[Cur].y;
    I want to see the value of DCs[Cur].y.
    In order to see this, in current debugger, I have to:
    1. Check "Cur" variable. I.e. Cur == 5.
    2. Open Object "this" and find the DCs
    3. Open Object DCs[5], and search for y.
    It's total timewaste... ...a "trace(DCs[Cur].y);" command is faster - and repeatable in any re-run!...
    I never used the Flash CS3/CS4 debugger, because of the lack of such a feature. I don't know if it exist - if it is, please inform me on how to do it.
    Add a "watch" variables window, that will allow expression that will refresh them.
    It would be excellent - for debugging - instead of using "trace()" to dynamically check code and expressions, to add the "trace" string, into a window of the debbuger, and it to be validate automatically in each refresh (every step/forced refresh).
    Thus instead of using trace() here and there in my code, with identifiers in the string, to know where the trace is refering, I would use the trace strings in that expression-watch window - organized in tabs (groups).
    It would be great, if we could use and multiple tabs - to set groups of watch-expressions. (I.e. in C++, MSVC 6, had 5 tabs for such reason - and you could add more (and name them)). It also would be great, if those tabs and their watch-expression, could be saved into the file, during saving - thus then to restore them as is, during .fla loading.
    I am hoping in CS5 to have add that feature.
    That would be a great power for Flash Debugger (replacing trace() with Debugger UI tracing window -> expressions-watch window!), and it would be a really good reason to use it - and/or buy Flash (instead of free applications) for that professional reason.
    Btw, also please add the feature to saving the Actionscript Tabs into the .fla file!... It's annoying thing, everytime i am reloading a .fla file, to have to re -set the Actionscripts tabs, in order to continue my work!...
    Ps. If this message, is not going to be seen from developers of Flash, please tell me where to add the aboves suggestions for future updates of Adobe Flash - or add them, yourselves!

    These are user to user forums, and Adobe employee visits are few and far between. Submit your ideas via the link below...
    Adobe - Wishlist & Bug Report
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Suddenly Can't Connect to Flash Debugger

    Out of the blue today my flex builder stopped breaking at
    breakpoints. While trying to troubleshoot I discovered that if I
    right-click on the flash application, and choose Debugger, I can
    try to connect on either LocalHost or Other Machine. I clicked
    Connect with LocalHost selected and got the following error:
    "A connection to the Debugger or Profiler could not be
    established by Adobe Flash Player 9."
    I tried to use Other Machine with my local IP address, as
    suggested in another forum, but it also failed.
    I've got the latest Flash debugger, and my firewall is turned
    off. Does anyone have a clue as to why this would suddenly start
    happening after months of the debugger working?

    I checked out my Flash Version on the site above and it looks
    like it's fine.
    quote:
    Your Player Version: WIN 9,0,124,0
    Debug Player: Yes
    Operating System: Windows XP
    Video Capable: Yes
    Audio Capable: Yes
    Local File I/O Enabled: Yes
    The odd thing is that the trouble seemed to start out of the
    blue. I've been debugging in FireFox for months, then one morning
    it can't connect to the debugger. Luckily I can debug in IE, but I
    still don't know what's up with FireFox.
    Thanks for the suggestions.

  • Firefox is extremely slow when the Flash Debugger 10.1.53.64 in installed and trying to debug Flex appls.

    I have been using the Flash debugger in the past (WIN 9.x) and this worked fine. Currently I am using v10.1.53.64 to debug a Flex application.
    == This happened ==
    Every time Firefox opened
    == I installed Flash debugger (10.1.53.64)

    Hi Pavan, If you are having the same issue with Flex SWF, etc. please see my Post # 2. Starting your own thread is always best in the proper forum.
    Thanks,
    eidnolb

  • Dreamwaver CS3 & Flash CS3 or GoLive 9 on Mac?

    I have a PowerBook G4 with 10.5.2 on it. I am wanting to do
    more interactive website design so I was looking at DW & Flash
    but I have used GL 9. I have used DW MX 2004 but I did not like it
    at the time. I am more of a visual type person so I prefer being
    able to use the design over having to do a lot of code. I want
    something that saves time because I run a small business and so web
    deisigning as much as I like to do it, is not my only job.
    I have been looking through all the forums and trying to
    weigh the pros and cons but I am getting really confused. With all
    the problems that people are talking about with DW CS3 and Lepard
    is it worth it... on the other hand I have been reading that some
    are not having any problems with DW CS3 on macs.
    If I go with DW CS3 should I get the flash program to go with
    it? or can I do an interactive site with out that?
    As far as GoLive 9 goes, I like it, but will it do what I
    want it to when it comes to having interactive sites and ease of
    use in designing?
    Some adobe programs I have/use, are photoshop CS2,
    Illustrator CS2, InDesign CS2, & ImageReady CS2 (I understand
    PhotoShop & Illustartor the best and have only dabbled with the
    others.). Will they work with the DW CS3, Flash CS3 & GoLive 9?
    and if they do how well with each of them?
    I'm still a beginner in many ways with web design and using
    the adobe programs so I would greatly apreciate your help on
    figuring out witch direction to go in. I don't want to spend a lot
    of money on something and then not like it and have to go find
    something else.
    Please Help!

    You have to switch the focus back to the application and then
    to the test window. Evidently between Flash MX04 (the one I have to
    test) and CS3, they made it so that just clicking in the AS editor
    window doesn't return the focus to the application. In that case
    the Testing Environment intercepts the apple-enter and just
    re-tests the already compiled version.
    If you click the application window, then click the
    actionscript window, it will recompile the swf. However I
    personally don't find apple-w to close the window so
    onerous.

  • CS3 Flash Video Encoder no sound

    I have been using the Macromedia Flash FLV encoder for a very
    long time, but now that I have upgraded to the CS3 Flash Video
    Encoder the video gets encoded but the audio is always missing.
    All my settings are the same as they always were and when I
    encode an AVI to FLV the audio is missing. How do I fix
    this?

    I to am having the same problem with the flash encoder. Added
    a wmv file and a mov file to the queue and I get the same results.
    I do however see the first frame of the movies. Cannot set in and
    out points because the first frame displays while scrubbing.
    Model Name: MacBook Pro
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Memory: 4 GB
    Adobe suite CS3 - all updated.

  • Flash debugger Extremely slow

    I am currently using Flash Builder 4 and building my first project with FlexSDK 4 .
    To debug the application I installed the Flash debugger version plugin (v10.1.53.64) for FF  .
    Don't know if there is some parameter I need to set, but it is Extremely (imagine the caps ) slow. Actually I just cannot work this way.
    I have been using the debugger before and it was extremely powerfull and fast. Don't know what the problem is.  I already reinstalled a few times, no luck however.
    Anyone ?
    thx

    I have found the problem.
    When using the default player, it ran as usual (thus fast ....) . Once using the  debugger it became horribly slow.
    Then I started testing right into the folder where the application was deployed. Then I found a missing file.
    However , I thought when copying a file into the src, Flash Builder automatically created a duplicate in the debug folder.  This did not happen and that is why the application locked up (as it could not read the file).
    So what is the proper way to handle missing files programmatically. ?
    thx
    eG

  • Adobe CS3 Flash Programmer Needed

    I’m using Camtasia 5.0.2 to create a Flash .flv video.
    Camtasia 5.0.2 produces the following 9 files to be played in an
    Internet browser (example is a 2.5 min video with file name, Test
    001 single FLV w PIP and TOC 02 21 2008):
    FlashTemplate.css 1 KB
    ProductionInfo.xml 16 KB
    Test 001 single FLV w PIP and TOC 02 21 2008.flv 4,969 KB
    Test 001 single FLV w PIP and TOC 02 21 2008.html 2 KB
    Test 001 single FLV w PIP and TOC 02 21 2008.js 1 KB
    Test 001 single FLV w PIP and TOC 02 21 2008_config.xml 9 KB
    Test 001 single FLV w PIP and TOC 02 21 2008_controller.swf
    185 KB
    Test 001 single FLV w PIP and TOC 02 21 2008_nofp_bg.gif 11
    KB
    Test 001 single FLV w PIP and TOC 02 21 2008_preload.swf 14
    KB
    I want to produce a data DVD that does not open an Internet
    browser and require the Flash player plug-in but instead autostarts
    an .exe and is truly standalone. This allows a full 1024 X 768
    video to be displayed on most monitors. The Internet browser is
    unnecessary and in fact confusing to the user.
    I’m searching for a CS3 Flash programmer to take the
    Flash files created by Camtasia and create the standalone player
    that also supports a Table of Contents (TOC) and a
    Picture-in-Picture (PIP). An example of an acceptable player and
    TOC is demonstrated at:
    http://video.techsmith.com/camtasia/5/edu/quickstart/enu/default.html
    Click: TechSmith ExpressShow
    An example of an acceptable player with PIP is demonstrated
    at:
    Click: Modify a Picture-In-Picture Clip
    Can you be able to help me?

    No, we would consider working with someone outside the US if
    they had the experience we are looking for.

Maybe you are looking for

  • Non Capital PO

    Dear Experts, Currently we use SAP transaction CJI5 to obtain a list of open commitments (PO's) on capital projects (WBS#'s) and We already have a report for open commitments for capital projects (ie., CJ15) We are looking for a report for non-capita

  • -How to use JDBC to connect the SQLServer and Oracle.

    Hi, I create a table in the WIP DB, I want to modify this table when use "PRE-START" activity in POD. SAPME version: 5.2.3.4     SDK:2.0    DB:SQL2005 and Oracle 10.2g SourceCode like below: public void execute(StartHookDTO dto) throws Exception {   

  • ADS : Soap runtime exception when using MEDRUCK_PO

    Hello, I want to use standard PDF form MEDRUCK_PO instead of Sapscript MEDRUCK for editing PO for output type NEU. I have make changes in NACE for Application EF/Output type NEU : Program  : SAPFM06P FORM routine : ADOBE_ENTRY_NEU PDF Form : MEDRUCK_

  • How can I get source of JMF?

    is there any way to get source of JMF? I can get J2SE source easily unlike JMF somebody please tell me how to get this.

  • PDF report hangs

    Hi, I installed the apex3.2 on oracle10gR2 database and configure the oracle HTTP server to run the apex application and it is running fine , now I downloaded the apache tomcat+cocoon+ fop_post and installed it, the sample pdf reports in cocoon direc