No variables or expressions in debug

System set up:
WinXP Pro, Eclispe 3.2, Flex 3 plugin, IE 6.
I read a lot about how FF3 kills the debugging of Flex apps,
but I moved my preference browser to IE to test it. I set a
breakpoint on my code at where a variable is declared (Following
Lynda.com example) and theirs shows the variable in the debug
perspective, but mine doesn't (yes, I am clicking the debug
button). Any ideas?
I get information in the debug tab, but nothing in the
variables area. I see the breakpoint in the breakpoints section,
and nothing in expressions (which I imagine I wouldn't for
now).

"projectproofing" <[email protected]> wrote
in message
news:g7uu1v$hos$[email protected]..
> System set up:
> WinXP Pro, Eclispe 3.2, Flex 3 plugin, IE 6.
>
> I read a lot about how FF3 kills the debugging of Flex
apps, but I moved
> my
> preference browser to IE to test it. I set a breakpoint
on my code at
> where a
> variable is declared (Following Lynda.com example) and
theirs shows the
> variable in the debug perspective, but mine doesn't
(yes, I am clicking
> the
> debug button). Any ideas?
>
> I get information in the debug tab, but nothing in the
variables area. I
> see
> the breakpoint in the breakpoints section, and nothing
in expressions
> (which I
> imagine I wouldn't for now).
Did you click the little plus next to "this" ?

Similar Messages

  • How can I add a watch to a variable or expression during javascript debugging

    Since the new update to safari 6 I am looking for a way to add a watch to a variable or expression during javascript debugging. I don't want to go to the console line every time to type in the separate variables and expressions over and over again. Also hovering over a variable doesn't show the value.

    I couldn't find the answer either (I submitted an enhancement request to http://www.apple.com/feedback/safari.html in hopes that it will get added back in), but downloading a nightly build of webkit (http://nightly.webkit.org) will give you an alternative version of Safari that still uses the version 5 inspector, which to me is preferable anyway. 

  • Variable in Expression operator

    How can i use a variable in Expression operator.

    Can you please expain in detail what you intend to do so that the best approach can be outlined.
    Regards

  • Alphabetized variables list in the debug pane

    How come in Director 11 it is no longer possible to sort
    variables listed in the debug window alphabetically. In previous
    versions, you could click on the tab to have the globals and
    properties sorted from a to z. This no longer works. It is really
    difficult to visually scan a long list for a particular variable
    name. Is this a bug, or is there some other way to do it?

    Put a breakpoint in the listener function for the event,
    because until, the event is dispatched, the variables do not exist.

  • JSTL: Using value of a variable in expression

    All, I am stuck on this problem and I hope someone here can help. This is a real tough one for me to explain but I'l try my best.
    I am try to have my includes a little more component oriented. So I wanted to use something like the following
    <c:import url="/somedir/outputusers.jsp">
    <c:param name="collection">users</c:param>
    </c:import>
    I would like to use the value of a request parameter in a JSTL expression. For example, say I have a Collection of objects implementing the User interface in the request under the name 'users'. Normally in JSTL I can reference it by ${users}. Now say I wrote a JSP page that will display any collection of objects that implement "User". I would like to use something like above to pass in the name of the variable in request scope, that points to the collection of User objects, i.e. "users". Then in the included jsp I would use JSTL to loop through the collection and output it in HTML.
    The problem is I cannot find any want of doing it. It would probably look something like this:
    <c:forEach var="user" items="${ ${param.collection} }">
    Any ideas?
    Steve

    In the worst case, you could always resort to using scriptlets to retrieve the parameter. and set it up as an attribute in the local page scope.
    <%
    String param = (String)request.getParameter("collection");
    Collection userCollection = (Collection)request.getAttribute(param);
    pageContext.setAttribute("local_collection", userCollection);
    %>
    <forEach var="user" items="${local_collection}">
    ,,,I think this should work.
    JSTL is great, but it can't yet replace every scriptlet, much as I would like it to.

  • Hiding variables in Express

    In Oracle express, what is the syntax for hiding a variable? I can open the .db file in Express Administrator and go to Property Inspector and set the property UserVisible to False. How can I do this in the code when I'm creating the variable?
    Thanks

    Hi,
    I don't have Express installed right now, so I can only make suggestions.
    1. Look to see if you have any objects which represent a data catalog, specifically DACAT or DA.CATALOG. In other Express applications you can hide variables using this catalog.
    2. Try using the OBJ and PROPERTY commands. The OBJ command can provide the list of properties are associated with a variable.
    e.g.
    show obj('PROPERTYLIST' <variable_name>)
    Then:
    consider <variable_name>
    property 'uservisible' FALSE
    Bill

  • Variable not visible in debug mode

    Hi experts,
    i created a variable using a custom exit.
    i'v added to my query, but when launch debug mode, i can't see it in I_T_VAR_RANGE table;
    but i can see others created previously.
    is that normal? do i have to do something else?
    Thanks.
    Amine

    Hi Phani,
    Thanks for your answer.
    i think that i have an issue in y code, i got the following error:
    The function call of SLS_MISC_GET_LAST_DAY_OF_MONTH failed; a field may have been assigned to the parameter DAY_IN whose"
    here is my code:
    Can you tell me what's wrong please?
    DATA: temp_date like sy-datum.
    WHEN 'ZLASTDAYMONTH'.                
         if i_step = 2.
           LOOP AT I_T_VAR_RANGE INTO FISC_VAR_RANGE
                 WHERE VNAM = 'ZTODAYDATE2'.
             CLEAR L_S_RANGE.
             call function'SLS_MISC_GET_LAST_DAY_OF_MONTH'
           exporting
             day_in = FISC_VAR_RANGE-LOW     "this is the user entry date based on ZTODAYDATE2
             importing
             last_day_of_month = temp_date.
             L_S_RANGE-LOW      = temp_date.
             L_S_RANGE-SIGN        = 'I'.
             L_S_RANGE-OPT         = 'BT'.
             APPEND L_S_RANGE TO E_T_RANGE.
             EXIT.
           ENDLOOP.
         endif.

  • Variable format expressions

    I'm having problem compiling the following code:
    c varformat.f
         implicit none
         real test
    c     character*10 test
         integer n
    c     test='1234567890'
         test=12345.01
         do 10 n=1,12
         write(6,*)n
         write(6,11) test
    10     continue
    c11     format(2x,a<n>)
    11     format(2x,f<8+n>.3)
         end
    Invoking the compiler without any switch:
    f95 varformat.f
    the error message is
    "varformat.f", line=13, column=15:error: integer constant expected where "<" is present.
    Same problem with f77 with error message: unknown edit descriptor "<" has been detected.
    Please help!

    I will look into this. I got the same message.
    Use of the angle brackets for variable format
    should work. It is in the FD6 F77 Language
    Description Doc.
    canopus:bruces % !f95
    f95 varfmt.f
    11 format(2x,f<8+n>.3)
    ^
    "varfmt.f", Line = 12, Column = 18: ERROR: Integer constant expected where "<" is present.
    f90: COMPILE TIME 0.020000 SECONDS
    f90: MAXIMUM FIELD LENGTH 4952622 DECIMAL WORDS
    f90: 13 SOURCE LINES
    f90: 1 ERRORS, 0 WARNINGS, 0 OTHER MESSAGES, 0 ANSI
    canopus:bruces % cat -n varfmt.f
    1 implicit none
    2 real test
    3 c character*10 test
    4 integer n
    5 c test='1234567890'
    6 test=12345.01
    7 do 10 n=1,12
    8 write(6,*)n
    9 write(6,11) test
    10 10 continue
    11 c11 format(2x,a<n>)
    12 11 format(2x,f<8+n>.3)
    13 end
    canopus:bruces % f95 -V
    f95: Sun WorkShop 6 update 2 Fortran 95 6.2 2001/05/15
    Usage: f95 [ options ] files. Use 'f95 -flags' for details
    canopus:bruces %
    [ The posting applet stripps out fortran formatting ]

  • Internal table, variable,...when debug

    Hi all,
    Is there any place I can see all internal table, variable,.. of a running transaction?
    thanks.

    before excuting that transction in the command line enter '/h'
    after tht execute the transaction,.. in the debugg mode u can view all the internal tables, their values, etc..
    reward appropriate points.
    Regards,
    SIMI,

  • Variables, database, expressions in Pages

    *Making Pages a tool for techichans and researchers*
    Most advanced literature contains text created from specific datastructures.
    They could for example be
    1 a database being a reference list. At the referring point you use on text, eg "Andersen 56",
    at another place there is a refernce list with an entry being a line of a reference list.
    In this list there is a header "Andersen 56" and a text entry "Andersen Henry, My research title".
    2 there may be result described by an expression using several parameters and result.
    Current software as Microsoft Office, OpenOffice, InDesign, Quark etc does not support such feratures.
    Some simple variant was supported by FrameMaker, however discontinued.
    Implementation
    One need two parts, the TEXT and the EXPRESSIONS.
    The TEXT should be a Pages document.
    Into this document another view is included.
    It consists of severeal rows of parameters linked by expressions as in Numbers (or Excel).
    One entry (row and column) is referred from in the TEXT.
    The referred value (content in the EXPRESSION) is substituted at the particular referencing point.
    The text is styled according to style rules in Pages.
    *Importing and exporting rows of EXPRESSION*
    In order to export rows to other documents or rearrange the EXPRESSIONS andto recognize them: each row must use an IDENTITY.
    The reference in TEXT thus consists of (IDENTITY, COLUMN).
    Moving the row around among different documents or different tables is therefore possible.
    *Apple style*
    Combine Numbers an Pages in one product.
    Do allow the inclusion of any number of these ones in onde document.
    Make one as the main one.
    Let the user select the proper document to edit.
    *Power of the implementation*
    This is one of the most powerful document tools ever designed.
    The implementation cost is extremely low, Apple already have Numbers and Pages.
    Only a small reference battery, similar to hyperlinks, needs to be developed.
    GunnarC

    Hello
    Apple's programmers don't necessarily have the time to read user-to-user discussion groups.
    In fact, they don't visit it.
    Apple gave all of us an official channel to pass our wishes:
    _*Go to "Provide Numbers Feedback" in the "Numbers" menu*_
    My own point of view is that neither Pages nor Numbers are designed as tools for techichans and researchers.
    But it costs nothing to try.
    Yvan KOENIG (from FRANCE dimanche 2 décembre 2007 18:32:49)

  • Variable and Expressions Question?

    I got these questions from a practice book based on sections that talks about learning SQL
    and SSIS.  It does not have a Key to grade it.  Does any of the questions I answered look wrong(I answered in orange)?

    #5 is not correct, the answer Windows->Locals is correct
    Arthur
    MyBlog
    Twitter

  • Format of Variables Change When Debugging

    When debugging in LabWindows, the format of the variables (decimal, hex, ASCII, etc.) is always set to the default under certain circumstances.  For example if you step into a function, change format of a variable, step out then back in, the format has been reset to the default.  There are other instances when you run, stop, rebuild and debug where this is done also.
    I've asked NI to explain why the variable format can't be retained, at least within one debug session (until exiting LabWindows).  The explanation is they use a stack-based system to store this information so it is lost during debug.
    I find this to be an extreme annoyance and an enormous waste of time.  For example, I deal with a lot of arrays of binary data.  Seeing these array values in ASCII is of no value.  So I'm nearly constantly setting the format back to hex during debugging.
    I'm curious whether anyone else thinks this is a problem.  NI knows about this, but it's unlikely they'll do anything unless there is a lot of feedback from us users on the value of fixing this.  Post a note and let me (and NI) know what you think, whether you think this is important or not.
    Thanks,
    Dave

    Hi Chris,
    Yes, using Format >> Preferences is exactly what I was talking about when I said "change the format of a variable".  Thanks for giving the exact details of doing this.
    I'm still using v8.1.  I'm leery of renewing my service contract because I don't feel NI is listening to me (as a customer, not just a LabWindows user) regarding the issues that affect my work and ways to greatly improve my productivity.  I have been suggesting this for a few years now, to no avail, both with tech support on the phone and through your product suggestion center.
    I can't explain all the intricacies of the issue.  Maybe what you have to do is set breakpoints and run rather than step in and out.  Here's what an engineer in NI's R&D center said:
    It's not actually rebuilding the project that causes the information to be lost. It's actually even worse than that. As variables come in and out of scope, the formatting and the expand/collapse state of each variable is lost. So, if you've hit a breakpoint in a function and re-formatted a local variable, and then continue debugging outside the function, eventually stepping back into the function, the formatting for the original variable is reset when the item is created anew in the variable display, based on the data type of the variable.
    The problem we have is that the formatting information is stored in stack-based memory which is associated with the actual items that you see in the variable display. As these items disappear and are re-created in the variable display, the formatting information is reset.
    The complexity of representing variable scope information, including arbitrary block scopes, makes it pretty hard to maintain variable information in global, non-stack-based memory. It's obviously not impossible, but unfortunately it would require a fundamental redesign of our debugging paradigm.
    Finally, we have heard this request from multiple customers, and I assure you that you are not the only customer who has asked for this feature.  The problem with this feature, as with many other feature requests is one of trade-off. It is obviously impossible to accept all the feedback that we receive, and so we are constantly having to weigh development costs of a particular feature, the risks involved in implementing it, and how widespread its benefits are.  So far, this feature has not made the cut. However, this does not mean that we're ignoring it, or any other customer feedback. Many customer-requested features have made it into previous releases, and we're confident that this will too, in the not too distant future. As a matter of fact, we can honestly say that most new features in a given CVI release originate with customer requests. I also just want to re-emphasize that each time you reiterate how important a given feature is, it drives up its priority and makes it more likely that we will implement it sooner, rather than later. With that in mind, we definitely welcome your suggestion to post a note about this request in the forum. We expect other people to second the request, and the more people that do that, the better.
    So my question wasn't posted for NI to respond.  It was to find out if anybody else using LabWindows finds this issue to be detrimental to productivity.
    Thanks,
    Dave

  • Flex 2 Builder: Variables view pane & AS3 component debugging.

    The problem is as follows:
    A supposed ComponentA (ActionScript 3.0 class component in
    package components.* & extending mx.coreUIComponent) is placed
    in the main application:
    // script
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns:components="components.*">
    <components:ComponentA/>
    </mx:Application>
    ComponentA has it's methods, variables, etc... but none of
    them are listed in the Flex 2.0 Builder's Variables view-pane while
    debugging the application. Actually, nothing at all is listed there
    - the view-pane remains empty.
    So far, I haven't found any reference to this situation in
    Flex 2.0 documentation or anywhere else, so I would appreciate any
    suggestions on this issue.
    a.neko
    (sorry for the accidential double post)

    Can you ensure that the SWF your are debugging is a release SWF?
    I've recently fixed a bug (which is not publicly available) where the same stacktrace was visible:
    A release SWF loads a debug SWF via SWFLoader/ModuleLoader, etc.
    Making sure the main container SWF is a debug one. That should fix this problem.
    (You can check whether a SWF is debug or not by opening it in nemo440 (google for that) and looking for debugfile / debugline opcodes.)
    Let me know how it works out.
    Cheers,
    Anirudh

  • Responsable agents: What's better? Role or expression (variable)

    Friends,
    I'm thinking about make things in the better way to improve the system performance.
    I have a dialog task that are sent to reponsables by a variable or expression configured in the own task. This variable is filled in a background task before this task.
    Does anybody know what is the best way to do this in about performance ? If I change this functionality by a role if it will be better to performance.

    Ok friends,
    Each sub-wf searches by actual agents...but any sub-wf can be canceled and back to its father or can terminate both workflows.
    I think the normal way is to use all the agents and a think I can (as ... had said) populate all the agents in the begin of the wf (maybe the father)...even I don't use all agent's virtual attributes/variables during the wf's... I think that searching for all the agents in a only time is best to performance.
    I'm studying about it to the things better here....I think putting it (searching for all the agents) in the beginning of wf, will help in making the sub wf's run faster and will create each sub-wf's work items faster too, because it won't this step (searching for all the agents) before each one...
    I think it solves two problems here...because here, another problem is that some times the Ztransaction trigger some terminating events for tasks that didn't had time to process and be created and standing for this terminating events...but it is another problem that I'll try to study for improve the wf design too.
    I didn't know if both of you have recognized my problem....or design....but here each sub-wf has a step before dialog task that searches agents for its next dialog step by filling a multi-line variable that represents the agents to the dialog tasks...

  • Debugging and Local Variable

    Hi All
    In MS visual studio i can select a local variable (Promise I will go and wash my mouth out now) and add it to a watch therefore i can see what the value of the variable as I go through the code line for line
    how can I view local variable in xcode ?
    Regards
    Tony

    To do something similar in Xcode, select the variable and either choose Run > Variables View > View Variables as Expression or choose Run > Variables View > View Variable in Window. Both options place the local variable in a separate window for you to view.
    There's not much difference between the two options if you're viewing one variable, but there is a difference if you're viewing multiple variables. If you view the variable as an expression, Xcode places all the variables you want to view in one Expressions window. If you view the variable in a window, Xcode creates a new window when you choose Run > Variables View > View Variable in Window.

Maybe you are looking for

  • External Drive Disappeared!

    My external drive is no longer recognized by my MacBook Pro. The drive is a SimpleTech, and I've used it for 3 years, on prior iMac and present MacBook Pro. Recently, I opened the external drive, and as I clicked on folders, the files in the folders

  • Could not load data from database after adding a query

    Dear all, I have a working crystal reports 2011 report. This report get its data from a BW 7.01 system provided by three bex queries. Everything works as expected but not I have to add a fourth query to the report then I get the following messages: I

  • Exception message not thrown back to the page

    Hello All, I have a servlet that listens for some data. Everything works perfectly if the data is intact. I do a whole bunch of processing on the data and verify its integrity etc... HOwever if something is wrong, my app throws an exception and I cou

  • BIOS password spontaneously set

    Hello, i am with the same problem, the initial power on login password just appeared but i had never set a password. Can you help me? [split thread - subject edit] Message Edited by jim on 02-20-2009 02:32 PM Solved! Go to Solution.

  • Unable to cancel backordered order

    Hi, I received a notification that an item I ordered that was supposed to arrive today is on backorder.  I've tried cancelling it via the site, but received a message that my order can't be updated.  Is there any other way to cancel the order? Thanks