Flash Builder 4 Start Page? - flexbuilder

i have closed the Start Page in FB4 and now i can not find it. ridiculous. how can i open this panel again?

it's located here:
Help > Flash Builder Start Page

window > welcome panel, something like this from the top menus in FB4.

Related

Building a website in Sharepoint, but my control panel disappears

At the moment i'm building a website in sharepoint, but everytime i open the main page of the website in my browser the control panel on the left upperside of the screen is missing. I have no idea why?
To clarify: In this tutorial you can see the browse/page/site control screen, in which they make nearly all the simple changes to the website. https://www.youtube.com/watch?v=dJlwCNXMCBo (edit: Forgot the link of the tutorial)
I literally have no idea why i cant use this, does anyone have any clue?
Edit: My mainpage looks like this:
http://s30.postimg.org/6a5mkzoip/Screenshot_main_page.png
Pull down the menu with the gear icon beside your name. Click on "Show Ribbon".
Your master page is hiding it through javascript.
<script type="text/javascript">
var suitebar = $("#suiteBar");
if(suitebar.length<1)
$("#s4-ribbonrow").css('display','none');
</script>
If you change the master page to $("#s4-ribbonrow").css('display','block');
You should see the ribbon.

Display html page?

I want to load static web page from resource and to display it as dialog, not like its loaded in internet explorer but like dialog without any menus or borders if possible.
I want to use this page as "GUI", pretty crazy idea yes.
Someone can explain me how to achieve this ? (I dont want any dependencies on my executable).
Thanks in advance.
You can use a webbrowser like this:
http://www.adp-gmbh.ch/win/misc/mshtml/index.html
http://support.microsoft.com/kb/315617/es

Like Button customization

I'm trying to implement the Facebook Like button into a site and basically what I want is a very simple button that when clicked likes the corresponding facebook page and then opens it in a new window. I don't want the comments or the faces or the count, just the button and when clicked I don't want the option to add a comment. It just likes the page and opens it in a new tab, nothing more.
Any help would be appreciated.
Use this link
http://developers.facebook.com/docs/reference/plugins/like/
You can find answer for your question . Simply select the Layout to box_count or button_count . You will get simple like button .
If you want to use the facebook like plugin, the only customizations you can do are available here:
http://developers.facebook.com/docs/reference/plugins/like/
This will also generate the code on html5/iframe/xfbml into your application.

How to display Flash-based webpages in a QT Application?

Im trying to show a flash animation in my QT application, I'm doing it by a QWebView. This is my code:
webpage = new QWebPage(this->window);
webpage->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
webpage->settings()->setAttribute(QWebSettings::JavascriptEnabled, true);
webview->setGeometry(QRect(0,0,480,800));
webview->move(QPoint(0,0));
webview->load(QUrl(flash->file));
webview->show();
So, Im able to show regular pages, but the pages that got a Flash animation doesnt appears. I receive a blank page and a symbol from adobe, like "Get flashplayer".
I already have it, those pages load ok in Firefox and Chrome. I have put the NPSWF32.dll e my project folder and in others standar paths, but it Didnt work. So I do not really know what to do now. Hope you guys can helpme, I couldnt find the plugin file in Firefox or Chrome folders, so I downloaded another NPSWF32 to put in the project folder, maybe is that? Thanks in advance!
look here where Qt expects to find plugin:
http://doc.trolltech.com/latest/qtwebkit.html#netscape-plugin-support
Your plugin (NPSWF32) seems to be right

XFDF pdf opening in same window in IE

I'm working on a project that collects data from the project then displays it using xfdf to populate a .pdf file. Now when I use Chrome or Firefox it opens in a new tab which is exactly what I want, but some of my clients will be using IE, which opens it in the same window and causes some confusion. What area of the code should I be looking at in order to tackle and solve this problem?
I can show code examples, just let me know what I need to show.
Thanks,
Steve
Edit: When I click 'Print Application' button, it asks me to save or open the file. When they click open, it opens in the same tab, I want it to appear in a new tab.
In my experience, the best way to accomplish this is to alter your template linking to the PDF. For example:
Clicky!
This should work in all browsers.