|
|
|
|
|
Procedimiento WLanguage llamado por la función DeepLinkProcedure Procedimiento WLanguage ("callback") llamado por la función DeepLinkProcedure cuando el usuario hace clic en un enlace profundo con una URL de destino asociada a la aplicación. Este procedimiento debe ser global. DeepLinkProcedure (ProcDeepLink) // --------------------------------- // Global procedure // --------------------------------- PROCEDURE ProcDeepLink(url is URI) // Gets the product identifier contained in the url sID is string = ExtractString(url.Query, 2, " = ") IF sID <> EOT THEN IF WinStatus(WIN_ProductDetails) <> NotFound THEN Close(WIN_ProductDetails) END OpenMobileWindow(WIN_ProductDetails, sID) END Sintaxis
DeepLinkProcedure_Callback(<URL>)
<URL>: Variable de tipo URI Variable de tipo URI que corresponde al destino del enlace profundo.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|