I've read that it is possible to zoom in on windows
and buttons in the blender interface. I'm curious,
how is this done? I've googled but cannot find an
answer to this question.
Regards,
John Goche
Try clickig Ctrl-Middle Mouse button and move your mouse (vertically on 3D view, horizontally on UI)
Related
I need some help with programming a simple kivy app. I have the problem, that kivy 'matches' my laptops touchpad to the screen. i.e. I tap at the left center of the touchpad and kivy does not send a mouseclick at the current mouse position, but at the left center of the screen. This behavior is quite annoying, because it results in a 'clicking-interference'. Is there a way to fix this? It seems like a kind of touchscreen input is enabled. (maybe change this in the kivy config?)
I just want a normal mouse behavior. :/
Thanks in advance!
I got some help on the kivy discord.
To fix this I commented out the probesysfs line in the kivy config (~/.kivy/config.ini).
I have a full screen borderless NSWindow that requires the user to move their mouse to the edges and the corners of the screen often. Unfortunately these movements can trigger the hot-corner actions as well as switching the dock to another screen.
Is there any way to temporarily disable this behaviour while the window is being shown?
It seems like the answer is 'not really' except if you capture all mouse events for the entire screen.
For a complete answer and possible solution, I leave you to Ken answer here : Disable (or filter) Hot Corners
I want to implement a titlebar experience just like the iBooks app on OS X. Basically, the titlebar is always not highlight even if the window is key window right now. However, it did has the cute fade in like animation that paints the titlebar.
I'm wondering how to implement this kind of window titlebar?
My first guess if leveraging INAppStoreWindow, and handle the mouse entered and mouse exited event? But I don't find out how to dim the titlebar, and how to fade in.
So any suggestions for this?
I'm build a Mac application in the style of the Lion Mail.app. As part of this I'm attempting to create a simular toolbar to the one in the Mail.app but I can't seem to get the image in my toolbar button centered vertically.
Looking at the Mail.app toolbar I see a nice series of buttons with centered icons:
but when I go interface builder I can't seem to recreate the same button. What I get is:
What I've tried doing is, in Interface Builder:
Create a new window
Add a NSToolbar to that window
Add an NSButton to the toolbar with Style - 'Push', Image - 'Envelope', Position - 'NSImageOnly', Scaling - 'Proportionally Down'
As you can see the icon is clearly not centered vertically on the button like those in the Mail.app toolbar.
Anybody have any ideas???
At the moment I'm using XCode 4.2 and laying out this button with Interface Builder. I'm trying to build the toolbar button by ONLY adding the image to the button and not painting the button for each item, ie drawing the border and icon.
Any help would be greatly appreciated as this has been driving me a little nuts.
Thanks in advance - AYAL
Turns out the answer to this problem was much simpler then I had expected. After a lot of teeth gnashing, hair pulling, and twiddling pixels I came across the solution.
Instead of using a 'Push' button I simply had to switch to a 'Round Textured' button. Once I did that any image I added to the button was nicely centered. Next I just had to manually scale my image to look right.
The recipe then for a Mail.app Toolbar is as follows:
Add a button to your Toolbar
Set the button style to 'Rounded Textured'
Set the image of the button
Set the position to 'NSImageOnly'
Set the button size to 40 x 25 as well as the min and max sizes of the ToolbarItem
The result is a toolbar that can look very simular to the Mail.app toolbar.
Thanks All - AYAL
One way to do it is to have your image actually be the button i.e. take up all of the button's canvas. You will have to use the button's setBordered: method so the button's border is not drawn.
you could make the button image in something like gimp or photoshop then use that as the background or image for the button.
i feel like your going to say "this is what im doing". and maybe you made the little mail icon but i mean for you to make the whole button, outline and everything, then use that for the button image. make sense?
like here, just use this as the background
I have a horizontal scrolling site that uses jquery to reverse the mouse axis on the scroll wheel on the mouse. This works fine on every browser apart from safari. The address of the page with the scrolling is here: http://www.jamesbells.com/index.php?page=alias
Can anyone help - all I need is for the mouse wheel to scroll left and right when moved up and down.
Cheers
Jon
This could be another way to go with more customizations available.