Couldn't find the toolbar items in my xcode 7 IDE - xcode7

I couldn't see the sceme button or Run button and any toolbar icons in my xcode 7.0.
Please let me know how to view that. its very difficult to me for understanding the scheme name and simulator type running without knowing the build.

Right click on the top bar and select “Icon and text”

The same thing happened to me. I tried right clicking on the top bar as suggested above, but only saw a menu that read, "Hide Toolbar". Once I did that, I clicked on the top bar again and saw the menu with "Icon and Text" as a choice. Unfortunately, that did nothing.
I closed the project and opened it back up again. The top bar was set back to normal with the run and stop buttons, the scheme pulldown menu, etc.

Related

What is this menu in the bottom-left of Chrome inspector used for?

Today I noticed a small menu in the bottom left of Chrome Inspector. Upon clicking the dots, this menu appears. When you select an option, a tab is open in the bottom of inspector, but nothing changes on the page or in inspector.
Does anyone know what this menu is used for?
You've just discovered like 8 new worlds of DevTools features, my friend.
That whole section is called the Drawer. It's collapsed in your screenshot, which is why it seems like nothing is happening. Press Escape to expand it. You should be able to drag the bar to the right of the Search tab to adjust the Drawer's height.
Each of those menu items represents a different tab in the Drawer.
P.S. the Drawer collapses automatically when you're on the Console panel, if you also have the Console Drawer tab open. Otherwise DevTools would have to make sure that the two UIs stay in sync.
P.P.S. the Drawer should probably auto-expand when you click on a menu item, since you obviously want to use that tab. I think that's fixed in later versions of Chrome but I'll file a bug report if not.

Sublime Text2 opens with a blank page and no menu bar on top and no side panel

I feel kind of foolish asking this question but what do I need to do to get started in Sublime Text2. I just installed it and when I open the application I only get a blank page with nothing else, except the sublime text logo in the upper left corner. I can write code, I can open a document but there is no menu to do anything. I could use a little help here. Please.
Everything you need should be under the view menu. So if you you to view > Side Bar > Show Side Bar it will show the directory structure of the current project. There is also show tabs and show minimap.
I would suggest exploring the menus and Googling it.
Command-K, Command-B opens the sidebar.
Check out the View dropdown menu. Shortcuts are usually shown out to the side.
And also checkout out Package Control for plugins.

Remove list extensions button from chrome and display extension buttons directly

I don't know how to search for this problem even on Google, So, I ended up asking it on stackoverflow
My Chrome is like this..
When I click on this >> button I get all the extensions like this..
I want all those extensions in my navigation bar itself. Means I don't want that >> button.
update - I am using Version 31.0.1650.63
After struggling a lot I found the answer.
There is one expand icon ( <-> ) which comes on hover just left of this >> button. When we click on that and expand to the left the extension icons start appearing in the navigation bar.

How to hide address bar from chrome and mozilla

I want to give demo to some person of my web application so i want to capture screen without Address bar so that they will not know the domain, can you please tell me how to hide address bar or can i hide domain . I have latest chrome and Mozilla
Cheers
I'm using a self-written stylesheet to achieve that purpose for Firefox.
It hides the complete top-bar and appears when hovering over the top window-border, or focusing the address-bar with the key-combination Ctrl+L.
It's not perfect (e.g. there can be a flickering effect when focusing the address-bar, or after clicking the hamburger-symbol to open the menu, you need to use the Arrow-Down-key for selecting a menu-item) but works for me:
https://github.com/ida/skriptz/blob/dde60dadcca5bb45ce6ca14bb74373637f31a309/setup/browser/ff/userChrome.css
F11 really maximise the window. But if you move your mouse (or presss any key), the navigation bar reappears, thus revealing the URL again !
For hiding URL
Firefox: View -> Toolbars -> Untick "Navigation bar" Toolbar
Just for the record and for defending my necromancer badge:
For Firefox: The addon "Hide Navigation Bar" worked till version 52 came out. I don't know of any other method of hiding it.
To hide the Tabbar, the addon "Hide Tabbar" should still work. I guess it will continue to work until November 2017, when WebExtensions will be the big deal and probably break a lot of old addons like e.g. TabGroups. Just read the first few comments on the tab-groups addon page, to learn that not everyone is pleased with WebExtensions, and this to learn that probably some legacy-addons are already defunct.
I'm no addon-developer, and don't know if the situation really is that dramatic, but I'll sure miss tab-groups.
For Chrome: User Force has given the ultimate hint here, for hiding everything except the content-area. I'll use it to watch amazon prime video.
In firefox right click on toolbar and uncheck navigation bar, or go to view - > toolbars and uncheck navigation bar. In chrome full screen mode is solution (F11)
F11 hides the address bar in Firefox eventually. Using it a second time will make the bar reappear.
If you only want to hide the address bar, uncheck the menu item at View > Toolbars > Navigation Toolbar.

How can remove the circle of ApplicationBarIconButton in windows phone?

I create the Application Bar with 4 icon Buttons and 3 normal menus. It's working fine.
But i don't want, the circle around the icon button. How can i remove that.
And another one question is how to see the icon button text in normally. That means i click the more icon that time icon button visible. But i want no using more button and want to see the icon button text. It's Possible.
Please Help Me.Thanks In Advance.
you cannot remove the circle, neither you can "expand" the application bar so you can see the labels of each button. It is simply against the Windows Phone UI.
But as it is .NET, you can easily create your own buttons bar at the bottom of your page. Of course, it might be difficult to implement the UI logic for you menu items so they behave like the native application bar does (you could consider using the build-in application bar for you menu items and set its mode to "Minimized").
But: why would you do all this? In my opinion, apps should follow all UI guidelines and should all look the same (especially when compared to native apps) ;-)
Greetings