[flexcoders] Help regarding positioning image in Text Layout Framework

2012-03-27 Thread anas naeem
Hello guys Hope every one is doing great. i am a bit new to Text Layout Framework although developing in flex since flex 4 , now my issue is that i want to position an image in a newspaper type layout . Actually i have to place it in a way that for instance if i am having 4 columns then the

[flexcoders] Debug driving me crazy

2012-03-27 Thread Davidson, Jerry
In debug mode of Flex (4.5) I have a variable that shows up in the variable view, but doesn't exist in the function I'm stepping through. Further, one that does exist doesn't show up. After the assignment failed (no errors): var exemptFlg:Boolean = false;

Re: [flexcoders] Debug driving me crazy

2012-03-27 Thread John McCormack
I had something similar once, due to the fact that I thought I was including a certain AS3 file but was , in fact, using SWC code instead. So perhaps your code isn't coming from the place you think it is. John On 27/03/2012 15:26, Davidson, Jerry wrote: In debug mode of Flex (4.5) I have a

RE: [flexcoders] Debug driving me crazy

2012-03-27 Thread Davidson, Jerry
After fighting this for several hours, it suddenly cleared up and the non-existent variable didn't show up and the real one did. But then the next feature struck. This assignment seems to work... outData.resPotentialTopMsg = langE.resultPassBenefitLabel;

RE: [flexcoders] Debug driving me crazy

2012-03-27 Thread Davidson, Jerry
I think this problem can be filed under dumb programmer. I found repeating function attached to an updateComplete that would execute every time the component was opened which is what I needed. In there was an early attempt to hide one of the two text areas at the top of the code. I removed it

[flexcoders] Debug Woes - Redux

2012-03-27 Thread Davidson, Jerry
It's happening again. This never happened when I was using Flex 3.5. Make a change in the code. Do a Project | Clean. Make sure the debugging session is over. Do a File |Refresh. Start a debugging session and watch it go past a line: if (adjInc 0)

Re: [flexcoders] Debug Woes - Redux

2012-03-27 Thread Alex Harui
I’ve had this kind of problem when the browser tries to cache an old SWF. I have to clear the cache and restart the browser. I sometimes make an edit to the main screen each time I make some other edit so I can immediately see if I’ve got an old SWF in the debugger. On 3/27/12 1:34 PM,