neoEdge.ini - Forum

Forum Navigation
You need to log in to create posts and topics.

neoEdge.ini

The neoEdge.exe file was created for VisualNEO users to have better browsing capabilities. It was compiled with the npEdge Plugin from David Esperalta, which has 26 actions. The administration of VisualNEO could create a version of neoEdge with an external ini file so users can edit all its variables without having to recompile.

Thanks

 

Ivanes82 and Darbdenral have reacted to this post.
Ivanes82Darbdenral

@fkapnist It sounds interesting but not sure if I'm understanding you correctly.
Can you please share an example of what you mean?
Thank you!

fkapnist has reacted to this post.
fkapnist
Quote from luishp on January 6, 2022, 9:48 am

@fkapnist It sounds interesting but not sure if I'm understanding you correctly.
Can you please share an example of what you mean?
Thank you!

:OnEdgeActive
If "[LoadFromINI]" "=" "True"
   .load vars from external ini.
GotoLine "IniEdge" 
EndIf
If "[numparameters]" "<" "2"
   .Run as Standalone App.
   npEdgeOptions "BrowserRectangle" "DevToolsEnabled=False;ContextMenusEnabled=False;StatusBarEnabled=False;ZoomControlEnabled=False;ScriptEnabled=True;ScriptDialogsEnabled=True" "[Result]"
Else
   .Run from VisualNEO Web.
   npEdgeOptions "BrowserRectangle" "DevToolsEnabled=True;ContextMenusEnabled=True;StatusBarEnabled=False;ZoomControlEnabled=False;ScriptEnabled=True;ScriptDialogsEnabled=True" "[Result]"
EndIf
Return

:IniEdge
If "[numparameters]" "<" "2"
   .load vars from external ini.
   .Run as Standalone App.
   npEdgeOptions "BrowserRectangle" "DevToolsEnabled=[iniVar1];ContextMenusEnabled=[iniVar2];StatusBarEnabled=[iniVar3];ZoomControlEnabled=[iniVar4];ScriptEnabled=[iniVar5];ScriptDialogsEnabled=[iniVar6]" "[Result]"
Else
   .load vars from external ini.
   .Run from VisualNEO Web.
   npEdgeOptions "BrowserRectangle" "DevToolsEnabled=[iniVar1];ContextMenusEnabled=[iniVar2];StatusBarEnabled=[iniVar3];ZoomControlEnabled=[iniVar4];ScriptEnabled=[iniVar5];ScriptDialogsEnabled="[iniVar6]"[Result]"
EndIf
Return

 

luishp and Darbdenral have reacted to this post.
luishpDarbdenral