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: 91
  • 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: 90
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 would be the ideal raceday for you to join our Club Races?

  • Monday

    Votes: 11 14.7%
  • Tuesday

    Votes: 9 12.0%
  • Wednesday

    Votes: 9 12.0%
  • Thursday

    Votes: 11 14.7%
  • Friday

    Votes: 31 41.3%
  • Saturday

    Votes: 38 50.7%
  • Sunday

    Votes: 33 44.0%
Back
Top