-
Posts
83 -
Joined
-
Last visited
Reputation Activity
-
Roman reacted to RTFC in CodeCrypter - Encrypt your Script
Found the issue, which was indeed a bug. Please stand by for an updated bundle...
CodeScannerCrypter bundle version 2.4 is now released, with many thanks to @Roman for flagging the bug.
-
Roman got a reaction from FrancescoDiMuro in CodeCrypter - Encrypt your Script
Ok, I did exactly what you wrote, but I have the same failure.
Created a simple "Hello World" script with file name Test.au3 #include <MCFinclude.au3> MsgBox(0, "", "Hello World")
Let run codescanner.au3 over it; on the end I got a window "Code Scanner Main Menu" which I closed. Started codecrypter.au3, choosed my "Hello World" script with Source button and verified that the 4 checkboxes you mentioned are ticked. Let run codecrypter by pressing the Run button Get a new file "MCF0test.au3" the same directory as my "Hello World" script, which shows my MsgBox call in plain text in the last line: [...] B836F9EDE2C630FE16EF0E51B9C805376FF193B9BEF5E3CA26DB92D3944D3C142E723DFD3095BA3498B92C19C285B313D98B7117BB1CF44AB15719BF5907A54000723B3F3126F636BEA1887169F35B649C88DB0004621D2")) $CCkeytype=$type EndFunc MsgBox( 0 ,"","Hello World")
What the hell do I wrong? 😟
How gets codescanners "output" to codycrypters "input"? Do I have to set something after ending codescanner and before starting codecrypter? I could make a short screen capture video about what I exactly do and provide the link to you? Would this help?
PS. I have it tested on another PC, only to be sure it's not a permission issue. But without success.
-
Roman got a reaction from abaddon7734 in GUICtrlCreateLabel or GUICtrlSetData: Word wrap even with no white spaces?
Hi abaddon7734
Thanks, but now try this:
#include <Constants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> GUICreate("Window size: 300x300", 300, 300) GUISetState() GUICtrlCreateLabel("Label with width more than window: 500", 20, 20, 250) GUICtrlSetFont(-1, 8.5, 600) GUICtrlCreateLabel("", 20, 40, 500, 400) GUICtrlSetData(-1, "C:Documents and SettingsusernameApplication DataNokiaPCSyncSynchDataBackups1232012") GUICtrlCreateLabel("Label with small width less than window: 260", 20, 100, 260) GUICtrlSetFont(-1, 8.5, 600) GUICtrlCreateLabel("", 20, 120, 260, 500) GUICtrlSetData(-1, "C:Documents_and_SettingsusernameApplication_DataNokiaPCSyncSynchDataBackups1232012") GUICtrlCreateLabel('Label with manual line feed "@LF" ', 20, 180, 250) GUICtrlSetFont(-1, 8.5, 600) GUICtrlCreateLabel("", 20, 200, 500, 500) GUICtrlSetData(-1, "C:Documents and Settingsusername" & @LF & "Application DataNokiaPCSync" & @LF & "SynchDataBackups1232012") While 1 $msg=GUIGetMsg() Switch $msg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
No wrap fit in the second example. Manually inserting @LF is no option.
Cheers.