Apps Sidebar personal apps doesn’t show up

sidebar personal apps doesn’t show up.

I have activate the apps but only see at personal apps chat and g meter, but activate al other apps but dont show up like sol or camtool
 
this doesnot work
 

Attachments

  • Desktop Screenshot 2021.10.11 - 16.55.31.82.png
    Desktop Screenshot 2021.10.11 - 16.55.31.82.png
    606 KB · Views: 95
  • Assetto Corsa Screenshot 2021.10.11 - 16.57.11.10.png
    Assetto Corsa Screenshot 2021.10.11 - 16.57.11.10.png
    386.9 KB · Views: 91
Last edited:
@Neswo @klaasvrm

Hi mates,
I also had the same problem some hours ago until I realized I was doing something wrong so the app didn't initialize properly.
Make sure you create a folder with de app name, let's say <Test>, then your python script must have the same name that the folder in which is contained, in this case, <Test.py> (is case sensitive so make sure to respect uppercases)

Below I copy the most basic piece of code which works perfectly for me (I just tested it before writing this)

import ac
import acsys
import sys

appName = "App"

def acMain (ac_version):
appWindow = ac.newApp(appName)
#ac.setSize(appWindow, 200, 200)

ac.console("Everything works perfect")
ac.log(appName + ": acMain complete")

return appName
 
Last edited:

Latest News

What is the reason for your passion for sim racing?

  • Watching real motorsport

    Votes: 413 69.2%
  • Physics and mechanics

    Votes: 261 43.7%
  • Competition and adrenaline

    Votes: 282 47.2%
  • Practice for real racing

    Votes: 124 20.8%
  • Community and simracers

    Votes: 165 27.6%
Back
Top