Jump to content

toe_head2001

Administrator
  • Posts

    5,013
  • Joined

  • Last visited

  • Days Won

    154

Everything posted by toe_head2001

  1. Concerning variables declared in sequence... I got the variable parser to successfully detect them. It even works on complex cases like this: PointF selCenter = new PointF { X = selection.Left + selection.Width / 2f, Y = selection.Top + selection.Height / 2f }, VP = new PointF { X = (float)(selCenter.X + Amount4.First * selCenter.X), Y = (float)(selCenter.Y + Amount4.Second * selCenter.Y), }; selCenter and VP both detected, without any false positives. @Pratyush
  2. The "Build" button in CodeLab is, in essence, more of an "Execute" button. You need to use the "Build DLL" button. You can find it in the Toolbar, and in the File menu. https://forums.getpaint.net/topic/111233-codelab-for-average-users-a-laymans-guide/#buildDll
  3. You are using the wrong registry hive. The plugin is checking in LocalMachine, not CurrentUser. Specific keys it looks at are 'GS_DLL' and 'GS_LIB'. That's all the help you're going to get with this. If you can't figure it out, you'll just have to install Ghostscipt. Where did you find that package?
  4. What security software are you using? Windows Defender? AVG? Norton? something else? This saving error happens for every file, or just certain one(s)?
  5. No need to shorten it. Just click within the box, and copy & paste the path. Looks like it would be something like: C:\Users\nalso\Desktop\Sig\Image.png
  6. Howdy @Kdonn, Right click on a .PSD file and select 'Open with...', and choose the paint.net program.
  7. I changed it to a verbatim string, so the double slashes are no longer needed.
  8. It seems AutoComplete is broken if Find is being used. Oops. Fixing for the next release.
  9. I've made some minor code improvements to your script.
  10. I would recommend using the Median effect. https://www.getpaint.net/doc/latest/EffectsNoiseMenu.html#6
  11. Looks like it's probably using the Highlight system color for both. Yeah, I would agree, the opacity ought to be lowered for the hovering color. This also affects the MDI thumbnails at the top of the program. Are you really going to let that make you miserable? I hope, for your well being, that was hyperbole.
  12. Are you saying nothing gets placed on the Clipboard when you use the Copy function in paint.net? Copy doesn't add anything to the History window, since copying doesn't actually modify the image.
  13. I don't know, do you? When you right click on an image, you should see a 'Preview' option and an 'Edit' option. Do you have both options?
  14. What else can you tell us? Have you enabled some extra "security" software? Is the file readonly? Are you saving to a virtual location, like OneDrive, or DropBox?
  15. The option is offered during a custom installation. Reinstall it if you have to.
  16. You need to save in an image format that supports transparency. It is recommended that you use the PNG format.
  17. Your paint.net installation is broken. You can use this utility to remove the broken installation: https://support.microsoft.com/en-us/help/17588/fix-problems-that-block-programs-from-being-installed-or-removed Afterwards, you can install paint.net anew. That version is not supported. You need to install the latest version: v4.0.21.
  18. You may vote for up to 4 entries. Poll will close on at 2300 UTC (11:00 PM UK Time) on Monday, February 12 See the Countdown for exact time remaining.
  19. Some programs place a File Lock on files, some don't. Age has nothing to do with it.
  20. I see no glitch. Does it eventually display an error message or a crash log?
  21. Try installing the .NET Framework first. https://www.microsoft.com/en-us/download/details.aspx?id=56115 Then install paint.net afterwards. https://www.dotpdn.com/downloads/pdn.html
  22. Don't declare types in the call. Change: sf1 = SmoothingFactor(int k, int stepR); to: sf1 = SmoothingFactor(k, stepR);
×
×
  • Create New...