
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Did my answer help?
1. If the buttons are placed in the frame with the command i, AT, LEFT_TOP - everything is fine.
If you place them in the right end of the taskbar with i, AT, _W2W, "MF", -40, _Y2Y, "MF", 0, - the icon is duplicated in the left end of the bar:
And when hovering over the button, its frame is also drawn at the left end, closing the tabs, and the name of the button is messed up:
Bug or my FAIL - I don't understand.
2. There is a dead zone at the right end of the taskbar. On the screenshot it is noticeable by an artefact. All the dimensions set seem to be correct. But I must be wrong somewhere in the code.
3. When switching tabs, the "Report", IS_APPEARANCE_CONTROLLER, "ReportFrames", END commands are not enough. Frames are switched back on, but the tables contained in them are not. I have to explicitly list "Report", IS_APPEARANCE_CONTROLLER, "ReportFrames", "Balances", "Log", END
Getting a little ahead of ourselves.
Only because of suspected bugs.
Technically, you can make other options for text and icon placement within elements, but practically they don't make sense. If the need arises, we can consider them.
In the current concept, if you want to place an icon and text next to each other, you have to manually select offsets. For each button, as they all have different text lengths. This is inconvenient. To simplify it, we'll have to align to the left edge.
I would like to automatically centre the icon-text chain, optionally selecting the distance between them. For buttons of the same width, with different text lengths, this is the best option.
But of course, this is not the highest priority.
1. If buttons are placed in the frame with the command i, AT, LEFT_TOP - everything is fine.
If you place in the right end of the taskbar i, AT, _W2W, "MF", -40, _Y2Y, "MF", 0 - the icon is duplicated in the left end of the bar:
And when you hover over a button, its frame is also drawn at the left end, closing the tabs, and the name of the button is spoilt:
Bug or my FAIL - I don't understand.
2. There is a dead zone at the right end of the taskbar. On the screenshot it is noticeable by an artefact. All the dimensions are set correctly. But I must be wrong somewhere in the code.
3. When switching tabs, the "Report", IS_APPEARANCE_CONTROLLER, "ReportFrames", END commands are not enough. Frames are switched back on, but the tables contained in them are not. I have to explicitly list "Report", IS_APPEARANCE_CONTROLLER, "ReportFrames", "Balances", "Log", END
Only because of suspicion of bugs.
I suggest this code:
Result:
In tables displaying values, R_HEADER and T_HEADER elements must be declared, because naming and connecting cells is done by specifying R_HEADER and C_HEADER and combining them. This is how the "address" of a cell in the table appears. T_HEADER is necessary for setting many table properties.
If they interfere with the appearance, they can be hidden as I did above.
1. If buttons are placed in the frame with the command i, AT, LEFT_TOP - everything is fine.
If you place in the right end of the taskbar i, AT, _W2W, "MF", -40, _Y2Y, "MF", 0 - the icon is duplicated in the left end of the bar:
And when you hover over a button, its frame is also drawn at the left end, closing the tabs, and the name of the button is spoilt:
Bug or my FAIL - I don't understand.
2. There is a dead zone at the right end of the taskbar. On the screenshot it is noticeable by an artefact. All the dimensions are set correctly. But I must be wrong somewhere in the code.
3. When switching tabs, the "Report", IS_APPEARANCE_CONTROLLER, "ReportFrames", END commands are not enough. Frames are switched back on, but the tables contained in them are not. I have to explicitly list "Report", IS_APPEARANCE_CONTROLLER, "ReportFrames", "Balances", "Log", END
Only because of suspicion of bugs.
1. There is a different positioning system inside canvases. I will prepare detailed material on this topic. Also you can't use snapping to the right edge of the window, because the size of the window depends on the size of the content.
2. There can be only one V_BOX element per tab group, and its group must be declared LOWER than the tab group.
3. Currently, tab sizes are set manually by explicitly specifying them. Icons are set as usual.
4. For the sake of saving resources when redrawing the canvas, I removed the Refresh button to the top, otherwise the canvas becomes VERY long, and redrawing is much more resource-consuming. Also the button can be placed somewhere near the tables.
In the current concept, if you want to place an icon and text next to each other, you have to manually adjust the offsets. For each button, because they all have different text lengths. This is inconvenient. To simplify it, we will have to align to the left edge.
I would like to automatically centre the icon-text chain, optionally selecting the distance between them. For buttons of the same width with different text lengths this is the best option.
But of course, this is not the highest priority.