Find solutions to your problems and answers to your questions.
Recently active
Hey everyone!I’m looking to upgrade from my old tape measure and want recommendations for a reliable digital measurement tool.I mainly do woodworking and some home DIY projects, so accuracy and ease of use are key. I’ve seen laser distance measurers and digital calipers online.I want to start measuring more efficiently and precisely, especially when working with tight spaces or tricky angles. How do these tools perform in different lighting or surface conditions?Any features I should look out for? Appreciate any input or real-world experiences.
Since the liquid glass update, when I click on typography settings, they don’t open.
Hello, I began working on a Make project (AI project). In parallel, I asked for the activation of an education plan. Since the education plan was validated I cannot work anymore on my project since the Make feature is not available in this plan. How can I regain access to it so that I can continue working on it?
Hi Everyone I have recently paid for a Figma pro plan annual. I was able upload videos on the Figma file no problem, but now I suddenly can no longer upload any videos. It says I need to upgrade to a pro plan. But I am already on that plan. Has anyone experienced this? Anyone in Figma can help with this issue?
Hello community, I ran into a little problem and have a quick question. At first I made this simple text button with variables I configured every parameter on the button with variables and now I can switch button size (with icons, text size, etc.) to S, M, L, XL sizes easily.However if I make split button like this with text button + icon button grouped together, my sizes of S,M,L, XL doesnt work anymore, I have to click every button inside nest and change appearance via variables individually, is it possible to change all grouped elements via variables at once?
Hi everyone,Just purchased a file, the purchase went through and…. Nothing. The file didn’t open and I can’t find it anywhere. Is there a place in Figma where all the purchases files are listed? I found the file I ‘bought’ through the Community browser and it still says “Buy for ...”, I can’t download it. I have a receipt.
Hello! I’m using the latest version of Figma on my education account and have activated AI, but I don’t see the AI prompt in the toolbar for creating prototypes, designs, or suggesting auto layout. Does anyone know why these features might not be available?
Can you please help me change my Student Account to a Starter Account?
Sometimes I have this error, don’t know why. Worked fine from monday to thursday, now down again since Friday. any ideas? Tried to clear cache, tried to use incognito, tried different browser, tried the app. Nothing worked. -Not using any VPNs, adblocker is turned off for figma. Everything else seems to work fine except Plugins.
Hello everyone, I need urgent help.A few days ago I created a FigJam board and restricted access to "Only people invited". I was the only person with access. After refreshing the page, I can no longer access the file — it shows me the "Request access" screen, even though I'm logged into the same account I created it with.I only have one Figma account and I never shared the file. It contains important data I need to recover.Here is the link to the file: https://www.figma.com/board/8HePk3HFj37jLmcAA4vzCT/Untitled?fuid=1205432281741479638Please help me understand how to regain access. I’d be incredibly grateful.
It doesn’t let me design
Hello! I upload the screenshots to a file, but over time the picture disappears. How to fix this?It was Moodboard page and I spent lot of time to create it...
I just upgraded Figma to get the full seat, but whenever I try to go to dev mode, it asks me to upgrade the account… Could you please help?
I just created a new Figma account, but I’ve actually been using Figma for quite a while and am pretty familiar with it. I was hoping to start selling design files through the Community using this new account.But I noticed that the option to sell files isn’t showing up yet. Does anyone know if there are certain requirements before this feature becomes available? Like, do I need to upload some free files first, have a certain number of followers, or let the account be active for a while?
Hello everyone,I have a problem viewing my invoices from Figma. I had a professional plan for almost a year, now since is enough for me, I switched back to the free plan. However now that I am on the free plan I can’t view my past invoices because the admin panel is not available. I would need those invoices for corporate tax filing. Since I am on the free plan I can’t even contact someone. The AI chatbot suggested me to upgrade my subscription to view my past invoices.. 🙃Someone knows I can fix this?
Hello Figma team,I’m one of your users and I’ve created a very important file for our company in Figma. Unfortunately, the file is now locked due to the limitations of the free plan, and I am unable to perform any action on it — not even saving, duplicating, or deleting extra pages.Sadly, our company is currently unable to purchase a Pro account. We just need temporary access to unlock the file, so we can remove the extra pages and continue working with it.Please, if possible, provide temporary access or any solution to unlock this file. It is essential for our ongoing project.Thank you for your support and understanding.
Hello :) I use the Figma starter version for personal designs. I’ve created a presentation to publish for the community. But I don’t see the “publish to community” button on that file. I am the owner of the file and did check the Figma guidelines and rules on publishing. Can someone help out here?
Hello, i have problem, i would to like make a menu for dashboard and prototype it. I would to prototype it like in real menu in programmed live version. So when i select one part in menu then rest part of menu should be deselected, the links of menu should also go to seperate views of application. I have prepare componets for menu and prototype it to one choise, and make componet for menu, the problem is that i can use one option for "click action" for one element. please helphttps://www.figma.com/design/vwEKkbFiclwPZemiM2VecH/Otis-buckup?node-id=11-1129&t=0YD7V1Lc0UTmCqPE-1
i have not been able to use figma make today. it saysand i did not even get to use it!i never used it today and it just locked me out.wowwww totally good product design figma. JUST CUZ I OPEND FIGMA AT 5:50 AM DOES NOT MEAN YOU SHOULD LOCK ME OUT. PLEASE. FIX THIS.
Hey,Figma Make has started doing this weird thing where in between during changes or updates to the code, it erases previously established major chunk of features with Hello World or something else in the App.tsx file. It just basically erases it and does not realize until mentioned otherwise in the new prompt. This has been happening very often now since my last 2 projects and few prompts. The above image is an example from one of my recent projects in Figma Make. I was building a huge movie tracker and during one of the changes, it just removed the major chunk of the app. When I mentioned it next in a prompt, this is what it replied as.Kindly fix this.
I have two buttons and they have same animations. I want to first one has same transition like the second one. The first one has hard transition on corner. I'm confused. You can check from here
I’m trying to make a basic plugin to edit the contents of a text node:(async () => { console.log("1"); const node = figma.currentPage.findOne((node) => { return node.name == "TARGET_NODE"; }); if (node != null && node.type == "TEXT" && !node.hasMissingFont) { console.log(node.characters); await figma.loadFontAsync(node.fontName as FontName); // hangs here console.log("3"); node.characters = "SUCCESS"; } else { console.log("4"); }})();The code runs fine and finds the right node, but it hangs indefinitely when I try to load the font with the error “there are still font loads in progress. Please ensure closePlugin is not called until after the font loading has resolved.”. I’ve tried multiple fonts including basics like Times New Roman, but it can never seem to successfully load the font.I saw a similar question posted a couple years ago but it didn’t get any traction: I’m definitely not a typescript expert, am I missing a step somewhere?
Over the past week, I've been having a problem exporting images. Some parts of the text or frames are shifted by a few pixels, as if they were cut out.At first, I thought the problem was with the font, but it turns out that this problem occurs with any font.I tried all methods, but the only solution I found was to shift the text and frames by a couple of pixels.Has anyone encountered a similar issue and knows how to resolve it?The text and frames have integer values without fractional parts and are tied to the pixel grid.Changing the file type to JPEG or PNG does not help either.
I can no longer copy an image from one Figma frame to another. If I want to replace an image I usually click into a frame, open the fill so I can see the image thumbnail, then copy and paste it over an existing image, then delete the old image underneath. This function no longer works, meaning that replacing images is going to take much much longer.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.