soumavachakraborty / gaforflash

Automatically exported from code.google.com/p/gaforflash
Apache License 2.0
0 stars 0 forks source link

Customize the debug mode and enable/disable the click protector of the debug display. #18

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The debug area must be a protector or not.. if the user want test this 
click in the application we must use a buttonMode = false flag over the 
debug layout.

Original issue reported on code.google.com by ekamel...@gmail.com on 25 Nov 2008 at 8:27

GoogleCodeExporter commented 8 years ago

Original comment by ekamel...@gmail.com on 25 Nov 2008 at 8:27

GoogleCodeExporter commented 8 years ago
See the request in the Google Groups : 
http://groups.google.com/group/ga-for-flash/browse_thread/thread/af1821eea278a75
c?
hl=en

Original comment by ekamel...@gmail.com on 25 Nov 2008 at 8:32

GoogleCodeExporter commented 8 years ago
Thanks for creating this. What is the best way to debug this then?  Buttons at 
the
very bottom of the flash file?

Original comment by JeffGuth...@gmail.com on 25 Nov 2008 at 8:43

GoogleCodeExporter commented 8 years ago
some part of the visual debug are clickable, like the label on top with the 
title
but yes we could make the main panel area click trough

also note that the user can
- hide/show the visual debug using the SPACE key
- collapse the visual debug clicking the title "Google Analytics v1.0" at the 
top

Original comment by zwetan on 25 Nov 2008 at 5:30

GoogleCodeExporter commented 8 years ago
what we could do is simply make the whole visual debug go
_alpha = 0.2
and
buttonMode = false
on mouse roll over

Original comment by zwetan on 25 Nov 2008 at 9:16

GoogleCodeExporter commented 8 years ago
Using the space key was helpful but the only way i knew about this was because 
of
this bug.  Is it written down somewhere else?  Thanks!

Original comment by JeffGuth...@gmail.com on 29 Nov 2008 at 6:44

GoogleCodeExporter commented 8 years ago
the documentation is coming.

ok we fixed that, but they are few limitations:
- you will not be able to click trough the "debug" area
- you will not be able to click trough the gif requests alert area

and now you will be also able to define your one keys for the
hide/show and destroy of the visual debug

see:
DebugConfiguration.showHideKey
DebugConfiguration.destroyKey

default for ex:
DebugConfiguration.showHideKey = Keyboard.SPACE;

if you prefer to define the letter "a" just override
with the correct key code:
DebugConfiguration.showHideKey = 65;

Original comment by zwetan on 3 Dec 2008 at 11:12