I can't maximize the window of creating new project in PhpStorm .I can't even resize it manually with mouse (e.g. bottom right corner).
I can't see the composer.phar button .
Any idea how can I add more width to this window or how to maximize it ?
You can get the New Project window from two locations:
Welcome screen ("Create New Project" link)
Main menu ("File/ New Project" menu entry).
As you can see, it's the same window with the same features but dialogue controls and decorations are slightly different. The first one is not resizeable (just like its parent window) but the second one is (as its parent).
So you can only resize it if you create the new project when you already have a previous project open. IMHO, it feels as an overlook on the developers side.
You can't resize this window: that's by design. What resolution are you using? Do you have any display scaling enabled?
Related
can anybody explain to me why is that MonoDevelop main window does not resize to bellow a lower width and height? Is this normal? Is it a bug?
PS: On mac, version 4.0.1
I - n00b with anger - had problems resizing the Main Window at all.
Here is how I managed to do so:
rightclick on mainwindow in designer-> Mainwindow -> Select
In the Properties Window:
Window Size Properties -> check "Resizable"
(even if it seems checked, check it again!)
Now I can resize the Windows as big or small as I want.
//Edit: I would also like to point out, that for most widgets there is a "Common widget Properties" region in the properties View. Have a look at "RequestWidth" and "RequestHeight" if youre used to .Net and looking for a way to resize Widget Controls.
In my Flex application I need to increase height of swf through javascript:
FlexGlobals.topLevelApplication.height += 50;
ExternalInterface.call("changeMyAppHeight",FlexGlobals.topLevelApplication.height);
After that I need to show popup window:
var modalPopUp:ModalPopUp= new ModalPopUp;
PopUpManager.addPopUp(modalPopUp, DisplayObject(FlexGlobals.topLevelApplication), true);
PopUpManager.centerPopUp(modalPopUp);
This modal window is not covered the whole application. There is a 50px gap in the bottom of my application which is not covered, thus, user can click some objects placed on this gap.
Is there a way to fix it?
I saw the same issue with Alert popup here:
https://issues.apache.org/jira/browse/FLEX-27667
and here
http://bugs.adobe.com/jira/browse/SDK-30613
But it seems it was resolved more that 1 year ago.
I have the same issue when I opened an Alert window instead of Popup Manager modal window.
For my application I am using Flash Builder 4.6 and sdk 4.5.1
Any suggestions are appreciated.
Addition:
I have figured out that
FlexGlobals.topLevelApplication.stage.scaleMode = StageScaleMode.SHOW_ALL;
affects Pop-up window covering functionality:
If I comment this line then Popup works correctly but in case if user press CTRL+mouseWheel in order to zoom in/out content in browser window then swf-application is not zooming properly. So, I need StageScaleMode.SHOW_ALL in my code.
It seems, this issue is not resolved yet:
https://issues.apache.org/jira/browse/FLEX-24140
http://bugs.adobe.com/jira/browse/SDK-26623
I am working on Tizen. Developing an application on Tizen which has been already developed by me on Android.
I have to place an image in the background.and then place button on it. Click on that button and receive its action in javascript.
How can I place image in the background.
Is their any way to transfer android application on Tizen platform.
Can we make our android application on Tizen?
background-image in CSS can do it.
E.g. put mesh_background_1280x720.jpg into images directory than fix your style.css:
body {
background-image: url("../images/mesh_background_1280x720.jpg");
}
For me this works.
You can do it by using Jquery Mobile.
.ui-icon-myapp-custom {
background: url("settings.png") no-repeat rgba(0, 0, 0, 0.4) !important;
}
in HTML,
<a href="#user_info" data-role="button" data-theme="b" data-iconpos="right" data-icon="myapp-custom" >
Custom Icon
</a>
For detail, check
http://jquerymobile.com/test/docs/buttons/buttons-icons.html
Currently there is no support in Tizen SDK to convert Android app to Tizen. But there is a way. A company Open Mobile developed ACL(Application Compatible Layer) for tizen. If you have Android app, you can submit it to them, they can convert it for Tizen. All application credit will be name on you. They will get a amount from samsung. Search ACL in Tizen store, you will find several application under ACL.
I can tell you how to do this using Tizen Native (WYSIWYG). If you are seeking a code based answer, then ignore this. HOWEVER, for those trying to learn and navigate within Tizen Studio this is very helpful!
Start Tizen Studio
File/New Tizen Project
Template / Next
Mobile / Next
Native Application / Next
UI Builder Single View (Bottom Left) / Next
In the Project Explorer (Top Left) open the tree to Layout / Layout.xml (Double click to open the Layout).
Choose Design Tab (Center)
In Palette , UI Container (just to right of center)
Drag "Grid" from the Palette onto your screen
In Properties Tab (far right or turn on: Window/ Show View/ Other/ choose properties OK)
Change Col Count to 720 and Row Count to 1280
Drag "Grid" from the Palette onto your screen
Now you should see more (22) UI Components
Drag "Background" from the Palette onto your screen
If it does not automatically resize (Hello BUG) then do the following. Drag to a little LARGER then your screen size (assuming HD, Look into this I think this is REQUIRED by the Tizen Store).
With Background highlighted, again go to Properties Tab, bottom Variation Attributes make:
Left 0, Top 0, Width 720, Height 1280. The first few times it will give you trouble until you figure out that the BG resized window can't go higher than the BLUE TOP and the window should be larger on the bottom, until you manually type in the CORRECT SIZE as shown above.
Now go to or open your Resource Tab (just drag and drop files here from Windows Explorer) and find your background image that you already RESIZED CORRECTLY in Adobe PS and used SAVE FOR WEB to reduce jpg file size.
Drag onto Background "layer" on your Screen.
For a button you can:
Drag "BUTTON" from UI components onto Background OR BETTER is to drag "IMAGE" from UI components onto Background...
Then drag and drop (PRE-MADE BUTTON from Adobe PS) image from the Resource Manager Tab onto the empty image place holder. You will have to resize it manually in the Properties Tab to get the correct proportions.
REPEAT for more Images and Buttons and Text since the built in text "Label" is horrible to say the least. You can always make any of these do Button Actions.
This is as far as I have come, now I need to learn how to program said buttons and actions.
Whew! This will save you many weeks!
Wish I had found a step by step like this!
Now where to post this?
IO
P.S. If you find this useful. Tick the little black up arrow to up vote this. Purely to help others, I receive no reward for "likes".
I am trying to use monodevelop. Just at the beginning I came across an issue:
I was following a tutorial on building a Gtk application (http://monodevelop.com/Stetic_GUI_Designer). I was trying to drag a button from the Widgets Palette. Nothing happened. I'd been trying quite a few times without any luck.
After a break I launched monodevelop again and I simply placed a button on the window of the application. After that I removed it, dragged VBox container, and placed menu bar on the window, according to the tutorial instructions. I was pleasantly surprised.
By the second try the same problem occurred - I was not able to drag any widgets. Dragging was beginning, there was a “+” sign at the cursor and then - nothing was happening. I cannot figure out what happened by the first time, what the difference was. Have anyone had a similar problem? Monodevelop looks promising, but I can't go on with it. (I tried placing 'Fixed' container on the window, with no result - I could not drag it.)
(monodevelop v. 2.4, ubuntu 11.04, Polish language.
I did look for an answer to my problem, without much luck, that is why I post this question. The problem is described quite precisely. There is a probability that others encountered the same issue.)
You need to drag a container on the form first before you can add widgets to it. The VBox container is an example of a place where you can put your widgets.
If you want to place widgets where ever you want you can use the Fixed container. If you want things to align you can use the VBox, HBox or Table containers. Placing in a widget in one of the fields will automatically adjust the size of this field to fit the widget you have dragged into it.
So basically,
Create a form
Drag a container on the form
Drag a widget inside the container.
These widgets are not to be confused with the custom made widgets (in your Solution browser, right click the folder User Interfaces and click Add Widget...). These are like forms. I use these to create GUI's in advance so I can call these while the program is running.
FYI: if you want to create code for a widget (like a button) you can't just double click it like in Visual Studio. You need to select it, the go to the properties pane, and change the tab from Properties to Signals. You can then double click the "signal" to create the event for which you want to create code. For a button this is usually the Clicked event (somewhere at the bottom of the list, you'll need to open the Button Signals)
You can always visit the IRC channel of Monodevelop on irc://irc.gimp.org/monodevelop (IRC.Gimp.org #monodevelop)
I also sit in this channel and can help with smaller problems and I also still use Monodevelop 2.4.
Does anyone know if there is a way to make the new Package Explorer window in Flash Builder emulate Flex Builders 'Flex navigator' window?
Bottom line is I don't always need to peer into SWC's, and I don't like having a 'default package' automatically created for me. Not sure why the interface wasn't made simpler, allowing access to more power and complexity only if necessary. I want to focus on the code, not on how to navigate and use the bells and whistles in the coding environment.
The original "Navigator" view is still available. From the FB menu choose "Window" -> "Other views..." Open up the the "General" tree and select "Navigator" This might put the Navigator window as a tab in the bottom panel (that's where it showed up for me). You can then drag and drop the tab to place it right next to the Package Explorer. Then you can easily switch back and forth between both views.