DesktopX 3 Beta Reports
Limited beta reports..
Monday, February 28, 2005 by Frogboy | Discussion: Beta
For Widget/theme/object developers we currently have a small closed beta (if you want the beta, let us know what DX content you've created in a seperate thread and we will see what we can do).
For those of you in the beta of DesktopX 3, let us know in this forum what issues you're running into.
Reply #2 Tuesday, March 1, 2005 2:53 PM
Wicked.
Reply #3 Wednesday, March 2, 2005 10:18 AM
The only "problem" I have run into so far is when I started DesktopX, there were multiple identical tray icons. They were just the "standard" desktopx tray icons, but there were about three. I reloaded desktopx and it appears to be working normally now with just the one tray icon.
I have been taking some of my objects and exporting them as .exe's, no problems there. I am getting ready to create some new objects so I will post if any problems come up.
Reply #5 Wednesday, March 2, 2005 12:53 PM
Wicked
Reply #7 Wednesday, March 2, 2005 9:19 PM
Reply #8 Thursday, March 3, 2005 3:54 AM
) I did notice that the dxpacks were installed into the same place as the widgets.Reply #9 Thursday, March 3, 2005 6:54 AM
love the new preferences dialog options - easy to understand and script
really love defining the width of text objects and having it word wrap if necessary (been after that for ages)
love the new system namespace properties - system.clipboard, system.CPUactivity etc
having a blast with the centralized scripting features
also started playing with the new object collections - object.children etc, very very handy indeed
like the new email plugin - does the example widget utilise all the scripting features of the plugin?
no problems encountered as of yet - all in all this is shaping up to be a very impressive upgrade from 2.4. Those who know me will know that I am not generally given to such hyperbole

Reply #10 Thursday, March 3, 2005 8:11 AM

Reply #11 Thursday, March 3, 2005 8:27 AM
Single script controlling everything: very cool. In fact, it's EXTREMELY cool. I figured out how to control many buttons with single block of select case from that. That will be extremely useful once I convert something like Nodemaster to single script.
Sub Object_OnLButtonDownEx(obj,x,y)
'if objects is named something like Heyqqq1 to Heyqqq1000 or more, this code handles that.
NameVar=obj.name
If instr(NameVar,"qqq")<>0 Then 'detect if it's special batch with qqq.
breaker=split(NameVar,"qqq")
NameVar=breaker(0)'the name, without the qqq. qqq serves only as splitter between object name and object number.
NumVar=breaker(1)'number only
End If
Select case Namevar
case Hey
Msgbox NameVar & " number:" & NumVar & " has been pressed."
'handle buttons, use NumVar to find out which of bunch of button called it.
end select
end sub
New dialogs and etc: very cool.
In plans to be tested: custom propriety dialogs, plug-in scripting.
Reply #12 Thursday, March 3, 2005 8:34 AM
| like the new email plugin - does the example widget utilise all the scripting features of the plugin? |
Yes. It basically esposes the minimum functionality to let you make a multiaccount checker object etc, since you can use the requestID to match multiple responses with the correct request. Accounts configuration is left to the script, since the plugin should only provide the basic custom functionality.
And it is totally asynchronous - which is good here. Future plugin implementations could support more features like content preview, etc.
Reply #13 Thursday, March 3, 2005 8:40 AM

That could be even better than CursorXP scripts, since you have total freedom here.
The most obvious idea is to use animation strips as displays. I.e.
Object.CurrentFrame = System.CPUActivity / 20 'I suppose the strip has 5 frames in it
Reply #14 Thursday, March 3, 2005 8:42 AM
| Two things I'm seeing... 1) This application has failed to start because ATL71.DLL was not found. When loading a previously created desktop. 2) The DXPerf4.dll could not be loaded. (also related to Performance Meters 2 not being on the Plugin list) When loading an object that uses Perf Meters 2. Wicked. |
What operating system?
Reply #15 Thursday, March 3, 2005 8:57 AM
| 1) This application has failed to start because ATL71.DLL was not found. When loading a previously created desktop. 2) The DXPerf4.dll could not be loaded. (also related to Performance Meters 2 not being on the Plugin list) When loading an object that uses Perf Meters 2. |
Ok, thanks for the report. I fixed that. Wrong compiler setting with DXPerf4.dll.
Reply #16 Thursday, March 3, 2005 8:58 AM
Reply #17 Thursday, March 3, 2005 10:58 AM
| When I click the "e-mail script" plugin to add to an object, then click to configure it, nothing happens. |
There is nothing to configure. Check how the sample widget works.
Reply #18 Thursday, March 3, 2005 11:22 AM
Reply #20 Thursday, March 3, 2005 2:44 PM
| Is there a way to get DX Builder to load on boot instead of the client? |
I just put a shortcut from the DesktopX folder to the startup programs list.
Please login to comment and/or vote for this skin.
Welcome Guest! Please take the time to register with us.
There are many great features available to you once you register, including:
- Richer content, access to many features that are disabled for guests like commenting on the forums and downloading skins.
- Access to a great community, with a massive database of many, many areas of interest.
- Access to contests & subscription offers like exclusive emails.
- It's simple, and FREE!







Reply #1 Tuesday, March 1, 2005 2:08 PM
1) This application has failed to start because ATL71.DLL was not found. When loading a previously created desktop.
2) The DXPerf4.dll could not be loaded. (also related to Performance Meters 2 not being on the Plugin list) When loading an object that uses Perf Meters 2.
Wicked.