
| Key: |
LPP-1917
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
P0
|
| Assignee: |
Max Carlson
|
| Reporter: |
David
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
OpenLaszlo
Created: 02/Apr/06 01:17 PM
Updated: 19/Apr/07 12:13 PM
|
|
| Component/s: |
Splash
|
| Affects Version/s: |
3.1 (aka Denver),
3.2 (Sage),
3.1.1 (aka Quill)
|
| Fix Version/s: |
3.4
|
|
| Severity: |
Major
|
| Fixed in Change#: |
1,685
|
| Runtime: |
N/A
|
| Fix in hand: |
False
|
|
I'm developing a laszlo applications that uses a view fullscreen and scaled, to make a base design of 1024 scale to the resolution of the browser.
If a <splash> tag was added, the images, when scaled (viewed in a browser not 1024 pixels) looks ugly.
If no splash, all looks good, interpolation of images is good.
|
|
Description
|
I'm developing a laszlo applications that uses a view fullscreen and scaled, to make a base design of 1024 scale to the resolution of the browser.
If a <splash> tag was added, the images, when scaled (viewed in a browser not 1024 pixels) looks ugly.
If no splash, all looks good, interpolation of images is good. |
Show » |
|
http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary629.html
To resolve this issue, set the quality attribute to 'best' in both places it appears in the HTML wrapper. Alternatively, you can force high quality by adding the following near the top of the canvas:
<canvas>
<script>
_root._quality = "BEST";
</script>
...