Skip to content

Commit

Permalink
Hide command prompt window
Browse files Browse the repository at this point in the history
  • Loading branch information
Firebladedoge229 authored May 25, 2024
1 parent bb288c0 commit 56a6bca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions robloxstudiomanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import sv_ttk
import requests
import threading
import subprocess
import tkinter as tk
import xml.etree.ElementTree as ET
from tkinter import ttk, messagebox
Expand Down Expand Up @@ -66,13 +67,13 @@ def reset_fflags():
open(app_settings_path, "w+").write("{}")

def installation_folder():
os.system(f'explorer "{selected_version}')
subprocess.Popen(f'explorer "{selected_version}', shell = True)

def launch_studio_async():
os.system(f"{selected_version}\RobloxStudioBeta.exe")
subprocess.Popen(f"{selected_version}\RobloxStudioBeta.exe", shell = True)

def update_studio_async():
os.system(f"{selected_version}\RobloxStudioInstaller.exe")
subprocess.Popen(f"{selected_version}\RobloxStudioInstaller.exe", shell = True)

def update_settings():
t = threading.Thread(target=update_settings_async)
Expand Down

0 comments on commit 56a6bca

Please sign in to comment.