

ToddFrankson
Members-
Content Count
72 -
Joined
-
Last visited
-
Days Won
1
ToddFrankson last won the day on November 29 2024
ToddFrankson had the most liked content!
Community Reputation
8 NeutralTechnical Information
-
Delphi-Version
Delphi 12 Athens
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Does anyone know a delphi component that can play videos from a stream
ToddFrankson replied to ToddFrankson's topic in VCL
I've been working with him to get them up and running. Haven't had the time to get back with him -
Android. TDirectory.GetFiles('/storage/emulated/0/DCIM/Camera') returns an empty list
ToddFrankson replied to dmitrybv's topic in Cross-platform
I'm no expert but that looks like you have not gotten permissions. -
Android only shows the FMX logo for my app
ToddFrankson replied to GabrielMoraru's topic in Cross-platform
Delphi 12 does not explicitly support Android 8. Androids SDK and NDK change all the time and things that worked with earlier versions of Delphi may or may not work now. It has more to do with Android and it's changes than Delphi. -
I am distributing outside of the Apple Store for this Macos product. I need to install the app and its supporting files in a specific way. Pkg files don't do that, and I could add it to the app though, on startup... Just would prefer a real look and feel installer
-
Does anyone have recommendations for a MacOS installer? Something along the lines of Installshield for Mac??
-
Me Either.
-
Me too. Some of the other platforms make no sense to me. Especially the API's
-
Thanks, I found that too. I was hoping it was not accurate.... Now to look for another way to do what I need....
-
So I use the following code on windows: ... FileMk:THandle ... If ((FileMk=INVALID_HANDLE_VALUE ) and System.SysUtils.FileExists(tempName)) then FileMk:=FileOpen(tempName,fmExclusive or fmShareExclusive); ... Works Fine on windows. For the average person they can't copy the file, open the file, rename the file, etc.... It doesn't work on MACOS. I have been looking all over the interwebs and really haven't found much. Does anyone know how to accomplish the same feat on MacOS?
-
So you didn't, and therefore you don't know what they stated about the 64bit IDE, yet you complain..... They specifically stated that you should use the 32bit IDE and play with the 64 bit. Just like everyone who complains they don't test the IDE enough, they are giving us the chance to catch more issues now so when they actually release it, those issues aren't there.
-
The webinar was completely forthcoming about the release of 64bit IDE. Did you not watch it?
-
I have had some issues,.... Installed- Errors opening 64 bit IDE, and no ability to add 64bit Platforms to projects. Uninstall, install- Same issues.... Took 5 Install /Uninstall cycles to get it to work. Sent the screen shots to Embarcadero in a case.... I was however happy to not have to reinstall all my previous components and getit packages.
-
Did you select it in the Manage Features? (right hand side during install). It's not installed by default
-
And it's the same codebase as the 32bit IDE, just compiled as 64 bit.
-
Google Requiring use of a "picker" for Android Apps that access Images/Videos
ToddFrankson posted a topic in FMX
Per: https://support.google.com/googleplay/android-developer/answer/14115180 Seems Google released a Picker that MUST be used if your app doesn't use Images/Media as core functionality. Anyone Ported it yet?