wiln / flash-console

Automatically exported from code.google.com/p/flash-console
0 stars 0 forks source link

Console stops logging after becoming invisible #107

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create simple empty project with Flash Console, hided by default (start 
Console with password or set it's visible property to false)
2. Show Console (press password key or set it's visible to true)
3. Write some logs with Cc.log();
4. Show up the Console again (press the password button or set visible to true)

What is the expected output? What do you see instead?
I should see logs I did in the step 3. I see nothing instead.

What version of the product are you using? On what operating system?
Latest 2.6 version.
FP 11.1, 11.2, 11.3 (Looks like it happens on any FP version).

Original issue reported on code.google.com by dmitry....@gmail.com on 13 Apr 2012 at 8:36

GoogleCodeExporter commented 9 years ago
Oh, I forgot to add console hiding in reproduce step 2. It should be:

2. Show Console (press password key or set it's visible to true) and hide it 
back (press password key again or set it's visible to false).

Original comment by dmitry....@gmail.com on 13 Apr 2012 at 9:12

GoogleCodeExporter commented 9 years ago
Works for me when I followed your steps using code below:

// 1.
Cc.startOnStage(this, "`");

// 2.
Cc.visible = true;
Cc.visible = false;

// 3.
Cc.log("ABCD");

// 4.
Cc.visible = true;

---

Can you give your version of code?

Original comment by luay...@gmail.com on 24 Apr 2012 at 1:29

GoogleCodeExporter commented 9 years ago
Yeah, sure, attached.

Start swf, open console (press ~), close console (press ~ again), press "b" 
key, open console (via ~). You should see trace from pressing "b" key, but it's 
empty.

Original comment by dmitry....@gmail.com on 24 Apr 2012 at 2:22

Attachments:

GoogleCodeExporter commented 9 years ago
Ahh. ok got it. thanks!

Original comment by luay...@gmail.com on 28 Apr 2012 at 1:37