CS6 Debugger not at breakpoint

This is really strange. The CS6 debugger would work as expected but now it does not settle at breakpoint. I have reduce the code to the simplest below.
Debugger was working last time I used it.
When I "Debug Movie->Flash professional", the breakpoint with yellow arrow does not come up on screen, It is still the red dot where I set the break point.
However, if I step over it, the out does show the out "Hello there"
I rebooted my PC and updated to Flash professional 12.0.2.529 to no avail. Does it have anything to do with file decompression (in Output message) ?
Please Help !
Thanks
Sean
import flash.display.*;
import fl.events.*;
breakpoint set here > trace("hello there");
Output:
Attempting to launch and connect to Player using URL C:\Users\seanyiu\AppData\Local\Temp\Untitled-1.swf
[SWF] C:\Users\seanyiu\AppData\Local\Temp\Untitled-1.swf - 2071 bytes after decompression
hello there
Debug session terminated.

I installed CS5.5 and the problem went away. Adobe folks should take note - CS6 has a very basic debugger bug.
Thanks
Sean

Similar Messages

  • FLEX debugger not hitting breakpoints, because Flash sometimes embeds source file paths with wrong letter case?

    I was trying to figure out why breakpoints were working fine for source files in some locations but not others.  FlashDevelop's debugger (which I believe is actually the FLEXSDK debugger) was successfully connecting, tracing output, and hitting breakpoints in SOME files, but not others.
    I downloaded SWFInvestigator from Adobe Labs and checked the embedded debug paths for various source files to see what was going on.
    I discovered that files in which no breakpoints could be hit had their paths embedded in all lowercase (e.g. "c:\users\username\desktop\source\myproject" instead of "C:\Users\username\Desktop\source\MyProject").
    So I have two questions:
    First, is this a Flex debugger issue, or a FlashDevelop plugin issue? Letter case shouldn't matter or interfere with matching file paths in Windows.
    Second, what could possibly influence the letter case of embedded paths in a SWF output by Flash Professional (CS6), such that they are sometimes all lowercase and other times maintain the same case from the file system?  And why would that affect a debuggers ability to hit breakpoints in Windows 7?  I am compiling in multiple ways. Sometimes clicking Publish within Flash. Sometimes the file being published is not even open in Flash, and my JSFL script file is passed to Flash.exe containing embedded file paths to open the document. Usually, everything seems to work fine, no matter where I publish from, regardless of whether the FLA file is open or not. I'm honestly starting to believe that it depends on how the FLA was last opened in Flash Professional, as though it saves some sort of last access path internally and uses that to embed debug information.

    I don't think it's the source path in my case, because it's simply the dot ".", although I did check that because it would most likely influence the embedded paths.
    In the library path, I use relative paths exclusively, since all my individual project folders exist in the same "source" folder.
    Here's how I arrived at the conclusion that something more complex or "stateful" must be occuring:
    I publish my files with a one-click application, which does the following
    updates version timestamps (static constants) in specific files via regex match
    fills in a JSFL template with the FLA filename and writes the JSFL file to disk, then passes the JSFL file path to flash.exe for publication
    the JSFL then runs a command, which signals the main application via cross-process communication that the script has finished publishing
    That all makes it easy for me to update and publish multiple projects and deploy them, with a single click.  Here is the JSFL template I created, which has been drastically simplified since the days where it used to search to see if the file was open in Flash, select the document, and call publish.  Now it just uses the publishDocument method to silently publish files without opening them.
    var filepath = "FLAFILEPATH"; //template parameter: the URI (beginning with "file:///") of the FLA file to publish
    fl.publishDocument( filepath, "PUBLISHPROFILENAME" );
    FLfile.runCommandLine("COMPLETECOMMAND");
    The C# app replaces the strings in all caps with the actual values.  The COMPLETECOMMAND is actually populated with the application's own executable path, along with a "complete" switch, which lauches a 2nd instance, which handles the complete switch by broadcasting a signal over an interprocess channel and then terminates.  The main instance captures the signal, triggers a wait handle, and continues with publishing the next file.  Here is the core code for it:
    private string fillTemplate( string fla_directory, string fla_filename, string publish_profile_name )
        string fileuri = "file:///" + Path.Combine( fla_directory, fla_filename ).Replace( '\\','/' );
        return EmbeddedResources.OpenAndPublish //JSFL template file embedded as string resource
            .Replace( "FLAFILEPATH", HttpUtility.JavaScriptStringEncode( fileuri ) )
            .Replace("COMPLETECOMMAND", HttpUtility.JavaScriptStringEncode( "\"" + Application.ExecutablePath + "\"" + " -publishcomplete" )) //call self with -publishcomplete switch to signal main instance's publishCompleteSignal
            .Replace("PUBLISHPROFILENAME", HttpUtility.JavaScriptStringEncode( publish_profile_name ) );
    private static readonly string FLASH_PATH = @"C:\Program Files (x86)\Adobe\Adobe Flash CS6\Flash.exe";
    public void publish( string fla_directory, string fla_filename, string publish_profile_name )
        Program.publishCompleteSignal.Reset();
        string template = fillTemplate( fla_directory, fla_filename, publish_profile_name );
        string curdir = Environment.CurrentDirectory;
        string tempJSFLfilepath = Path.Combine( curdir, "temp_script.jsfl" );
        File.WriteAllText( tempJSFLfilepath, template );
        Process p = Process.Start( FLASH_PATH, tempJSFLfilepath );
        Program.publishCompleteSignal.WaitOne( 30000 ); //timeout after 30 seconds
    Here's where it gets interesting.  The FLAFILEPATH has ALWAYS been passed in as all lower case, yet this publication method has worked 99% of the time for hundreds of publish operations every day.  This applies to both the publication of the first SWC, which is referenced by the second published SWF (both were being published with lowercase paths), yet the paths for the main SWF were remaining in lowercase, while those in the referenced SWC were maintaining the correct case from the file system.
    So there may be any number of things going on here.  SWCs may be published differently than SWFs, such that SWCs always have the correct letter case for debug source files, regardless of how the source FLA project was opened.  Ensuring the path passed to publishDocument uses the right case definitely fixes the problem, but it doesn't explain why it usually worked, despite having always been passing a lowercase string.  The only variable I can think of in all of this is Windows itself or Flash, such as whether the document was open in Flash at the time the silent JSLF publishDocument command ran, and how that FLA was last opened (via shortcut, via "recent documents" in Flash, via recent documents in Windows.  It has to be something, even if it's something as obscure as how the folder path was last accessed in windows, although I strongly suspect it's just how (in terms of path case) the FLA was last opened in Flash.
    In any case, I'm happy that passing the right case to JSLF's publishDocument command fixes the problem, so I'm not going to spend any more time trying to figure out how opening the FLA in various ways could affect the embedded debug paths.  The only thing that should be done is to address how paths with the wrong case are handled when they do get embedded that way for whatever reason.  Perhaps the flex debugger should be updated to use case-insensitive matches in case-insensitive file systems, unless, perhaps, this is a FlashDevelop debugger issue after all.

  • Eclipse-cdt debugger not working properly

    I have the latest versions of eclipse, eclipse-cdt, and gdb via pacman, and when I go to debug a simple program in Eclipse, I get the following errors:
    Stopped due to shared library event
    Stopped due to shared library event
    Single stepping until exit from function __libc_start_main,
    which has no line number information.
    mi_cmd_stack_list_frames: No stack.
    The debugging functions properly (for the most part, I noticed that I can't step into the standard C++ headers, though), but after the debug ends it displays the above error. Any idea what's wrong? The relevant part of the gdb trace is:
    [1,139,908,307,875] 5-gdb-show prompt
    [1,139,908,307,876] (gdb)
    [1,139,908,307,877] 5^done,value="(gdb) "
    [1,139,908,307,883] 6-stack-list-frames
    [1,139,908,307,883] (gdb)
    [1,139,908,307,884] &"mi_cmd_stack_list_frames: No stack.n"
    [1,139,908,307,886] 6^error,msg="mi_cmd_stack_list_frames: No stack."
    [1,139,908,308,072] 7-gdb-set auto-solib-add on
    [1,139,908,308,073] (gdb)
    [1,139,908,308,074] 7^done
    [1,139,908,328,397] ~"Single stepping until exit from function __libc_start_main, nwhich has no lin
    e number information.n"
    [1,139,908,328,437] 112*stopped,reason="exited-normally"
    [1,139,908,328,582] 113-gdb-exit
    [1,139,908,328,608] (gdb)

    Originally posted by: ccvural.cerenbilgisayar.com.tr
    nexus yazmış:
    > Hi:
    >
    > I am currently trying to debug a multi-threaded program writtten in C++,
    > with CDT and Eclipse. But, debugger seems to be not working properly.
    > Since, debugger sometimes stops in different lines that are not actually
    > breakpoints. And also debugger turns back in the code, miss some
    > breakpoints.
    > Below, I give information about what I use for developing:
    >
    > Eclipse 3.1.1
    > Plug-in: CDT 3.0.2
    > gcc (GCC) 3.4.4
    >
    > Debugger: GDB debugger Shared Libraries: None
    > Protocol: mi
    >
    > Thanks...
    >
    What is your Operating System. Linux , Windows ?
    If it's windows cygwin is better than MinGW while debugging, especiallly
    with multithreading
    Regards
    CC Vural

  • Sqldeveloper 4.0.0.13.18 debugger not works

    Afer update to sqldeveloper 4.0.0.13.18 debugger not works. All works fine in sqldeveloper 3 or previous version ov sqldeveloper 4.

    I am having a similar issue - debugging worked in 3.0 and not in 4.0.0.13 (I downloaded this today) or previous 4.0.0.12.84 versions.
    I create a few breakpoints, and I compile debug and run debug. I see this:
    Connecting to the database apps@gl23.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '167.100.165.229', '57385' )
    Debugger accepted connection from database on port 57385.
    The only icons enabled are the Terminate (Red Square), pause, and suspend all breakpoints icons on the debug window. It is just there and nothing is happening. I can't even close the SQLDeveloper tool after this. I have to terminate it from Task Manager.
    Regards,
    Venkat

  • Adobe Bridge CS6 will not open

    Just started trial of Adobe Photoshop CC  ( CS6 and Bridge CS 6)
    Photoshop  downloaded ok but Bridge CS6 will not open after installation.
    I have used Adobe Bridge with CS2 before but since removing CS2 and installing CS6 and Adobe Bridge 6 64Bit Adobe Bridge will not open.
    Help
    watchet7

    CS2 seems to conflict with CS6.  One user found this to work.  AppData is a hidden folder in case you try this.
    I finally got it to launch via instructions from another web page. In my case, I am running Win 7 Professional 64-bit and previously loaded Photoshop and Bridge versions CS2 (along with Illustrator and InDesign CS2), which might have been part of the problem. The solution for me was to create an empty "Bridge CS2" folder in the C:\Users\[your user name]\AppData\Roaming\Adobe\. Worked like a charm.
    You might have to use the Adobe Script Cleaner to get rid of traces of the CR2 files.

  • LR4 Problem: The file could not be edited because Adobe Photoshop CS6 could not be launched.

    Is there a fix for this?  When I try to edit an image in Photoshop from Lightroom 4 (CTRL+E), Photoshop CS6 launches immediately but with no image.  In Lightroom 4, after about two minutes, the message box appears saying "The file could not be edited because Adobe Photoshop CS6 could not be launched."  When I click OK, the image promptly opens in Photoshop CS6 like normal.  This wan an itermittent issue for me after the LR4.1 release.  I was hoping that LR4.2 would help, but now I get the error every time.
    System
    Lightroom 4.2 x64
    Photoshop CS6 v13.0.1 x64
    Bridge 5.0.1.23 x64
    Windows 7 Pro x64
    AMD Six Core / 3.9 Ghz
    16 GB Memory
    NVidia Quadro 1 Gb Video
    Scratch space on three drives

    This may be a cooincidence, I starting having problems after I started using a Nikon D800, which has 36MP files.  LR4 released at the same time as the D800.  LR4 shows signs of struggling with the larger files, which are typically 280MB TIFFs for the D800, like freezing for several seconds when using an adjustment brush or going into a spasm with the crop tool.  Because Photoshop does not have similar large file issues, I'm doing more basic work in Photoshop, like cropping, dodge and burn, exposure adjustment, etc.
    Because Photoshop otherwise runs fine, and appears to read all the prefernes properly mid-issue, to get a better idea of what's going on, I turned on Process Monitor from Technet. For what it's worth, LR4 appears to touch the Photoshop preferences before it launches Photoshop.  LR4 must have a memory leak in that corrupts the Photoshop preferences file in a way that makes no difference to Photoshop.
    My weekend project is to try Capture One to see if I can spend more time on photography and less troubleshooting Adobe problems.  As it stands, LR4 is not usable for me.

  • How can i download InDesign CS6 and not CC from your website?

    how can i download InDesign CS6 and not CC from your website?

    Are you a cloud subscriber, or are you looking for a perpetual license or trial version?

  • Photoshop cs6 is not working in windows 7 64 bit while all other cs6 programs are working.. what should I do make it work

    hi guys,
    My photoshop cs6 is not working in windows 7 64 bit while all other cs6 programs are working.. what should I do make it work?
    My OS is windows 7
    RAM - 8gb
    HDD - 1 TB

    are you getting any errors?
    and secondly and I know this from experience, ( but on 32 bit ) is it loaded already as in sat in task manager, but not actually get at able, killing the processes cures it or a reboot of course

  • Premiere Pro CS6 does not recognize USB PnP Sound device connected  to iMac OSX even when activated in Audio MIDI setup. The iMac(i-7 processor,16 GB)   is working with this USB device without any problem

    Premiere Pro CS6 does not recognize the USB PnP Sound device in order to produce a commentary sound track. The USB device has been activated on the iMac OSX by using the Audio-MIDI-setup and is working correctly with the iMac. When opening > presets >audio hardware I can only select between >standard >out  integrated > digital input integrated >microphone integrated. USB PnP is not indicated at this place.
    With the built-in microphone of the iMac I can produce the commentary sound track, but I would prefer a stand alone version for better quality.
    Your help is highly appreciated. Thanks in advance, Annemarie!

    I'm using a Logitech Webcam Pro 9000 (which has a microphone on the side). I have several other devices plugged into separate USB slots: a keyboard, a mouse, my iPhone, and a Roland keyboard midi controller.
    I've considered that maybe the webcam/mic combo is the culprit. If USB doesn't work at a constant speed, that could very well be causing the issue! The sound begins to lag badly sometimes when it's working properly, so that there's a multisecond delay between speaking and hearing my voice repeated back over the mic which is another sign that something is wrong. I've also caught it making a strange electronic sound during its "hang" time once it stops taking sound input correctly.
    Maybe I should try to use line-in and forgo USB altogether then. I think I'd need a preamp and some sort of converter for that since the Mac Mini lacks a powered mic jack. I'm only a newbie musician so I've never set up such a system but it might be a better solution in the long run.
    I'll check to see if it hangs before or after my computer enters suspend mode, that's a good suggestion too. Thank you for your help!

  • Adobe Photoshop CS6 will not install on my Mac.

    Adobe Photoshop CS6 will not install on my Mac. Adobe Application Manager is seeing the Beta version of Photoshop CS6 on my machine.
    I have unistalled/deleted any previous versions of the software, and used the Adobe Creative Suite Cleaner tool to flush my machines. Sadly,
    I am still getting the following error:
    Photoshop CS6 Installation Failed
    A beta version of this product exists on the computer. Please quit and uninstall that version before continuing.
    I have unistalled/deleted any previous versions of the software, and used the Adobe Creative Suite Cleaner tool to flush my machines. I am now stuck!
    Any help would be appreciated.
    Cheers,
    Richard

    This is the instruction to remove PS CS6 beta
    http://forums.adobe.com/message/4361731
    It's strange that you ran the cleaner tool and still didn't worked
    you can try to login to Root user account and then run the cleaner tool , and then check.

  • FLVs created with ADOBE MEDIA ENCODER CS6 do not display thumbnails in ADOBE BRIDGE CS6

    Could you please attempt to shed some light on why FLVs created with ADOBE MEDIA ENCODER CS6 do not display thumbnails in ADOBE BRIDGE CS6, yet apple finder is able to display thumbnails for these same FLVs without issue?
    I'm running CS6 Production Premium with ALL updates installed on 10.6.8
    I appreciate any input and help provided the input is provided by someone who either
    A) knows the answer because they actually work for adobe
    B) actually tried this themselves before attempting to provide a solution
    If the conclusion is that it is a codec issue or a header issue with the FLVs You'd have to present a very strong case to back that claim up as it makes no sense whatsoever that CS6 is unable to generate thumbnails for media encoded using CS6, yet Apple finder can without issue. NOT to mention the FLVs in question are CREATED on the same machine with the same codecs installed that is trying to generate previews in Bridge.
    Apologies if my frustration is showing, I've gotten and seen several... incompetent replies on this forum regarding this issue and it has never been actually addressed properly as far as I can tell by Adobe support.

    We are all just incompetent users here.  As pointed out before this is just a user to user forum, Adobe rarely checks in.
    I was hoping by now you would have gotten to the bottom of this problem and were offering a solution.

  • Adobe photoshop cs6 is not responding?

    adobe photoshop cs6 usually not respond?
    my system info:
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x32
    Operating System: Windows 7 32-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 2
    Processor speed: 2594 MHz
    Built-in memory: 3485 MB
    Free memory: 1110 MB
    Memory available to Photoshop: 1670 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) HD Graphics
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1366
    Video Card Number: 1
    Video Card: Intel(R) HD Graphics
    OpenCL Unavailable
    Driver Version: 9.17.10.2932
    Driver Date: 20121212000000.000000-000
    Video Card Driver: igdumd32.dll,igd10umd32.dll,igd10umd32.dll
    Video Mode: 1366 x 768 x 4294967296 colors
    Video Card Caption: Intel(R) HD Graphics
    Video Card Memory: 1551 MB
    Video Rect Texture Size: 8192
    Serial number: 92628701192123445467
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6\
    Temporary file path: C:\Users\HOME\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 46.6G, 8.78G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Plug-ins\
    Additional Plug-ins folder: not set
    How can i fix this problem?
    Problem signature:
      Problem Event Name:          APPCRASH
      Application Name:          Photoshop.exe
      Application Version:          13.0.0.0
      Application Timestamp:          4f61beba
      Fault Module Name:          Photoshop.exe
      Fault Module Version:          13.0.0.0
      Fault Module Timestamp:          4f61beba
      Exception Code:          c0000005
      Exception Offset:          0149fab9
      OS Version:          6.1.7601.2.1.0.256.1
      Locale ID:          1033
      Additional Information 1:          0a9e
      Additional Information 2:          0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:          0a9e
      Additional Information 4:          0a9e372d3b4ad19135b953a78882e789

    You really need to install the CS6 updates.  You haven't installed any of the updates.
    And you need to update your Intel video card driver.

  • My Adobe Illustrator CS6  is not opening.

    My Adobe Illustrator CS6 is not opening. every time I try to open it it gives me this window "To open “Adobe Illustrator CS6.app” you need to install the legacy Java SE 6 runtime." Has anyone comme across this and is there a solution for this I need help please.

    Java for Mac OS X v10.6 Update 17

  • Is there a plug in to resize the canvas size in Illustrator CS6?  Not the artboard, the canvas size

    Is there a plug in to resize the canvas size in Illustrator CS6?  Not the artboard, the canvas size

    Reckon that’s what he must mean
    Are you sure, Steve?
    Kurt may agree.

  • Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service. 

    Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service.  I would prefer to talk to someone directly.

    Are you using any disk cleaner or optimization tools like CleanMymac or Mackeeper?
    Regards,
    Ashutosh

