|
|
|
#1 |
|
Registered User
Join Date: Mar 2011
Posts: 10
|
hi
i want sysinfo plugin but i cant download it from : http://www.northcode.com/studio/plugins/sysinfo.html pls give me this i want to build a cpu usage meter but dont have sysinfo plugin tnx |
|
|
|
|
|
#2 |
|
Registered User
Join Date: May 2003
Location: Ottawa
Posts: 416
|
I suspect you got that link from a post that was made back in 2001. Needless to say, that's not "current".
The SysInfo plugin is part of SWF Studio V3 now. There's no need to download it separately. |
|
|
|
|
|
#3 | |
|
Registered User
Join Date: Mar 2011
Posts: 10
|
Quote:
yeas i know but my swf studio v3.7 dosent have plugin ![]() and now im conect to internet by Dialup !!!!!!!!!!!!!!!!!!!! i cant download again swf studio pleas send me sysinfo.dll that i copy it in my plugin folder tnx dear |
|
|
|
|
|
|
#4 |
|
Tim
Join Date: May 2001
Location: Ottawa
Posts: 11,873
|
There is no SysInfo plugin anymore (it's part of the core now, see SysInfo) so there's nothing to send you and there was nothing in the old SysInfo plugin that would help you create a CPU usage meter anyway.
The only command that might be relevant is ssCore.SysInfo.getCPUSpeed but that gives you the speed of your CPU (never changes) and it's been there since version 3.0 build 2039. |
|
|
|
|
|
#5 | |
|
Registered User
Join Date: Mar 2011
Posts: 10
|
Quote:
second i didnt know that its no change tnx e lot if it work may be very cool in flash project. i work hard to creat this do u have any idea about creat cpu usage? |
|
|
|
|
|
|
#6 |
|
Tim
Join Date: May 2001
Location: Ottawa
Posts: 11,873
|
Since there's no function in SWF Studio to get this information your only options are (a) write your own plugin (b) query WMI for the information you need or (c) find a command line tool that dumps the info you need, call it from SWF Studio and read the results.
|
|
|
|
|
|
#7 | |
|
Registered User
Join Date: Mar 2011
Posts: 10
|
Quote:
PHP Code:
![]() pleas help me
|
|
|
|
|
|
|
#8 |
|
Tim
Join Date: May 2001
Location: Ottawa
Posts: 11,873
|
You need to look at the result property of the return object, like you're doing in the call to ssDebug.trace.
Code:
var return_obj = ssCore.SysInfo.getIPAddress({});
ssDebug.trace(return_obj.result);
tx.text = return_obj.result;
Code:
ssCore.init(); ssDefaults.synchronousCommands = true; var return_obj = ssCore.SysInfo.getIPAddress(); ssDebug.trace(return_obj.result); tx.text = return_obj.result |
|
|
|
|
|
#9 | |
|
Registered User
Join Date: Mar 2011
Posts: 10
|
Quote:
i very happy new and tanx alot send may project to u every time it complete but one question>:: i want to sell my work may b i creat template and sell it u think that i can make many mony? |
|
|
|
|
|
|
#10 | |||
|
Tim
Join Date: May 2001
Location: Ottawa
Posts: 11,873
|
Quote:
Quote:
![]() Quote:
|
|||
|
|
|
|
|
#11 | |
|
Registered User
Join Date: Mar 2011
Posts: 10
|
Quote:
new problem i write this code in my project : PHP Code:
PHP Code:
by this button i want to exit fullscreen mode |
|
|
|
|
|
|
#12 |
|
Tim
Join Date: May 2001
Location: Ottawa
Posts: 11,873
|
The call to Desktop.changeResolution requires the width, height and colorDepth parameters. If you want to change back to your original resolution you need to remember what they are before you change them. You can get the original values from ssGlobals.ssDesktopWidth, ssGlobals.ssDesktopHeight and ssGlobals.ssDesktopColorDepth. Whatever changes you make using Desktop.changeResolution are undone when you end your app unless you've set the permanent flag to true (but that is ignored if useDirectDraw is set to true).
|
|
|
|
|
|
#13 | |
|
Registered User
Join Date: Mar 2011
Posts: 10
|
Quote:
|
|
|
|
|