Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
1k views

Does LaTeX have an array data structure?

Are there arrays in LaTeX? I don't mean the way to typeset arrays. I mean arrays as the data structure in LaTeX/TeX as a "programming language". I need to store a number of vbox-es or hbox-es in an ...
5
votes
3answers
13k views

how to center align a button in a hbox in flex?

I have a VBox inside which I have 4 HBoxes. The second level HBox is initially hidden. When I click the label, 'Show more Options', the second level HBox is displayed. Now I have the space occupied by ...
3
votes
2answers
453 views

JavaFX layouts question

I am having some problem understanding layouts in JavaFX. Consider following code. Stage { title: "ListView test" scene: Scene { width: 400 height: 400 content: [ ...
3
votes
1answer
4k views

Horizontal align components inside HBox from Action Script

Is there any way to set horizontalAlign from Action Script not from mxml?
2
votes
2answers
810 views

Fill an HBox in from the right? VBox from the bottom?

I only really need the HBox answer but figure that if we get a good answer in here it would help anyone trying to do a similar thing with a VBox. It would be nice to know this in both actionscript and ...
1
vote
2answers
120 views

Ext JS 4 - laying out fields in a form using hbox, vbox, etc

I have a simple Ext JS 4 form inside a window (MVC style app). The example below shows 4 fields. This example is simplified, but now I need to take these fields and lay them out using hbox and ...
1
vote
1answer
107 views

Right-Click on a PyGTK Hbox in an Expander

I've got a gtk.Expander object, containing in its label a gtk.HBox, which packed a gtk.Image and a gtk.Label. I want to launch a Webbrowser when the HBox is right-clicked. Here is my code: def ...
1
vote
1answer
183 views

How to make widgets packed within gtk.Box (VBox/HBox) resizable by the user

Is it possible to make the widgets within a box resizable by the user? Cheers! Example: hbox.pack_start(my_scrolled_window_1, expand=True, fill=True, padding=0) hbox.pack_start(my_vseparator, ...
1
vote
1answer
2k views

Sencha Touch : vbox inside hbox layout issue

I am putting a vbox layout inside hbox layout. But the vbox isn't working properly. Here is the code: Code: var panel = new Ext.Panel({ fullscreen : true, layout : { ...
1
vote
1answer
119 views

Wrapping in xul:hbox

I have strange problem with XUL layouts. My current code: <xul:vbox> <xul:hbox> .. some elements .. </xul:hbox> <xul:hbox> <xul:hbox> .. some elements .. ...
1
vote
1answer
362 views

Javafx Layout problem with VBox & HBoxes

When I run the following, I noticed spacing between nodes; My research revealed that - 1) If I do not add any text to win1 via setwininfo, then there is no problem. 2) When I include this code in a ...
1
vote
1answer
4k views

Flex - Vertically position children of a horizontal HBox

I have a custom HBox as so.... public class MyBar extends HBox { public function MyBar() { super(); this.height = 65; this.percentWidth = 100; var newButton:Button = new Button(); //..... ...
0
votes
1answer
80 views

Does disabling Parent component affect its Child components?

I have many buttons in HBox. Instead of disabling each button, I've disabled HBox. But I am able to click buttons even though the HBox is disabled. Disabling parent component will not make difference ...
0
votes
1answer
356 views

Flex HBox with background color and rounded corner, wiered problem

I am facing a wiered problem in Flex. I Have a canvas with a HBox and Label. Please find the code below. <mx:VBox verticalAlign="top" horizontalAlign="center" fontSize="12" ...
0
votes
1answer
377 views

update a gtk.VBox dynamically

I have been using this website pretty often in order to solve small issues that I have while programming in Python. This time, somehow I could not find a suitable solution for my situation. So, here ...
0
votes
1answer
151 views

Xul: Dynamically populating a hbox with vboxes results in elements places vertically

I'm trying to populate in runtime an hbox elements with vboxes elements using the following code: Xul code : <hbox style="overflow:auto;" id="canvasContainer"> </hbox> Javascript code ...
0
votes
1answer
135 views

How to set a Gtk Box to have two children

I have a Gtk::HBox which should contain two elements only. However, the constructor new Gtk::HBox() creates a box with three elements, so when I display my window, there is an ugly space where Gtk ...
0
votes
1answer
537 views

Changing the background image of HBox

I have assigned a logo image of my software to HBox as follows - <mx:HBox id="logoBox" width="98%" textAlign="left" backgroundSize="100%" horizontalAlign="left" height="18%" ...
0
votes
3answers
150 views

how to use css to style a descendant (not a direct child) of an element?

I am trying to override the style of a descendant(not the direct child) of an element using css. Say, I am working on: <table id="z_d__h3-real" class="z-hbox"> <tbody> <tr ...
0
votes
1answer
190 views

how to use zk hbox array?

I am not sure how to use a zk Hbox Array. I am trying to create an array of ZK Hbox components and use it within a for block. void createRow(Component container, final Node fieldNode, FieldCreator [] ...
0
votes
1answer
220 views

HBox children Component seperator

How could i add separating line around HBox children component?? like if i choose borderstyle as solid for the hbox, the problem is the line between the children component, like text components, who ...
0
votes
2answers
136 views

How do I change the size of an HBox in Flex to fit it's container?

I create an HBox, fill it with a grid of buttons, and set the scroll policy. When I resize the window, the stage changes size, and so does the HBox ... to a point. Once it reaches the height of the ...
0
votes
1answer
471 views

Hbox horizontalScrollPosition not working

I am applying hb.horizontalScrollPosition = value and it does not work with horizonalScrollPolicy = on/off. Is there any other way to achieve this? Thanks.
0
votes
1answer
201 views

How do I change a box components direction in Flex 3?

With mx:Box I can set the direction to be either "horizontal" or "vertical". I'd like to reverse the order of the components in the box though. For example: before: |button1| |button2| |button3| ...
0
votes
2answers
2k views

Flex: container scrollbars in HBox

I have an HBox in my flex application. The problem is, when there are too many things inside the HBox a scroll bar appears at the bottom of the app. How can I make it appear in the HBox, so the ...