This perfect Erel, what I did was:
1.Declare as global variables the views (buttom, label, EditText, etc) I have in my layout.
Sub Globals
*** Dim name As Label
*** Dim accept As Button
Dim scv() As ScrollView
End Sub
2.After referencing variables to each view that is in the panel of ScrollView
Sub MyResize
Dim Pan As Panel
'Access scrollview panel
Pan=scv(0).Panel
'Referencing views of panel
***** name = Pan.GetView(0)
***** accept = Pan.GetView(1)
****** ......
'Resize height of name view
***** name.Height = 40
3.Call the command:
***** ......
'Call Designer Script defined into layout
**** Activity.RerunDesignerScript ("publications_swipe" Activity.Width, accept.Height accept.Top + 100)
Worked.
Thanks
Roberto