Maybe you are looking for

  • How do I set up a Netgear WNR3500 as wireless extender with the Airport Extreme as my main router?

    I just got the Airport Extreme yesterday because the Netgear couldn't hold all the computers we had on it. Now the Apple router works great, except for it is downstairs in the basement because our home computer is ancient and only connects via ethern

  • My iTunes, wont play my music..

    Hi, my iTunes wont play music.. And my computer is BRAND new.. i got it today. I tried to fix my aduio because there wasent any bass.. and i got i fixed, and when i tried to play one of the songs from my iTunes, i didnt work. I have uninstalled iTune

  • Report output as an attachment in.XLS format via email.

    Hi all, When i run my report in back ground, my alv report output is to be sent as an email attachment in excel (.XLS) format. The issue i am facing is that i have around 40 fields in the output and i need to create a Header line with the Field Descr

  • Amber update availability for unbounded phones

    Hi all, Do you know why Amber update availability for non-operator versions is not simultaneous for all countries? Why India lumia 920 is ready and Russia should wait? What specific testing is needed for unbounded non-operator versions? Hui with us

  • Devices disconnecting randomly

    Hello there! I just moved into a new house and setup my network. I use a lot of wireless devices (5 computers, apple tv, sonos speakers, nest) and some bluetooth devices (keyboards, mouse, kevo kwikset) etc. What happens is that some devices randomly