WheelForward (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Added example
>JulienDethurens
No edit summary
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{|
<onlyinclude>{{Event
|<onlyinclude>{{Event|
|name = WheelForward
name = WheelForward
|description = This event is supposed to fire when the mouse wheel is moved forward, but it never does because the mouse wheel is used for zooming.
|arguments =
|object = Mouse
|description = Fired when the mouse wheel is moved forward.
}}</onlyinclude>
|object = [[Mouse]]
 
|}}</onlyinclude>
{{clear floats}}
|}
 
{{Example|<pre>
==See Also==
local tool = Instance.new("Tool")
*[[File:Event_Icon.png]][[WheelBackward_(Event)|WheelBackward]]
tool.Parent = game.Players.Player.Backpack
 
local function onActivation(mouse)
[[Category:Events]]
  mouse.WheelForward:connect(function()
    print("Wheel moved forward")
  end)
end
tool.Activated:connect(onActivation)
</pre>}}

Latest revision as of 08:08, 28 January 2012

WheelForward ( )
Description This event is supposed to fire when the mouse wheel is moved forward, but it never does because the mouse wheel is used for zooming.
Member of: Mouse


See Also