57,368 questions
0
votes
0
answers
23
views
Automation using fla ui and wouldn't able to see only some fields
I have tried on fla ui for a windows application but while I try to see them on inspect tool. We couldn't see them inside the all elements why I don't know. Is there any other way we can identify ...
Advice
0
votes
3
replies
103
views
How to improve Edit button? ULBlazordex
Thank you. For your help, I moved my question to another tag.
Advice
0
votes
2
replies
54
views
Learning Batch to automate basic steps in Windows 11
What would y'all say is the fasted way to learn and use batch?
I've started with a few basic scripts to automatically open a few programs on startup,
Additionally a generic matrix scrolling text thing ...
Best practices
0
votes
2
replies
75
views
CSS best practises and when to use each
I run into css's different snippets often that make up for the same functionality, I feel confused about when to use each, that's haunting to me
Do you recommend me watching with a tutorial along, ...
3
votes
1
answer
85
views
Configure cv2.imshow() window to show image only
I'm resizing and displaying an image using OpenCV:
resized_result_img = cv2.resize(result_img, (0, 0), fx=RESIZE_FX, fy=RESIZE_FY)
cv2.imshow("img", resized_result_img)
But the window that ...
Advice
1
vote
2
replies
75
views
I am looking for a GUI tool similar to win32 API Spy for a popular linux distro such as Linux Mint
Does anybody know the name of a software tool with GUI friendly interface that helps me map calls like that on Windows, for Linux instead using system tracing related to the GUI and it's components, ...
0
votes
0
answers
106
views
I want to rearrange the display of an inventory
This method in the Game class makes the inventory by adding a button for each item in the inventory of the player (and adds the listener for each one, to handle the actions later). Sometimes it has to ...
0
votes
0
answers
74
views
How can I find the scopes for UI in VS Code?
I've been making my own theme in a .json file, and I've been having trouble finding out how to target different UI elements in the window in VS Code.
For example, I don't know what scope targets the &...
0
votes
1
answer
72
views
Problem Flet Python code : expand option not working
Please can anyone see why the three cards I am adding are not expanded horizontally, vertically its perfect, but horizontally I tried lot of things and it didn't make them stretch to fill all the ...
Advice
0
votes
6
replies
128
views
New Beginner starting in flutter advice needed
I have started with dart and learnt basics and started with flutter ui and done with basic components, I am at ground zero I don't know what to do next ,what people do to become a professional ...
Advice
1
vote
3
replies
87
views
Python layout: how to draw a box around a frame?
I'm new to Python and am working with GUI's and layouts. I've got the hang of the basic layout widgets and adding buttons and things to them. How would I make a classic box around a layout of buttons ...
1
vote
1
answer
101
views
Cairo rendering to Xlib surface paints garbage in transparency?
I'm trying to render a basic image to a window with Cairo. I set up the window, then paint the image to it as I normally would:
#include <threads.h>
#include <time.h>
#include <X11/...
Advice
0
votes
0
replies
36
views
Any real-world use cases or analogies for “Iranian rug” patterns in algorithms or data structures?
I recently came across the idea of using “Iranian rug” patterns as an analogy in computing (for example, structured repetition, symmetry, and layered design), and it got me thinking about whether ...
-2
votes
1
answer
113
views
Display status bar in android app using Unity
I'm new to app development and using Unity 6.4 and its UI Toolkit for creating an android app.
I want my android app both to display the android status bar (on top) and the navigation bar (at the ...
0
votes
2
answers
89
views
How to stop Cairo/X11 from flickering when resizing?
I'm trying to make a GUI app with Cairo, but whenever I resize the main window specifically inward, the background colour flickers in for a frame. There's a similar question about this, How to avoid ...