Radial quick access menu :- icon size problem ( tried everything)

this is the script and the question is in image embedded.

async function retrieveJSON() {
  let menuItems = [];

  // Your template UUID for styling
  let templateUUID = "BFBD1B46-0E72-49CF-B4DB-C2CB017E82B2"; 

  let musicApps = [
    {
      templateItemUUID: templateUUID,
      action: 'js::(async () => {runShellScript({script: "open -a Music"})})()',
      icon: 'path::/Users/mayankkaushik/Documents/Image-Line/FL Studio/Projects/Templates/my templates/icons/apple-music.png::width@@100::height@@100'
    },
    {
      templateItemUUID: templateUUID,
      action: 'js::(async () => {runShellScript({script: "open -a Spotify"})})()',
      icon: 'path::/Users/mayankkaushik/Documents/Image-Line/FL Studio/Projects/Templates/my templates/icons/spotify.png::width@@100::height@@100'
    },
    {
      templateItemUUID: templateUUID,
      action: 'js::(async () => {runShellScript({script: "open \\"https://soundcloud.com/recipesofromiyo\\" "})})()',
      icon: 'path::/Users/mayankkaushik/Documents/Image-Line/FL Studio/Projects/Templates/my templates/icons/soundcloud.png::width@@100::height@@100'
    }
  ];

  let templates = [
    {
      templateItemUUID: templateUUID,
      action: 'js::(async () => {runShellScript({script: "open \\"/Users/mayankkaushik/Documents/Image-Line/FL Studio/Projects/Templates/my templates/Main_template.flp\\" "})})()',
      icon: 'path::/Users/mayankkaushik/Documents/Image-Line/FL Studio/Projects/Templates/my templates/icons/Main_template.png::width@@100::height@@100'
    },
    {
      templateItemUUID: templateUUID,
      action: 'js::(async () => {runShellScript({script: "open \\"/Users/mayankkaushik/Documents/Image-Line/FL Studio/Projects/Templates/my templates/Empty.flp\\" "})})()',
      icon: 'path::/Users/mayankkaushik/Documents/Image-Line/FL Studio/Projects/Templates/my templates/icons/Empty.png::width@@100::height@@100'
    }
  ];

  menuItems = [...musicApps, ...templates];

  return JSON.stringify(menuItems);
}

Just a clarification question - why are you not using the "Icon" configuration in the Floating menu itself:

its because this is based on script .....and for every action I have included here must have their own icon ....

have u tried this icon feature? does it work? ( im not pro in using btt....so just need help with this radial menu ...and as its a preset I got here ....someone may know the solution)

Sorry, I'm still not sure what do you mean. Have you checked this and this ?

I'm using the following radial floating menu.

1 Like

does your template item maybe have a fixed icon size set?

@xidiot, he is using a script generated floating menu (Simple JSON Format · GitBook ), however I agree that he probably should just use the standard UI to create the menu - especially if he doesn't use any of the scripting capabilities

1 Like

okay ...now I found my solution

thank you @xidiot and @Andreas_Hegenberg