Reply #1 Top
That really depends on the widget >_>. Picture frames and the like can usually be made any size you choose, while MP3 players and weather widgets are usually set to a fixed size. So the short answer is that it depends on the widget .
Reply #2 Top
Have you looked in your email inbox.

There are many offers in increase the size of your widget.


IG
Reply #3 Top
I don't think anyone has come up with a way to easily resize a widget with unknown structure. Depending on the components of the widget it may not even be possible to resize, on the fly.

So, it is difficult to do "automatically", but if you are willing to spend a little time in DXBuilder, you can select the objects and alter their size one at a time there, and repositioning as well. This would be no problem for basic widgets, but for more complex widgets it might be even easier to just "re-skin" them, using images and sizes appropriate for your needs.

That's one of the great things about DX is that a user can tweak such things themselves.

I see in another thread you asked about an MP3 player in particular. My SSMP has some large buttons, if that is helpful. Single Switch Media Player
Reply #4 Top
I have resized widgets - but its not easy depending on what the widget does. When you increase or decrease the size - all the toggle points etc are moved. To turn it " on " you might have to click the desktop 6 inches away. So you have to resize each part.
Were you talking about a specific widget ?
Reply #5 Top
Orrrrr in DXBuilder.. why not try..

Function Object_OnLButtonUp(x,y,dragged)

If Not Dragged Then Exit Function

Object.Width = Object.Width * 5
Object.Height = Object.Height * 5

End Function
Reply #6 Top
Orrrrr in DXBuilder.. why not try..


Would that resize all grouped or children object proportionatly?