How do i can fix button bifurcation in PPT? - vba

I tried to create a simple programmable button
editor view
and this is what I see when I view the slide
slide view
Button bifurcates!
How can this problem be solved?

I tried trying to fix it by poking at everything I see and saw the monitor selection option. I have 3 screens, I chose the main monitor. This was the reason.

Related

Issue with layout

I've got a small problem with the way my app looks. I don't want to see that shift at the top of the screen. While creating this scene in IB there isn't one, but it appears when I launch the app. I would be really grateful if anyone could help my to solve this issue.
You can fix this as follows:
In your storyboard, select the view controller that is giving the issue (You can use the yellow icon on top of view controller to select it).
Click on the attribute inspector
Uncheck the 'Adjust Scroll View Insets'

Changing View on Xamarin Studio

Currently my view is stuck with my "Watch" outside of my other views:
Ideally I would like to have my "Watch" tabbed in with my other views such as "Locals, Breakpoints, Threads, Application Output."
Normally this would be as simple as dragging the "Watch" into the other tabbed views. However, I have been unable to do that and it just snaps back to a solo tab.
How do I combine all these tabs? This is driving me crazy.
Figured it out! This wasn't as intuitive as it could be:
To conjoin separate tabs, you need to drag the tab to the CENTER of the new tab as seen in the picture below.
Note. Do not try to drag the new tab to the TABBED part. Simply drag it to the center of where you want to conjoin. In the above picture I am dragging the Breakpoints tab into these tabbed views.

Implement a slide-sidebar like Tinder.app

Does anyone can open Tinder.app?
Well, the app implements a simple-but-slick animation effect when the user taps on the top-left menu icon button. The focal points of this animation are:
Status bar fades out/in based on when the left menu sidebar is opening or closing;
When the left menu sidebar is opened there's a little bounce effect of the main view controller just slide to right;
When the left menu is opened, if you try to close it you can see there's a little bounce of the main view controller that shows the right sidebar (the "All Matches" view controller).
I've just cloned ECSlidingViewController repo and played a little with it but unfortunately it seems that (out-of-the-box) it have only classic animations and not those bounce animations I said before I'm trying to achieve.
Does anyone knows how to implement something like that? Thanks.
You can find many ways to do this, you can wirte your own code to do this. But there are many free work available, which may helpful. And you will not try to reinvent the wheel.
IIViewDeckController
AppCoda
JTRevealSlidebar
SASlideMenu
JA Slide Panel
BenHall
SlideNavigationController
There are plenty more available, but above mentioned are easy to use and having demo project also.

How to make a tab bar that shows colored icons , on iOS?

I need to make a toolbar on the bottom of the screen with some buttons. I want in every button to have a small image and a small text under it. The closest i can find from "Xcode" is the "Tab Bar" where you can put icons and text but the problem is that when you add an image you can only see the shadow of the image and not its colors.. Can i change that? Or is another way to make a toolbar like the one i am describing?
EDIT
I need the buttons to change controllers and i just noticed that i cant create actions for the tabs but only outlets. So i guess the tab bar is not what i should use. Any ideas for a toolbar?
Yes Tab Bar is the Best approach for it and it is very easy to customize the tab bar if u are using IO5
This LINK will be helpful.
There is another approach (which was applicable uptil IOS4 for customization of Tab bar) was to Create Custom buttons with tab bar look alike Images. it will give u the same feel, but like i said it is very easy now to customize IOS Tab bars
Here is a couple of Links for u
LINK 1 With Story BOARD
LINK 2 Without Storyboard
One More thing Try searching Google before Posting a question here if have some problem then feel free to post along with the code or tutorial u tried.
Let me know if i Worked
Cheers
W

adding an invisible button to the background in IB

I'm working with Xcode doing a Ipad app.
i simply want user to click anywhere on screen (not counting text fields) to perform some IBAction.I'm using an invisible button that covers my whole view.
Since I have some text fields in my view,i need to add this invisible button to the background of my user interface. I cant seem to find this option in the button attributes? any help?
Just set the button's type to custom.
Did you try setting the opacity of the button to zero?
I guess i got your point. You just want to put the UIButton(invisible) on the back of all the UITextField. The simple solution to this is open the Document Window in the IB. Now expand the view tree in the list view. Just drag your UIButton above the UITextFields and set the alpha value for the button in the property to be zero.
Hope this helps!!
iPad users don't "click". They "tap" or "touch".
In Interface Builder, I believe views are constructed with a z-index from top to bottom as they appear in the document window, so dragging your button so that it appears as the first subview of your main view should be a quick fix for this.
Have you considered other approaches? This doesn't sound like standard behaviour for an app and will probably cause havoc with anybody using Voice Over. What are you trying to accomplish?