-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Graphics.drawCircle not working in Chrome #323
Comments
I have not seen this issue. http://grab.by/mS6y
|
Either I'm doing something really silly (likely) or the bug is a little more specific than I thought. It only breaks if you are manually setting the width and height attributes of your canvas object AND running chrome in incognito mode... : /
<script src="http://code.createjs.com/easeljs-0.6.1.min.js"></script>
<script>
var canvas, stage;
function init() {
canvas = document.getElementById("testCanvas");
//check to see if we are running in a browser with touch support
stage = new createjs.Stage(canvas);
var ball = new createjs.Shape();
var g = ball.graphics;
g.f("#000000").dc(100, 100, 100);;
stage.addChild(ball);
stage.update();
}
</script>
Give that a run in incognito and let me know if it breaks for you. |
I copy/pasted this and ran it locally (as well as incognito) and it worked fine. |
I've tested in the latest version of Chrome using an incognito window on both Mac & Win7 without problem. We've seen problems with extensions causing problems in the most recent version of Chrome on Win7 - could you try disabling all of your Chrome extensions? If that fixes it, could you try isolating the extension that is causing the problem? Thanks. |
XML Path Finder is the problematic extension. I answered you on GitHub. Thanks Aaron Lawson http://www.dynamic-solutions.co.nz/ http://www.dynamic-solutions.co.nz/uploads/DynamicSolutionsEmailFooter.jpg P 09 577 1424 IMPORTANT: The information contained in this message may be legally privileged or confidential. If you appear to have received this in error or are not the named recipient you are notified that any use, copying or distribution of this email message or its attachments is prohibited. Please notify the sender immediately. Thank you. Any views expressed or implied within the email or its attachments are not necessarily the views of Dynamic Solutions Ltd. From: Grant Skinner [mailto:[email protected]] I've tested in the latest version of Chrome using an incognito window on both Mac & Win7 without problem. We've seen problems with extensions causing problems in the most recent version of Chrome on Win7 - could you try disabling all of your Chrome extensions? If that fixes it, could you try isolating the extension that is causing the problem? Thanks. — __________ Information from ESET NOD32 Antivirus, version of virus signature database 8382 (20130527) __________ The message was checked by ESET NOD32 Antivirus. |
@dynamic-solutions - this was intended for @TheBrownSound , who reported a similar issue (#323). Looks like you get email notifications from #323 because it is linked from your issue #321. |
That’s fine. Thanks. Aaron Lawson http://www.dynamic-solutions.co.nz/ http://www.dynamic-solutions.co.nz/uploads/DynamicSolutionsEmailFooter.jpg P 09 577 1424 IMPORTANT: The information contained in this message may be legally privileged or confidential. If you appear to have received this in error or are not the named recipient you are notified that any use, copying or distribution of this email message or its attachments is prohibited. Please notify the sender immediately. Thank you. Any views expressed or implied within the email or its attachments are not necessarily the views of Dynamic Solutions Ltd. From: Grant Skinner [mailto:[email protected]] @dynamic-solutions https://github.com/dynamic-solutions - this was intended for @TheBrownSound https://github.com/TheBrownSound , who reported a similar issue (#323 #323 ). Looks like you get email notifications from #323 #323 because it is linked from your issue #321 #321 . — __________ Information from ESET NOD32 Antivirus, version of virus signature database 8382 (20130527) __________ The message was checked by ESET NOD32 Antivirus. |
Closing this for now. |
The Graphics.drawCircle method in easeljs 6.1 is not working and fails silently in the latest release version of Chrome 27.0.1453.93. The shape just doesn't display. Working in Firefox and Safari. Appears to only be the drawCircle method, I haven't found any of the other draw methods to be broken.
The text was updated successfully, but these errors were encountered: