ginnix
Members-
Content Count
23 -
Joined
-
Last visited
Everything posted by ginnix
-
I have Rad Studio 12 with the new patch. When I try to install the Android runtime using Manage features it shows operation successful but nothing gets installed. I also checked C++, same thing, operation successfully but nothing gets installed. Any info would help.
-
When is the inline release?
-
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
It's incredible this is still down. -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
My problem is, I went to install C++ and it uninstalled my Android then it could not connect to the server. Also, C++ never installed since it could not connect to the servers. This happened about a week ago when the servers were down which I did not know about. How do I install the android runtime? If I use the ISO it wants to uninstall everything. My original install was using the web version. Thanks -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
So, it has been down now for 2 weeks? -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
Any eta on when this is going to be fixed? -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
Just tried Rad Studio Wiki and it is also working for me. Hope they have this all fixed up soon. -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
Why is it taking so long to get this working? -
FYI - Several Embarcadero services are currently unavailable
ginnix replied to Keesver's topic in General Help
How long has it been down now? I just noticed it two days ago, still down for me. -
I am using 11.2 and XCode 14 beta 6 and have successfully submitted my program to the app store. Just waiting for review and hopefully it gets accepted. Note: This is on Ventura Beta. Thanks
-
MacOS: How to remove ambiguous Developer ID certificates?
ginnix replied to Alexander Halser's topic in Cross-platform
You can delete them using keychain on your Mac. -
Hi All, I have this record Type type TCustomer= record CompanyName:String[255]; SpotsAllocated:Integer; LicensePlates:String[255]; Parked:string[255]; end; var myFile:File of TCustomer; CompanyDataBase:array[1..100] of TCustomer; To save the information once the record is populated I use AssignFile(F, 'c:\tmp\test.txt'); Rewrite(F); for i := Low(CompanyDataBase) to High(CompanyDataBase) do Write(F, CompanyDataBase); CloseFile(F); This seems to work, I can see the data in the text file. My problem is reading this back. I am stuck on how to read the data back into the program. Any tips appreciated. Thanks
-
iOS, Metal, Bitmaps, RGB becomes BGR?
ginnix replied to John van de Waeter's topic in Cross-platform
There seems to be a problem with Skia and GlobalUseMetal under ios when you use both in a project. The problem happens when you send the image to the photos app. if not TPlatformServices.Current.SupportsPlatformService(IFMXPhotoLibrary, Service) then exit; Service.AddImageToSavedPhotosAlbum(Image1.Bitmap); The colors are wrong when you view the bitmap in Photos Thanks -
iOS, Metal, Bitmaps, RGB becomes BGR?
ginnix replied to John van de Waeter's topic in Cross-platform
It does not seem to work with the CameraComponent. When I use Skia all the colors are wrong. When I disable Skia everything works. -
Make sure you have set all the right permissions for your app.
-
iOS, Metal, Bitmaps, RGB becomes BGR?
ginnix replied to John van de Waeter's topic in Cross-platform
I download version 3 and everything is working. Is there an example on how to move a Timage to the Skia canvas? Thanks for this great software 🙂 -
iOS, Metal, Bitmaps, RGB becomes BGR?
ginnix replied to John van de Waeter's topic in Cross-platform
I used the Getit Package manager to install Skia. When I use GlobalUseSkia:=true I get [DCC Error] MultiPic.dpr(31): E2003 Undeclared identifier: 'GlobalUseSkia' Thanks -
When you use Xcode to test, make sure you turn off "Automatically manage signing" under Signing & capabilities. Then see if you get any errors.
-
That happened to me, I found out the provisioning file was incorrect. I deleted and created new provisioning information and everything started working properly. The best way to test is to create an dummy Xcode project with your Bundle identifier and certificate and see if it works in Xcode.
-
The simulator does not work in Delphi 11, you will need a real device.
-
Hi All, I am developing a small app for ios. I have an image that I zoom in with this code. LImageCenter := ImgCameraView.Position.Point + PointF(ImgCameraView.Width / 2, ImgCameraView.Height / 2); ImgCameraView.Width := CamWidth*Zoom; ImgCameraView.Height := CamHeight*Zoom; ImgCameraView.Position.X := lImageCenter.X - ImgCameraView.Width / 2; ImgCameraView.Position.Y := LImageCenter.Y - ImgCameraView.Height / 2; The problem I am having is, when I save the image the zooming is ignored and the original image is saved. How do I save the image with the zooming effect? Thanks
-
iOS, Metal, Bitmaps, RGB becomes BGR?
ginnix replied to John van de Waeter's topic in Cross-platform
This is also happening with my app taking photos. When I include Metal support some of the colors are off. When I disable it, the color are right. Thanks