Issue metadata
Sign in to add a comment
|
Flash Printing on Chromebooks failing to launch
Reported by
mike.rod...@explorelearning.com,
Aug 22 2017
|
||||||||||||||||||||||||
Issue description
UserAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36
Steps to reproduce the problem:
1. The Flash player included with Chrome OS fails to display the system level print dialog when the start function is called on the print job when using either mx.printing.FlexPrintJob or flash.printing.PrintJob
Sample piece of Code from Reflex that should show the print dialog immediately on job.start()
import mx.printing.FlexPrintJob;
import mx.controls.Alert;
import flash.events.Event;
private printSomething():void
{
var job: FlexPrintJob = null;
try
{
job = new FlexPrintJob();
}
catch(err:Error)
{
// shown an mx.Alert and then return.
Alert.show(“Error: “ + err.message, "Print Error", Alert.OK, this, handleAlertClosed);
return;
}
try
{
if (job.start())
{
// this should have shown the system level print job dialog. That does not occur
// on Chrome OS.
}
}
catch(err:Error)
{
// shown an mx.Alert and then return.
Alert.show(“Error: “ + err.message, "Print Error", Alert.OK, this, handleAlertClosed);
}
}
private function handleAlertClosed(pEvent:Event):void
{
// do something here
}
2.
3.
What is the expected behavior?
The print dialog should launch, leading to being able to print from our flash application
What went wrong?
The print dialog does not launch.
Did this work before? Yes Not sure
Does this work in other browsers? Yes
Chrome version: 60.0.3112.101 Channel: stable
OS Version: 10.0
Flash Version: Shockwave Flash 26.0 r0
We believe that this worked in earlier versions & has been reported recently & replicated.
,
Oct 31 2017
Can you provide a SWF (and if needed, a webpage that embeds the SWF) to demonstrate the issue?
,
Dec 11 2017
No feedback was received in the last 30 days from reporter "mike.rodbell@explorelearning.com", so archiving this. Please re-open or file a new bug if this is still an issue. For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot
,
May 3 2018
I can provide a swf for testing
,
May 3 2018
|
|||||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||||
Comment 1 by harpreet@chromium.org
, Oct 9 2017