FlashDevelop Profiler Not showing anything - actionscript-3

Trying to solve Memory Leak problem ... and I am using Flash Develop .. And I clicked start profiler before compile the code.. but still I am not able too see anything .. It was working fine 2 days back!
Can anyone help me regarding this ..

Click the clock icon button on the tool bar up top
Make sure the flag is green in the pop up window that you get from clicking on the clock icon.
Run your app it should be working now

Related

Sikuli opening windows start menu without reason

Im trying to create a script that works on two differents windows simultaneously, but everytime the script clicks, it opens the windows start menu without reason which hides part of my screen and cause FindFailed errors.
What can I do to prevent that ? What causes this issue ?
Clicks with SikuliX are not "simultaneously" but always sequentially one after the other.
So tell a bit more about your setup.
A relevant snippet of your script code might help as well.
Have you tried "run in slow motion", where you can better watch, where the mouse moves and clicks?

Cursor not showing in Device Mode (Google Chrome)

So I'm trying to develop a webapplication and I'm trying to check it out on mobile.
I'm currently using Cordova and JQuery Mobile together with ripple.js to view my application in my browser.
The first issue (as far as I know) is that ripple.js will work best in Google Chrome, so this is my only test platform.
The second issue is that when I toggle Device Mode on, it doesn't show me the black dot (cursor) when I enter the rendered version.
I'll explain my situation or a scenario:
As an example I'll go to http://google.com
I press F12 to enter developer mode
I click the Toggle Device Mode button
I will see my cursor, until I enter the generated mobile canvas. While I would normally see a black transparant dot, I now see nothing.
I can however click and drag like I would normally do, but I can't see what I'm doing.
The things I already tried:
Reset all the flags back to default
Reset all developer tool settings to default
(edit) Installed a previous version of Chrome AND Chromium
So question is, how do I get my cursor back?
Extra: I'm using version 49.0.2623.87 m, but that's not related since my co-worker, has the same version and he sees the cursor.
(edit) currently I'm using the mouse option where I press Ctrl to see the circle which indicates where my cursor is, but this really has to be a temp solution.
(edit) I fixed it by doing a combination of things. So I'm not sure which exact thing fixed it. I removed a few programs that I installed after it still worked. I uninstalled about 4 of them. Also I did an update of my graphics card and then did a reboot. So it could be either the graphics card update, the software uninstall and/or the reboot.
I had the same issue. (note this question might be a duplicate of this one)
Following the advice on the Chrome forum here I changed the Quantization Range in my Intel HD Graphics Control Panel from "Default Range" to "Full Range". The touch pointer (grey circle) appeared immediately.
If that doesn't help you may have to change refresh rate too. Changing from 59p Hz to 60p Hz or some other refresh rate might help.
This should also help.
Open the mouse control panel.
Select the Pointer Options tab in the Mouse Properties window.
Then enable Display pointer trails option.
In case you don't like or are getting annoyed, like me, due to the trailer. Move the slider to the Short position and the trailer becomes near to non-existent or invisible.
I fixed it myself, yet I'm not exactly sure how I did it. I edited my original post and added the solution in the last paragraph.
Had the same on my Asus laptop with Chrome 66
Resolution that worked for me
Graphics Control Panel > Display > General Settings > Scaling > Change to Scale full screen.
OFF your Asus Eye Care Switcher.
I am posting this as answer because above mentioned answer didn't work for me but I had this issue when I had a monitor attached to my laptop, for development work. I played around with my display settings and discovered that IF the scale on my second monitor did not match the scale on my laptop, the mobile development mode cursor would disappear. (windows 10)
If this is an issue for anyone just go into Display settings -> Display -> Scale and Layout --> make sure that both your laptop/desktop matches the display scale of your second monitor.
Hope this will help.

The missing system tray icons on Fedora 19 Desktop Edition

Once installing Fedora 19 Desktop Edition, I run the systray of Qt Example. But I could not look for the system tray icon.
There is no Notification area in the Activities overview.
Please let me know to display the notification area or the tray icon.
Moving your mouse quickly to the bottom right should display the Message Tray. If it doesn't work, use Super+M (windows key+M).
If you're running Synergy, the pressure sensitivity isn't working and you won't be able to use the mouse, because of this known bug. You must use Super+M.
Today I installed Ubuntu Gnome 13.10 and I couldn't find the Message Tray.
Moving the mouse down I made it appear some times. Finally I realized that it opened every time I moved my finger down on the touchpad two times.
I don't know if this interaction is intended or it is just a bug.
Super+M works too, thanks!
If you're willing to install the Frippery Bottom Panel.
The little exclamation point icon on the bar can be clicked to bring up the Message Tray too.
Clicking an item from the tray area or pressing Esc to cancel it, will remove the focus on the tray.

Action Script 3 (AS3) Trace not working

Hello guys i have very big problem with Action Script 3 trace function?
Here is my code and it dont work..
Output is empty.
trace("HI");
Can someone tell me fow to fix it?
I have tryed to find answer in some search engines but i was unable to found
Im Using Adobe Flash Cs 5.5
Yes i can make something on as3 but i cant test on as3
Traces will only appear if you run it in debug mode, not if you simply "run" it. This might be the issue? I can't remember how flash cs5.5 does it when you run with F9.
Hey guys i found the solution :)
Go to the top right corder of the output window and click on the list icon, then make the filter to Verbose.
Also, check that "Omit trace statements" is NOT checked in the Publish Settings
seems you are PUBLISHING (f12), when you should have used Ctrl + ENTER (Control > Test Movie). If you are really publishing (outside of the Flash IDE), the Output Panel will never shows anything.

How to disable/hide an error in Flash Builder 4

When writing code sometimes those red error icons pop up on the left side. Most of the time they are on point, but sometimes they are wrong. How can I hide them. They annoy me too much.
The red ones are proper errors, I am concerned about that they should actually be "wrong". The yellow (or orange) ones are warnings which can be hidden by using proper AS3 syntax.
Rob
By default when you save your code in process of editing Flash Builder performs rebuilding of your project and if you have some errors in file (unfinished lines for example) it shows them as red markers.
If you want to control build process manually you can go to the Project menu and deselect Build Automatically. Now you can invoke build process manually to show error markers when you want. Just go to the same Project menu and select Build project. You can even assign keyboard shortcut for this operation.
Hope this helps!