Multidmedia Limited (MDM)
Search
advanced search »    
Quick Links
advanced search »
   Friday September 10th 2010

 




Untitled Document
+
Products & Solutions
 
Products
- Zinc 3.0 Builder
- Zinc 3.0 Plug-In Windows
- Zinc 3.0 Plug-In Mac OSX
- Zinc 3.0 Plug-In Linux
- Zinc 3.0 Development Suite
- Inferno 1.0 Windows
- Inferno 1.0 Mac OSX
Solutions
- Developers
- Designers
- Education
   
+
Support & Resources
 
Support
- Support Home
- Technotes & Known Issues
- FAQs
- Contact Us
Resources
- Software Updates
- Software Release Notes
- Software Bug Management
- Developer Articles
- File Exchange
- LiveDocs
- Support Forums
   
+
Purchase Online
 
- Online Shop
- Find a Reseller
- Volume Licensing
   
+
Company
 
- About Multidmedia (MDM)
- Client Showcase
- Legal Information
- Job Opportunities
- Press Room
- Blog
   
 

breadcrumbs

Home > Support > Bugs

 

Software Bug Management & Tracking

The MDM Software Bug Management and Tracking System is used to track and monitor the progress of user reported software bugs. You can search for a reported issue below to track it's progress and/or to get more information on an outstanding technical issue.


Bug Report #ZNC-4233QP
Verified on 23 April 2010
Mouse scroll wheel support is missing  
Reported By Staff Member
This issue is Pending and is marked as a Medium priority.
 
Zinc 3.0 > Mac OSX > Wrapper/Projector > 3.0.19 > Incorrectly Functioning  
Description
Flash application run within ZINC native application does not receive mouse events related to scroll wheel on mouse. The support on that mouse events on OS X was previously problematic in Flash runtime itself but now it seems to be functioning within standalone flash player and flash plugin within Safari browser. The same event type seems to be not supported by flash runtime within ZINC built native application.

To repeat issue:
#1
download provided sample project
#2
build and run appliaction
#3
try using scroll wheel in your mouse to just rotate red hair-like rectangle

The code uses MouseEvent.MOUSE_WHEEL listeners to update rotation of red-filled display object:

package
{
import flash.display.*;
import flash.events.*;

public class MouseWheelTest extends Sprite
{
private var handle:Sprite = null;
public function MouseWheelTest()
{
addEventListener(Event.ADDED_TO_STAGE, initMouseListener);
handle = new Sprite();
handle.x = handle.y = 50;
addChild(handle);
handle.graphics.beginFill(0xFF0000);
handle.graphics.drawRect(-50, 0, 100, 2);
handle.graphics.endFill();
}
private function initMouseListener(e:Event):void
{
removeEventListener(Event.ADDED_TO_STAGE, initMouseListener);
stage.addEventListener(MouseEvent.MOUSE_WHEEL, handleMouseWheel);
};
private function handleMouseWheel(e:MouseEvent):void
{
handle.rotation += e.delta;
}
}
}

Attached File(s)
Click Here to download the Attached File
Resolution
Pending

View all Pending Bug Reports » Report a new Software Bug/Issue »

 

 
Multidmedia Limited (MDM)

AddThis Social Bookmark Button
Copyright © 2002-2010 Multidmedia Limited (MDM) All rights reserved. Use of this website signifies your agreement to the Terms of Use.
Flash, Flex and associated Logos are the Registered Trademarks of Adobe Systems, Inc.
There are currently 37 Users Online.