how to superimpose several objects?
Thursday, June 8, 2006 by gaby75 | Discussion: DesktopX
"how to superimpose several objects?"
I don't understand how to make.
is this possible directly in desktopX builder?
is there a tutorial for that?
thank you.
Reply #4 Friday, June 9, 2006 9:00 AM
on my screen, I have a button start ant just one button "start" but I have several games.
while clicking on each images of each plays , I want to charge the button of this game, only of this game.
it is clear?
my English is special, thank you google

Reply #5 Friday, June 9, 2006 9:05 AM
can I to open and activate an object without “states” (click,mousse down,mousse over...) just open and action.
thank you.
Reply #6 Friday, June 9, 2006 10:46 AM
You can do the first one quite easily. Linking an image to a file on your computer. But you HAVE to have some mouse interaction to load that shortcut. Mouse click, mouse hover, etc. You may beable to use keyboard shortcuts, but I am not sure how to do that
.Reply #7 Friday, June 9, 2006 12:13 PM
yes, I can use the short cuts, but I do not want….
here, the widget Link
I want to open the game while clicking on the button start of the gameboy
I thought of making ...
Link
to create 3 objects controller for groups 01,02, and 03 but it is necessary to click on the objects and thus… that does not function
bye.
Reply #8 Friday, June 9, 2006 1:06 PM
It looks like you have this setup in the first link above, so im not sure, there are buttons over the start/select areas.
What are you wanting it to do?
Not sure how to help you, but it looks like an interesting app.
RomanDA
Reply #9 Friday, June 9, 2006 1:10 PM
| but it looks like an interesting app. |
RomanDA's next app . . . a Sega Game Gear object.
I wish I could help, it looks very cool.
Reply #10 Saturday, June 10, 2006 6:30 AM
it is still me.
I tests another thing....
I create 3 short cuts (shortcut01, shortcut02, shortcut03) in 1 group (groupA)
after, I create a object controller for close "groupA".
it's OK.
after, I create object controler for only open "shortcut01".
it is not OK, it open the "groupA"
why???
it is not possible to open only one object of the group?
bye.
>>> Link<<<
Reply #11 Monday, June 19, 2006 7:47 PM
As far as I know, once an object is part of a group it cannot act alone.
So, instead of having an object controller for opening & closing "rac01", try making your "activation_rac01" object a layer object with this script:
Sub Object_OnLbuttonUp(x,y,dragged)
If Not dragged Then
Select Case desktopx.Object("rac01").visible
Case True
desktopx.Object("rac01").visible= False
Case False
desktopx.Object("rac01").visible= True
End Select
End If
End Sub
Hope this helps.

Reply #12 Wednesday, June 21, 2006 4:44 AM
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 Thursday, June 8, 2006 8:41 AM
Grouping will make them relate to each other. https://www.stardock.com/products/desktopx/documentation/dev/grouping.html
Making one the child of the other will relate them even more (the child MUST be within the parent.)