Jump to content

Nicolò Blunda

Members
  • Content Count

    33
  • Joined

  • Last visited

Everything posted by Nicolò Blunda

  1. Nicolò Blunda

    FMX Form On maximize event

    Thank you very much. Maybe it is an effect of different Embarcadero RadStudio version? I work with 10.4...
  2. Nicolò Blunda

    FMX Form On maximize event

    Thank you very much. Your code works on Windows but only to show message (like that your have insert). But if you want, for example, to show or hide control like this TThread.ForceQueue(TThread.CurrentThread, procedure begin if ord(self.WindowState) = 2 then labe1.visible:= false else labe1.visible:= true; end); code works only utlil maximization oparation is performed. When form is reset to original dimensions, code don't works. Regards.
  3. Nicolò Blunda

    Restore old SDK macOS

    Hi. After download macOS SDK 12.3 from remote Monterey machine, app compiled and deployed with Firemonkey 10.4 don't works (after launch, they closes suddenly). I want to switch in Embarcadero framework (with SDK manager tool) to prevoius SDK 11.3, but it seems that only with mac with prevoius macOS this is possible (via PAServer). It is incredible that SDK 11.3 files folder is again in $(BDSPLATFORMSDKSDIR) dir, but "switch" is not possible... There is a workaround for this issue?
  4. Nicolò Blunda

    Restore old SDK macOS

    Thank you very much. But my problem is not to switch between differents versions of XCode ON MAC machine, but between differents macOS SDK profiles in EMBARCADERO SDK Manager. Folder with all files necessary for deploy with SDK 11.3 is already in my file sistem, but seems there is not a way to say at Embarcadero to use this version. Change of selcted folder don't affect SDK version employed, that remains last downloaded from MAC.
  5. Nicolò Blunda

    Get copyright info from code in macOS

    Hello. With this code (working on macOS) I get application version info: VersionInfoString:= (TNSString.Wrap(CFBundleGetValueForInfoDictionaryKey(CFBundleGetMainBundle, kCFBundleVersionKey))).UTF8String; I want to retreive the copyright info too. In info.plist the copyright string is the NSHumanReadableCopyright key value. It is possible to adapt code above to get it?
  6. Nicolò Blunda

    Get copyright info from code in macOS

    Thank you a lot!
  7. Nicolò Blunda

    Scale hidden object

    Hello. I want to make responsive my WIN/MACOS application. If control's Align property is setted to Scale value, all works fine: object dimensions scale correctly and the Form is resized. But if an object is in hidden state (Visible;= False) it not follows scaling and when is showed runtime (setting Visible:= True) his position/dimension is the same as befolre resizing. There is a way to scaling object not visible?
  8. Nicolò Blunda

    Scale hidden object

    FInd the solution! It is necessary to keep Object always in visible state and act on Opacity parameter: Object.Opacity:= 0 to hide Object and Object.Opacity:=1 to show it..
×