Questions tagged [appjar]

Appjar is a cross-platform Python library for creating Graphical User Interfaces. It's not a builtin module, so you will have to install it before you can use it.

25 questions
2
votes
1 answer

Why is my autoclicker in python not working?

I'm still a newbie, don't be angry if I make some mistakes :) So, I wanted to code an auto clicker with a little interface, where I can enter the size of the interval between each click. Here's the code: import pyautogui import…
LUGG4S
  • 45
  • 5
2
votes
2 answers

How to make python alarm run in background without making application wait on it?

I'm using appjar to create a python app that includes the feature to set an alarm to go off at a certain time/date. However, based on my simple implementation, when calling the alarm function in the code the application will just infinitely wait for…
2
votes
1 answer

appJar - ListBox/OptionBox widget call a function on select

I recently started playing with appJar python module and I got stuck using its widgets, namely ListBox http://appjar.info/pythonWidgets/#listbox and OptionBox http://appjar.info/pythonWidgets/#optionbox. I am not able to find out, how to call…
Kube Kubow
  • 398
  • 1
  • 6
  • 18
1
vote
1 answer

selenium.common.exceptions.InvalidArgumentException: Message: invalid argument error invoking get() using Selenium Webdriver through Python

I am making a GUI that asks for a search, goes to Ebay and finds the average price for that search. But I can't get it to open Selenium. But just cannot find an answer. What am I supposed to do? Here is my error: Traceback (most recent call last): …
TheBotlyNoob
  • 369
  • 5
  • 16
1
vote
1 answer

Don't understand cause of this AttributeError: '_Screen' object has no attribute 'setimage'

The code I have is: import time import turtle from turtle import * from random import randint #GUI options screen = turtle.Screen() screen.setup(1000,1000) screen.setimage("eightLane.jpg") title("RACING TURTLES") The error message that comes up…
Brad
  • 21
  • 6
1
vote
1 answer

File picker opens without button click on subwindow

I want to show a login screen. Once login is successful, I want to show a window with a button. If I click on the button a file picker should open. With my code, what happens is that after logging in correctly, the file picker opens directly,…
Joel G Mathew
  • 7,561
  • 15
  • 54
  • 86
0
votes
1 answer

appJar keyboard events while the window is not focused - Python

I'm trying to write some code that checks if any keys are pressed while we have a GUI with appJar and it's not focused. So if the "v" key is pressed it will write something to the console while we are focused in the program window, but I want…
Ale
  • 17
  • 9
0
votes
0 answers

How to get appjar's .saveBox directory and filename?

Im trying to make a txt file creator using appjar.saveBox, but if the user sets a custom filename it cannot be grabbed. I want to grab the filename, so there can be content inside of the file. Here's the code i tried: def pressing(button): if…
iv1x
  • 1
  • 4
0
votes
0 answers

Get the percentage of how many bytes I have already read in python

I wrote this code that should give me the percentage of how many bytes I already read from a file a give in input thanks to AppJar. However, when I try to set the value of the bar it goes from 0 to 190% that obviusly is not what I want. Can someone…
Gabbo
  • 11
  • 1
  • 5
0
votes
1 answer

Is there a faster setLabel method in appJar

I'm making an app to view CAN data from a car using appJar. I have a thread getting the CAN buffer then sending it to the main loop using queueFucntion. the function queued to the main loop iterates threw the buffer and sends the data to the Label…
user8015732
0
votes
1 answer

Appjar label won't update

link to code in pastebin I'm new to Python, and I attempted to create a calculator application. I'm using the Appjar library for my calculator GUI. The calculator works fine, but the appjar label "bar" will not update, despite changes in the…
0
votes
1 answer

Appjar AutoEntry not working inside a subWindow

I am trying to create a GUI to navigate RNAseq data. It asks the user which species, then to select cell types (new subwindow), then genes (new subWindow opened upon button press from cell types window). The gene selector portion works when it…
user2312820
  • 53
  • 1
  • 4
0
votes
1 answer

Python appJar not updating UI after network response

I'm a bit rusty with python, so hopefully I'm just doing something silly. I'm trying to create a simple weather widget using appJar and the OpenWeatherMap, and the UI isn't updated as expected when the network response returns. I read the appJar…
Mason
  • 6,893
  • 15
  • 71
  • 115
0
votes
1 answer

Use button function to open file browser and display image files

I am totally new to Python and I am having some trouble figuring out how to open and display an image file from the file browser. I tried to use appJar and Tkinter. From Tkinter, I can select the image file, but the iamge will not be…
0
votes
1 answer

Restrict File Types when selecting files in AppJar

I am creating a data import module and I need to restrict users to uploading only Excel workbooks. I'm using AppJar for the GUI app = gui('File Selection', '600x600') app.addImage("Company", "appJar/company.gif") app.zoomImage("Company",…
emmartin
  • 105
  • 12
1
2