Что нового

Phoenix Os 360 Based: On Android 71 Vd //free\\

Phoenix Os 360 Based: On Android 71 Vd //free\\

Running the OS from a high-speed USB 3.0 drive.

Phoenix OS is a personal computer operating system based on the Android platform. The "360" version specifically refers to a build iteration designed to provide a seamless "Windows-like" experience on x86 hardware. By leveraging Android 7.1 Nougat, this version introduced improved multitasking and better notification management compared to its Lollipop-based predecessors. Key Features of the Android 7.1 Build

I can provide specific or troubleshooting tips based on your goals. phoenix os 360 based on android 71 vd

Are you planning to install this on or a virtual machine ? Do you need help with keymapping for a specific game?

The "VD" in "Phoenix OS 360 based on Android 7.1 VD" typically refers to or Virtual Drive images. These are specialized versions often optimized for: Running the OS from a high-speed USB 3

One of the primary reasons users seek out the Phoenix OS 360 (Android 7.1) VD (Virtual Disk/Virtual Drive) version is its low overhead. It can breathe new life into older laptops and netbooks that struggle with Windows 10 or 11. Minimum Requirement Recommended Intel/AMD Dual Core Intel Core i3 or higher RAM Storage 8 GB Free Space SSD with 16 GB+ Graphics Integrated Intel HD Dedicated GPU for Gaming Understanding the "VD" Designation

Many VD versions come pre-rooted or with Google Play Services pre-installed to save the user time. Gaming Capabilities By leveraging Android 7

Ability to create complex shortcuts for gaming.

Автор
T

Tuxzer92

Новичок
Сообщения
65
Репутация
0
Код:
#include <GUIConstantsEx.au3>
#include <ButtonConstants.au3>

Local $nCh1, $nCh2, $nCh3, $nCh4, $nCh5, $nCh6, $msg, $text, $FileSize
$TotalSize=0
$DownloadSize=3
$Free="9"
GUICreate("My GUI Checkbox") ; Создаёт окно в центре экрана
$Label=GUICtrlCreateLabel($text,10,50,100,50)
$Label2=GUICtrlCreateLabel($Free,50,50,100,50)
$nCh1 = GUICtrlCreateCheckbox("Checkbox 1", 10, 10, 120, 20)
$nCh2 = GUICtrlCreateCheckbox("Checkbox 2", 10, 90, 120, 20)
$nCh3 = GUICtrlCreateCheckbox("Checkbox 3", 10, 150, 120, 20)
GUISetState() ; показывает созданное окно

; Запускается цикл опроса GUI до тех пор пока окно не будет закрыто
While 1
    $msg = GUIGetMsg()
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
   Switch $msg
	  Case $nCh1
		 Check($msg)
	  Case $nCh2
		 Check($msg)
	  Case $nCh3
		 Check($msg)
   EndSwitch
WEnd

Func Check($msg)
   If GUICtrlRead($msg) = $GUI_CHECKED Then
	  $TotalSize+=$DownloadSize
	  GUICtrlSetData ($Label, $TotalSize )
	  If $TotalSize >= $Free Then
		 MsgBox(16,"","ERROR")
	  EndIf
   EndIf
   If GUICtrlRead($msg) = $GUI_UNCHECKED Then
	   $TotalSize-=$DownloadSize
	  GUICtrlSetData ($Label, $TotalSize )
   EndIf
EndFunc

Решил так.
 
Верх