You can use the BrowserManager's setTitle() method to set the title in your HTML wrapper. This shows up as the name of the web page in the title bar of the browser. When you first initialize the BrowserManager, you set the value of the title in the second parameter to the init() method.
The following example sets the initial value of the title to "Welcome". It then changes the title depending on the name and hometown that you enter in the TextInput fields.
<?xml version="1.0" encoding="utf-8"?>
<!-- deeplinking/TitleManipulationExample.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
historyManagementEnabled="false"
creationComplete="init();"
>
<mx:Script>
<![CDATA[
import mx.managers.BrowserManager;
import mx.managers.IBrowserManager;
import mx.events.BrowserChangeEvent;
private var bm:IBrowserManager;
private function init():void {
bm = BrowserManager.getInstance();
bm.init("", "Welcome!");
}
public function updateTitle(e:Event):void {
bm.setTitle("Welcome " + ti1.text + " from " + ti2.text + "!");
}
]]>
</mx:Script>
<mx:Form>
<mx:FormItem label="Name:">
<mx:TextInput id="ti1"/>
</mx:FormItem>
<mx:FormItem label="Hometown:">
<mx:TextInput id="ti2"/>
</mx:FormItem>
<mx:Button id="b1" click="updateTitle(event)" label="Submit"/>
</mx:Form>
</mx:Application>
分享到:
相关推荐
在本项目中,我们将探讨如何基于华为的鸿蒙HarmonyOS操作系统,利用 ArkTS 开发一个纯净的浏览器应用,以“小狐狸浏览器”为例。鸿蒙系统是华为面向物联网时代推出的一款全新分布式操作系统,旨在提供跨平台、跨设备...
标题“Jcef浏览器 libcef_dll_wrapper.lib”指的是基于Chromium的开源项目——CEF(Chromium Embedded Framework)中的一个重要组件,这个组件是用于在Visual Studio 2015环境下构建的。CEF是一个框架,它允许开发者...
在React Native开发中,我们经常会遇到需要展示数据图表的需求,这时`react-native-charts-wrapper`库就显得尤为重要。这个库是专门为React Native设计的一个图表组件,支持多种图表类型,如线图、柱状图、饼图等,...
Resin4+Wrapper Green是一个专为简化Resin4部署而设计的解决方案,它允许你在不依赖.NET组件的情况下启动和管理Resin服务器。Resin是一款高效、轻量级且功能强大的Java应用服务器,常用于托管Java web应用程序。...
jvm 1 | WrapperJNI Error: Not licensed to use this edition of the Wrapper nat ive library. (6) jvm 1 | WrapperJNI Error: This can happen if the Wrapper binary is not... 自己改了之后可以部署了,分享包
Java Service Wrapper 使用总结 Java Service Wrapper 是一种可以将 Java 应用程序发布为可安装的服务的解决方案,它提供了一种简单的方式来将 Java 应用程序打包成一个独立的服务。下面是 Java Service Wrapper ...
console.log-wrapper, 清除每个浏览器的控制台日志记录 Console.log-封装器安全,清晰的控制台日志,每个浏览器的日志。登录到控制台- 即使没有控制台的旧版浏览器。 只要向 log() 传递任何数据,你就会看到它在...
**Windows Service Wrapper 2.1** 是一个工具,它允许开发者将普通的本地应用程序转换成Windows服务,以便在系统启动时自动运行或者以服务的方式在后台持续运行。这个工具特别适用于那些需要在没有用户交互的情况下...
Ros ZED Wrapper is a ros core driver to develop ZED programs and to include the stereo vision on C programs
6. **日志管理和监控**:Wrapper可以配置日志输出,通过`wrapper.logfile`设置日志文件路径。此外,Wrapper还提供了丰富的监控功能,如CPU和内存使用情况,可通过`wrapper.status`命令查看。 7. **自启动配置**:在...
接下来,在HTML部分,我们为需要转换为PDF的元素设置了一个类名为“pdf-wrapper”的div标签,并为其添加了一个自定义属性“to-pdf”。需要注意的是,提供的内容中这部分代码似乎有误(例如`class="pdf-wrapper"="to-...
Wrapper提供了一个配置文件(如`wrapper.conf`),用于设置服务的启动参数、环境变量、日志配置等。 2. **配置文件**:`wrapper.conf`是Wrapper服务的主要配置文件,它包含了启动、停止、监控Java应用程序的详细...
QueryWrapper 常用用法
This demonstration version of this control is a wrapper around the FileSystemObject - and makes using the FSO much easier.
- **`GenericServlet` Wrapper Class**: This abstract class provides a convenient implementation of the `Servlet` interface and can be extended to create custom servlets. - **Thread-Safe Servlets**: ...
2. `config`目录:包含各种配置文件,如`wrapper.conf`,用于设置Wrapper的行为和Java应用的启动参数。 3. `docs`目录:文档资料,包括用户手册、API参考等,帮助用户理解和使用Wrapper。 4. `lib`目录:可能包含...
MyBatis-Plus的QueryWrapper是其强大的查询构造器,为开发者提供了便利的API来构建复杂的SQL查询。在Spring Boot项目中,MyBatis-Plus作为一个扩展MyBatis的轻量级框架,大大简化了数据库操作。下面我们将深入探讨...
WinINet makes network programming easier, but it's difficult to use for C++ ...Similar to the STL and Boost, all source code consists of .h and .inl file, you can easily integrate it into your program.
Wrapper提供了一个配置文件,允许我们定制服务的行为,如启动参数、日志设置等。 ### 2. 准备工作 在开始之前,确保你已经安装了以下组件: - JDK:因为Wrapper依赖于Java环境,所以你需要确保系统上安装了Java ...
Windows Wrapper是一种技术,主要用于在Windows操作系统中以服务的形式运行Java应用程序。这允许Java程序在系统启动时自动启动,并且可以在后台持续运行,就像其他系统服务一样。这种技术对于那些需要在用户登录之前...