Extension Join Text

Can Any One tell How To Join The text through Ex :- (StringFromPurpleblock + "OurTxt") Purple block then Get it From Yellow Block

1 Like

That's a simple thing, take a look at this example:

    @SimpleFunction
    public void Join(String text1, String text2) {
       AfterPicking(text1 + text2);
    }
  
    @SimpleEvent
    public void AfterPicking(String text) {
      EventDispatcher.dispatchEvent(this, "AfterPicking", text);
    }
1 Like

Just one last thing

Can you tell How to add More parameters in @vknow360 Custom Webview GoToUrl Block

It looks like your basics are not clear. Please first learn java then extension development.

What more parameters can be added? :thinking:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.