gui_inspect 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d210dc0561a40901ccc1cacc1a2e0a5231db32279367ba9a06807408048b6e5c
4
+ data.tar.gz: a11f2537a086e83eedb739ea699454660386e909f70adeae39bd9dfd558dd34a
5
+ SHA512:
6
+ metadata.gz: eb40ab8bbe9e5bf4a1f2e6834e837513b4c266e7b388c834f7346bbeef03b61ff344acb1f8af61d8da37df56649d817424564001a8d9511ef5fccc5d79ec08a6
7
+ data.tar.gz: fa34428280a5059b3af637649ea915eea8b833a6e4b0730c5dfdb0f994955129b9d3bda7c5b1890d2f758d1d7cd813149a7bc18a360c8da09826f14d99cb5e59
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.1
3
+
4
+ Style/StringLiterals:
5
+ EnforcedStyle: double_quotes
6
+
7
+ Style/StringLiteralsInInterpolation:
8
+ EnforcedStyle: double_quotes
@@ -0,0 +1,132 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, caste, color, religion, or sexual
10
+ identity and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the overall
26
+ community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or advances of
31
+ any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email address,
35
+ without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official email address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ [INSERT CONTACT METHOD].
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series of
86
+ actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or permanent
93
+ ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within the
113
+ community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.1, available at
119
+ [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
120
+
121
+ Community Impact Guidelines were inspired by
122
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123
+
124
+ For answers to common questions about this code of conduct, see the FAQ at
125
+ [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
126
+ [https://www.contributor-covenant.org/translations][translations].
127
+
128
+ [homepage]: https://www.contributor-covenant.org
129
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
130
+ [Mozilla CoC]: https://github.com/mozilla/diversity
131
+ [FAQ]: https://www.contributor-covenant.org/faq
132
+ [translations]: https://www.contributor-covenant.org/translations
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Richard LeBer
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # Gui
2
+
3
+ Simple methods to inspect the GUI elements of a running MacOS application.
4
+
5
+ ## Installation
6
+
7
+ Install the gem and add to the application's Gemfile by executing:
8
+
9
+ ```bash
10
+ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
11
+ ```
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ ```bash
16
+ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ > get_ui_elements '<application name>' >path/to/file # Generates a list of the GUI elements of the
22
+ # application in its current state
23
+
24
+ ## Development
25
+
26
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
27
+
28
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
29
+
30
+ ## Contributing
31
+
32
+ Bug reports and pull requests are welcome on GitHub at https://github.com/rleber/gui. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/rleber/gui/blob/master/CODE_OF_CONDUCT.md).
33
+
34
+ ## License
35
+
36
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
37
+
38
+ ## Code of Conduct
39
+
40
+ Everyone interacting in the Gui project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/rleber/gui/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,85 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'tempfile'
4
+
5
+ def help
6
+ app_name = File.basename(__FILE__)
7
+ help_text = <<-END_HELP
8
+ | #{app_name}:
9
+ |
10
+ | Gather information about the elements of the graphical user interface of an application
11
+ |
12
+ | Usage:
13
+ | #{app_name} '<name of GUI app>'
14
+ |
15
+ | #{app_name} gathers a lot of information about the named application and outputs it to
16
+ | the standard output. (Standard output may be redirected to a file using the usual '>'
17
+ | syntax.)
18
+ |
19
+ | For best results, we recommend that you have the application you want to analyze already
20
+ | running and in the state that you want it. (For instance, displaying dialogs you're interested
21
+ | in.) Move quickly -- this script can only capture information while it is still displayed.
22
+ END_HELP
23
+ puts help_text.split("\n").map { |line| line[/^\s*\|\s\s(.*)$/, 1]}.join("\n")
24
+ end
25
+
26
+ def main(args)
27
+ if args.size != 1
28
+ help
29
+ exit
30
+ else
31
+ arg = args.first
32
+ downcase_arg = arg.downcase
33
+ if downcase_arg == '--help' || downcase_arg == '-h' || downcase_arg == 'help'
34
+ help
35
+ exit
36
+ end
37
+ end
38
+
39
+ applescript = <<-END_OF_APPLESCRIPT
40
+ try
41
+ tell application "#{arg}"
42
+ activate -- If nescessary, starts application. Gives it focus
43
+ end tell
44
+ delay 3
45
+ tell application "System Events"
46
+ set frontmostName to name of application process 1 whose frontmost is true
47
+ tell application process frontmostName
48
+ set uiElems to entire contents
49
+ end tell
50
+ end tell
51
+ (* tell application "System Events"
52
+ -- Save exit value to a file
53
+ set the_file to (((path to desktop) as string) & "ui_elements.txt")
54
+ set nref to open for access file the_file with write permission
55
+ set eof of the nref to 0
56
+ set {TID, text item delimiters} to {text item delimiters, ","}
57
+ set {uiElemsText, text item delimiters} to {uiElems as text, TID}
58
+ write uiElemsText to nref starting at eof
59
+ close access nref
60
+ end tell
61
+ *)
62
+ uiElems
63
+ on error errMsg number errorNumber
64
+ "Error: " & errMsg & " (#" & (errorNumber as text) & ")"
65
+ end try
66
+ END_OF_APPLESCRIPT
67
+
68
+ file = Tempfile.new('get_ui_elements')
69
+ output = begin
70
+ file.write(applescript)
71
+ file.close
72
+ `osascript #{file.path}`
73
+ ensure
74
+ file.unlink # Release the temporary script file
75
+ end
76
+ if output =~ /^Error/
77
+ $stderr.puts output.chomp
78
+ exit 1
79
+ end
80
+ puts output.gsub(/,\s+/,"\n")
81
+ end
82
+
83
+ if __FILE__ == $0
84
+ main(ARGV)
85
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Gui
4
+ VERSION = "0.1.0"
5
+ end
data/lib/gui.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "gui/version"
4
+
5
+ module Gui
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,679 @@
1
+ window template.lbx of application process P-touch Editor
2
+ scroll area 1 of window template.lbx of application process P-touch Editor
3
+ static text Printer of scroll area 1 of window template.lbx of application process P-touch Editor
4
+ menu button Brother PT-P750W(10.0.0.142) of scroll area 1 of window template.lbx of application process P-touch Editor
5
+ image 1 of scroll area 1 of window template.lbx of application process P-touch Editor
6
+ static text Print Media of scroll area 1 of window template.lbx of application process P-touch Editor
7
+ image 2 of scroll area 1 of window template.lbx of application process P-touch Editor
8
+ pop up button 1 of scroll area 1 of window template.lbx of application process P-touch Editor
9
+ button Check Media of scroll area 1 of window template.lbx of application process P-touch Editor
10
+ static text Length of scroll area 1 of window template.lbx of application process P-touch Editor
11
+ image 3 of scroll area 1 of window template.lbx of application process P-touch Editor
12
+ text field 1 of scroll area 1 of window template.lbx of application process P-touch Editor
13
+ incrementor 1 of scroll area 1 of window template.lbx of application process P-touch Editor
14
+ button 1 of incrementor 1 of scroll area 1 of window template.lbx of application process P-touch Editor
15
+ button 2 of incrementor 1 of scroll area 1 of window template.lbx of application process P-touch Editor
16
+ checkbox Set Length of scroll area 1 of window template.lbx of application process P-touch Editor
17
+ static text Margin of scroll area 1 of window template.lbx of application process P-touch Editor
18
+ text field 2 of scroll area 1 of window template.lbx of application process P-touch Editor
19
+ incrementor 2 of scroll area 1 of window template.lbx of application process P-touch Editor
20
+ button 1 of incrementor 2 of scroll area 1 of window template.lbx of application process P-touch Editor
21
+ button 2 of incrementor 2 of scroll area 1 of window template.lbx of application process P-touch Editor
22
+ static text Direction of scroll area 1 of window template.lbx of application process P-touch Editor
23
+ radio button Landscape of scroll area 1 of window template.lbx of application process P-touch Editor
24
+ radio button Portrait of scroll area 1 of window template.lbx of application process P-touch Editor
25
+ static text Color of scroll area 1 of window template.lbx of application process P-touch Editor
26
+ pop up button 2 of scroll area 1 of window template.lbx of application process P-touch Editor
27
+ scroll bar 1 of scroll area 1 of window template.lbx of application process P-touch Editor
28
+ value indicator 1 of scroll bar 1 of scroll area 1 of window template.lbx of application process P-touch Editor
29
+ button 1 of scroll bar 1 of scroll area 1 of window template.lbx of application process P-touch Editor
30
+ button 2 of scroll bar 1 of scroll area 1 of window template.lbx of application process P-touch Editor
31
+ button 3 of scroll bar 1 of scroll area 1 of window template.lbx of application process P-touch Editor
32
+ button 4 of scroll bar 1 of scroll area 1 of window template.lbx of application process P-touch Editor
33
+ button Buy labels of window template.lbx of application process P-touch Editor
34
+ splitter group 1 of window template.lbx of application process P-touch Editor
35
+ scroll area 1 of splitter group 1 of window template.lbx of application process P-touch Editor
36
+ scroll bar 1 of scroll area 1 of splitter group 1 of window template.lbx of application process P-touch Editor
37
+ scroll bar 2 of scroll area 1 of splitter group 1 of window template.lbx of application process P-touch Editor
38
+ static text inch of splitter group 1 of window template.lbx of application process P-touch Editor
39
+ splitter 1 of splitter group 1 of window template.lbx of application process P-touch Editor
40
+ static text Drag & drop database file here of splitter group 1 of window template.lbx of application process P-touch Editor
41
+ group 1 of window template.lbx of application process P-touch Editor
42
+ static text No Selected of group 1 of window template.lbx of application process P-touch Editor
43
+ static text Add Object of group 1 of window template.lbx of application process P-touch Editor
44
+ radio group 1 of window template.lbx of application process P-touch Editor
45
+ radio button 1 of radio group 1 of window template.lbx of application process P-touch Editor
46
+ toolbar 1 of window template.lbx of application process P-touch Editor
47
+ menu button View of toolbar 1 of window template.lbx of application process P-touch Editor
48
+ menu button 1 of menu button View of toolbar 1 of window template.lbx of application process P-touch Editor
49
+ static text View of menu button View of toolbar 1 of window template.lbx of application process P-touch Editor
50
+ button Print of toolbar 1 of window template.lbx of application process P-touch Editor
51
+ group 1 of toolbar 1 of window template.lbx of application process P-touch Editor
52
+ group Zoom of group 1 of toolbar 1 of window template.lbx of application process P-touch Editor
53
+ button 1 of group Zoom of group 1 of toolbar 1 of window template.lbx of application process P-touch Editor
54
+ button 2 of group Zoom of group 1 of toolbar 1 of window template.lbx of application process P-touch Editor
55
+ button 3 of group Zoom of group 1 of toolbar 1 of window template.lbx of application process P-touch Editor
56
+ static text Zoom of group 1 of toolbar 1 of window template.lbx of application process P-touch Editor
57
+ button Text Box of toolbar 1 of window template.lbx of application process P-touch Editor
58
+ button Frame of toolbar 1 of window template.lbx of application process P-touch Editor
59
+ button Image of toolbar 1 of window template.lbx of application process P-touch Editor
60
+ button Symbol of toolbar 1 of window template.lbx of application process P-touch Editor
61
+ button Clip Art of toolbar 1 of window template.lbx of application process P-touch Editor
62
+ menu button Shape of toolbar 1 of window template.lbx of application process P-touch Editor
63
+ menu button 1 of menu button Shape of toolbar 1 of window template.lbx of application process P-touch Editor
64
+ static text Shape of menu button Shape of toolbar 1 of window template.lbx of application process P-touch Editor
65
+ button Table of toolbar 1 of window template.lbx of application process P-touch Editor
66
+ menu button Bar Code of toolbar 1 of window template.lbx of application process P-touch Editor
67
+ menu button 1 of menu button Bar Code of toolbar 1 of window template.lbx of application process P-touch Editor
68
+ static text Bar Code of menu button Bar Code of toolbar 1 of window template.lbx of application process P-touch Editor
69
+ button Database of toolbar 1 of window template.lbx of application process P-touch Editor
70
+ button 2 of window template.lbx of application process P-touch Editor
71
+ button 3 of window template.lbx of application process P-touch Editor
72
+ group 1 of button 3 of window template.lbx of application process P-touch Editor
73
+ group 1 of group 1 of button 3 of window template.lbx of application process P-touch Editor
74
+ button 4 of window template.lbx of application process P-touch Editor
75
+ image template.lbx of window template.lbx of application process P-touch Editor
76
+ menu button 1 of window template.lbx of application process P-touch Editor
77
+ static text template.lbx of window template.lbx of application process P-touch Editor
78
+ menu bar 1 of application process P-touch Editor
79
+ menu bar item Apple of menu bar 1 of application process P-touch Editor
80
+ menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
81
+ menu item About This Mac of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
82
+ menu item System Information of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
83
+ menu item 3 of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
84
+ menu item System Settings…
85
+ 1 update of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
86
+ menu item App Store of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
87
+ menu item 6 of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
88
+ menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
89
+ menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
90
+ menu item Applications of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
91
+ menu item Brother P-touch Editor.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
92
+ menu item Show “Brother P-touch Editor.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
93
+ menu item Calendar.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
94
+ menu item Show “Calendar.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
95
+ menu item Google Chrome.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
96
+ menu item Show “Google Chrome.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
97
+ menu item Messages.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
98
+ menu item Show “Messages.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
99
+ menu item Microsoft PowerPoint.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
100
+ menu item Show “Microsoft PowerPoint.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
101
+ menu item Microsoft Teams.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
102
+ menu item Show “Microsoft Teams.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
103
+ menu item Script Editor.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
104
+ menu item Show “Script Editor.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
105
+ menu item System Settings.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
106
+ menu item Show “System Settings.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
107
+ menu item TextEdit.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
108
+ menu item Show “TextEdit.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
109
+ menu item Visual Studio Code.app of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
110
+ menu item Show “Visual Studio Code.app” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
111
+ menu item 22 of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
112
+ menu item Documents of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
113
+ menu item .gitignore of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
114
+ menu item Show “.gitignore” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
115
+ menu item activerecord-8.0.2 of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
116
+ menu item Show “activerecord-8.0.2” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
117
+ menu item activesupport-8.0.2 of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
118
+ menu item Show “activesupport-8.0.2” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
119
+ menu item env of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
120
+ menu item Show “env” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
121
+ menu item exe of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
122
+ menu item Show “exe” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
123
+ menu item gui of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
124
+ menu item Show “gui” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
125
+ menu item lego of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
126
+ menu item Show “lego” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
127
+ menu item test_rails of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
128
+ menu item Show “test_rails” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
129
+ menu item ui_elements.txt of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
130
+ menu item Show “ui_elements.txt” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
131
+ menu item Window Analysis Tool for System Events v1.50.kmmacros.txt of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
132
+ menu item Show “Window Analysis Tool for System Events v1.50.kmmacros.txt” in Finder of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
133
+ menu item 44 of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
134
+ menu item Servers of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
135
+ menu item Common of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
136
+ menu item Development of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
137
+ menu item Finance of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
138
+ menu item Macintosh HD of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
139
+ menu item Operations of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
140
+ menu item Operations of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
141
+ menu item Programs of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
142
+ menu item 53 of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
143
+ menu item Clear Menu of menu Recent Items of menu item Recent Items of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
144
+ menu item 8 of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
145
+ menu item Force Quit… of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
146
+ menu item Force Quit Brother P-touch Editor of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
147
+ menu item 11 of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
148
+ menu item Sleep of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
149
+ menu item Restart… of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
150
+ menu item Restart of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
151
+ menu item Shut Down… of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
152
+ menu item Shut Down of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
153
+ menu item 17 of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
154
+ menu item Lock Screen of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
155
+ menu item Log Out Richard LeBer… of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
156
+ menu item Log Out Richard LeBer of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
157
+ menu item 21 of menu Apple of menu bar item Apple of menu bar 1 of application process P-touch Editor
158
+ menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
159
+ menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
160
+ menu item About Brother P-touch Editor of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
161
+ menu item 2 of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
162
+ menu item Settings… of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
163
+ menu item 4 of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
164
+ menu item Hide Brother P-touch Editor of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
165
+ menu item Hide Others of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
166
+ menu item Show All of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
167
+ menu item 8 of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
168
+ menu item Quit Brother P-touch Editor of menu Brother P-touch Editor of menu bar item Brother P-touch Editor of menu bar 1 of application process P-touch Editor
169
+ menu bar item File of menu bar 1 of application process P-touch Editor
170
+ menu File of menu bar item File of menu bar 1 of application process P-touch Editor
171
+ menu item New… of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
172
+ menu item Open… of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
173
+ menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
174
+ menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
175
+ menu item template.lbx of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
176
+ menu item 3395.lbx of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
177
+ menu item 3395 2x4 Tile Inverted.lbx — Part Labels with Icons of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
178
+ menu item 3395 2x4 Tile Inverted copy.lbx of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
179
+ menu item 3395 2x4 Tile Inverted copy 2.lbx of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
180
+ menu item 3395 2x4 Tile Inverted.lbx — Part Icons of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
181
+ menu item 3395 2x4 Tile Inverted.lbx — Part Names of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
182
+ menu item 10202.lbx of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
183
+ menu item 35459.lbx of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
184
+ menu item 10 of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
185
+ menu item Clear Menu of menu Open Recent of menu item Open Recent of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
186
+ menu item 4 of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
187
+ menu item Close of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
188
+ menu item Close All of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
189
+ menu item Save of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
190
+ menu item Save As… of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
191
+ menu item Duplicate of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
192
+ menu item Rename… of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
193
+ menu item Move To… of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
194
+ menu item Export of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
195
+ menu Export of menu item Export of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
196
+ menu item BLF of menu Export of menu item Export of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
197
+ menu item PDZ of menu Export of menu item Export of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
198
+ menu item 13 of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
199
+ menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
200
+ menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
201
+ menu item iCloud Drive of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
202
+ menu item iCloud Sharing of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
203
+ menu item 3 of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
204
+ menu item AirDrop of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
205
+ menu item Messages of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
206
+ menu item Notes of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
207
+ menu item Freeform of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
208
+ menu item Simulator of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
209
+ menu item Reminders of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
210
+ menu item Dropbox Transfer of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
211
+ menu item 11 of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
212
+ menu item More… of menu Share of menu item Share of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
213
+ menu item 15 of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
214
+ menu item Print… of menu File of menu bar item File of menu bar 1 of application process P-touch Editor
215
+ menu bar item Edit of menu bar 1 of application process P-touch Editor
216
+ menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
217
+ menu item Undo of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
218
+ menu item Redo of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
219
+ menu item 3 of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
220
+ menu item Cut of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
221
+ menu item Copy of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
222
+ menu item Paste of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
223
+ menu item Delete of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
224
+ menu item Select All of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
225
+ menu item 9 of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
226
+ menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
227
+ menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
228
+ menu item Show Writing Tools of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
229
+ menu item 2 of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
230
+ menu item Proofread of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
231
+ menu item Rewrite of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
232
+ menu item 5 of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
233
+ menu item Make Friendly of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
234
+ menu item Make Professional of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
235
+ menu item Make Concise of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
236
+ menu item 9 of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
237
+ menu item Summarize of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
238
+ menu item Create Key Points of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
239
+ menu item Make List of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
240
+ menu item Make Table of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
241
+ menu item 14 of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
242
+ menu item Compose… of menu Writing Tools of menu item Writing Tools of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
243
+ menu item AutoFill of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
244
+ menu AutoFill of menu item AutoFill of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
245
+ menu item Contact… of menu AutoFill of menu item AutoFill of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
246
+ menu item Passwords… of menu AutoFill of menu item AutoFill of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
247
+ menu item Start Dictation of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
248
+ menu item Emoji & Symbols of menu Edit of menu bar item Edit of menu bar 1 of application process P-touch Editor
249
+ menu bar item View of menu bar 1 of application process P-touch Editor
250
+ menu View of menu bar item View of menu bar 1 of application process P-touch Editor
251
+ menu item Show Tab Bar of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
252
+ menu item Show All Tabs of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
253
+ menu item 3 of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
254
+ menu item Label Inspector of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
255
+ menu item Object Inspector of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
256
+ menu item 6 of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
257
+ menu item Hide Rulers of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
258
+ menu item 8 of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
259
+ menu item Zoom of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
260
+ menu Zoom of menu item Zoom of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
261
+ menu item Zoom In of menu Zoom of menu item Zoom of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
262
+ menu item Zoom Out of menu Zoom of menu item Zoom of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
263
+ menu item Actual Size of menu Zoom of menu item Zoom of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
264
+ menu item 10 of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
265
+ menu item Enter Full Screen of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
266
+ menu item 12 of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
267
+ menu item Hide Toolbar of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
268
+ menu item Customize Toolbar… of menu View of menu bar item View of menu bar 1 of application process P-touch Editor
269
+ menu bar item Insert of menu bar 1 of application process P-touch Editor
270
+ menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
271
+ menu item Text Box of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
272
+ menu item Arrange Text of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
273
+ menu Arrange Text of menu item Arrange Text of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
274
+ menu item Straight Line of menu Arrange Text of menu item Arrange Text of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
275
+ menu item Broken Line of menu Arrange Text of menu item Arrange Text of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
276
+ menu item Circle of menu Arrange Text of menu item Arrange Text of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
277
+ menu item Arc of menu Arrange Text of menu item Arrange Text of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
278
+ menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
279
+ menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
280
+ menu item CODE39 of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
281
+ menu item CODE128 of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
282
+ menu item UCC / EAN128(GS1-128) of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
283
+ menu item ITF(I-2/5) of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
284
+ menu item CODABAR(NW-7) of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
285
+ menu item UPC-A of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
286
+ menu item UPC-E of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
287
+ menu item JAN13 (EAN13) of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
288
+ menu item JAN8(EAN8) of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
289
+ menu item ISBN-2(EAN13 AddOn2) of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
290
+ menu item ISBN-5(EAN13 AddOn5) of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
291
+ menu item POSTNET of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
292
+ menu item Intelligent Mail Barcode of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
293
+ menu item Laser Bar Code of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
294
+ menu item GS1 DataBar(RSS) of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
295
+ menu item PDF417 of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
296
+ menu item QR Code/Micro QR Code of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
297
+ menu item Data Matrix of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
298
+ menu item MaxiCode of menu Bar Code of menu item Bar Code of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
299
+ menu item Frame of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
300
+ menu Frame of menu item Frame of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
301
+ menu item Simple of menu Frame of menu item Frame of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
302
+ menu item Thin Frames of menu Frame of menu item Frame of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
303
+ menu item Thick Frames of menu Frame of menu item Frame of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
304
+ menu item Special 1 of menu Frame of menu item Frame of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
305
+ menu item Special 2 of menu Frame of menu item Frame of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
306
+ menu item Special 3 of menu Frame of menu item Frame of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
307
+ menu item Table of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
308
+ menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
309
+ menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
310
+ menu item PT Dingbats 1 of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
311
+ menu item PT Dingbats 2 of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
312
+ menu item PT Dingbats 3 of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
313
+ menu item PT Dingbats 4 of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
314
+ menu item PT Symbol 1 of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
315
+ menu item PT Symbol 2 of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
316
+ menu item Symbol of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
317
+ menu item Webdings of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
318
+ menu item Wingdings of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
319
+ menu item Wingdings 2 of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
320
+ menu item Wingdings 3 of menu Symbol of menu item Symbol of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
321
+ menu item Image of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
322
+ menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
323
+ menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
324
+ menu item DP_Emoji of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
325
+ menu item DP_Music / Electronics of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
326
+ menu item DP_Closets / Storage of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
327
+ menu item DP_Vehicle / Travel of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
328
+ menu item DP_Home of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
329
+ menu item DP_Sports / Games of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
330
+ menu item DP_Animals of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
331
+ menu item DP_Baby / Kids of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
332
+ menu item DP_Seasons of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
333
+ menu item DP_Events / Special Occasions of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
334
+ menu item DP_Decorative / Craft of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
335
+ menu item DP_Garden of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
336
+ menu item DP_Family of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
337
+ menu item DP_School of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
338
+ menu item DP_Office of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
339
+ menu item DP_Astrology of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
340
+ menu item DP_Foods / Beverages of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
341
+ menu item DP_Kitchen of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
342
+ menu item DP_Shapes / Arrows of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
343
+ menu item DP_Signs of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
344
+ menu item DP_Garage / Tools of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
345
+ menu item Office of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
346
+ menu item Stationery of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
347
+ menu item Hospital of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
348
+ menu item Vehicles and Buildings of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
349
+ menu item Christmas of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
350
+ menu item Seasons and Holidays of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
351
+ menu item Laboratory of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
352
+ menu item Insects of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
353
+ menu item Animals of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
354
+ menu item Birds and Fishes of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
355
+ menu item Dinosaurs of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
356
+ menu item Flowers of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
357
+ menu item Fruits of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
358
+ menu item Food (Ethnic and Ingredients) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
359
+ menu item Food (Snacks and Specialty Foods) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
360
+ menu item Sports of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
361
+ menu item Hobbies of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
362
+ menu item Travelling and Outdoors of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
363
+ menu item Videos of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
364
+ menu item Stores (Restaurants) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
365
+ menu item Stores (Others) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
366
+ menu item Occupations of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
367
+ menu item People of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
368
+ menu item Toys of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
369
+ menu item Interiors of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
370
+ menu item School of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
371
+ menu item Tools and Equipment of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
372
+ menu item Country Style of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
373
+ menu item Weather and Celestial Bodies of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
374
+ menu item Directions of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
375
+ menu item Signs1 (guidance markings) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
376
+ menu item Signs2 (other guidance markings) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
377
+ menu item Signs3 (prohibitive) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
378
+ menu item Signs4 (warnings) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
379
+ menu item Signs5 (cautions) of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
380
+ menu item Electrical / Electronic of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
381
+ menu item Audio Visual of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
382
+ menu item Template parts 1 of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
383
+ menu item Template parts 2 of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
384
+ menu item General Shapes1 of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
385
+ menu item General Shapes2 of menu Clip Art of menu item Clip Art of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
386
+ menu item Date/Time of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
387
+ menu Date/Time of menu item Date/Time of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
388
+ menu item 2025/06/03 of menu Date/Time of menu item Date/Time of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
389
+ menu item 21:24 of menu Date/Time of menu item Date/Time of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
390
+ menu item Calendar of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
391
+ menu Calendar of menu item Calendar of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
392
+ menu item Monthly Format of menu Calendar of menu item Calendar of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
393
+ menu item Monthly Single Line Format of menu Calendar of menu item Calendar of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
394
+ menu item Shape of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
395
+ menu Shape of menu item Shape of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
396
+ menu item Rectangle of menu Shape of menu item Shape of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
397
+ menu item Rounded Rectangle of menu Shape of menu item Shape of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
398
+ menu item Oval of menu Shape of menu item Shape of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
399
+ menu item Polygon of menu Shape of menu item Shape of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
400
+ menu item 5 of menu Shape of menu item Shape of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
401
+ menu item Line of menu Shape of menu item Shape of menu Insert of menu bar item Insert of menu bar 1 of application process P-touch Editor
402
+ menu bar item Format of menu bar 1 of application process P-touch Editor
403
+ menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
404
+ menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
405
+ menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
406
+ menu item Bold of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
407
+ menu item Italic of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
408
+ menu item Underline of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
409
+ menu item Double Underline of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
410
+ menu item Strikethrough of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
411
+ menu item Double Strikethrough of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
412
+ menu item Outline of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
413
+ menu item Shadow Light of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
414
+ menu item Shadow of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
415
+ menu item Surround of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
416
+ menu item Frameout of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
417
+ menu item Invert Text Colors of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
418
+ menu item 13 of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
419
+ menu item Larger of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
420
+ menu item Smaller of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
421
+ menu item 16 of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
422
+ menu item Character Spacing of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
423
+ menu Character Spacing of menu item Character Spacing of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
424
+ menu item Use Default of menu Character Spacing of menu item Character Spacing of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
425
+ menu item Tighten of menu Character Spacing of menu item Character Spacing of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
426
+ menu item Loosen of menu Character Spacing of menu item Character Spacing of menu Font of menu item Font of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
427
+ menu item Text of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
428
+ menu Text of menu item Text of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
429
+ menu item Align Left of menu Text of menu item Text of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
430
+ menu item Align Center of menu Text of menu item Text of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
431
+ menu item Align Right of menu Text of menu item Text of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
432
+ menu item Justify of menu Text of menu item Text of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
433
+ menu item 3 of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
434
+ menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
435
+ menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
436
+ menu item Insert Row Above of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
437
+ menu item Insert Column to the Left of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
438
+ menu item 3 of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
439
+ menu item Delete Row of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
440
+ menu item Delete Column of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
441
+ menu item 6 of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
442
+ menu item Distribute Height of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
443
+ menu item Distribute Width of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
444
+ menu item 9 of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
445
+ menu item Merge Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
446
+ menu item Unmerge Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
447
+ menu item 12 of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
448
+ menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
449
+ menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
450
+ menu item Text of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
451
+ menu item Arrange Text of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
452
+ menu Arrange Text of menu item Arrange Text of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
453
+ menu item Straight Line of menu Arrange Text of menu item Arrange Text of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
454
+ menu item Broken Line of menu Arrange Text of menu item Arrange Text of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
455
+ menu item Circle of menu Arrange Text of menu item Arrange Text of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
456
+ menu item Arc of menu Arrange Text of menu item Arrange Text of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
457
+ menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
458
+ menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
459
+ menu item CODE39 of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
460
+ menu item CODE128 of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
461
+ menu item UCC/EAN-128(GS1-128) of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
462
+ menu item ITF(I-2/5) of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
463
+ menu item CODABAR(NW-7) of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
464
+ menu item UPC-A of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
465
+ menu item UPC-E of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
466
+ menu item JAN13 (EAN13) of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
467
+ menu item JAN8(EAN8) of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
468
+ menu item ISBN-2(EAN13 AddOn2) of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
469
+ menu item ISBN-5(EAN13 AddOn5) of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
470
+ menu item POSTNET of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
471
+ menu item Intelligent Mail Barcode of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
472
+ menu item Laser Bar Code of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
473
+ menu item GS1 DataBar(RSS) of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
474
+ menu item PDF417 of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
475
+ menu item QR Code/Micro QR Code of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
476
+ menu item Data Matrix of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
477
+ menu item MaxiCode of menu Bar Code of menu item Bar Code of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
478
+ menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
479
+ menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
480
+ menu item PT Dingbats 1 of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
481
+ menu item PT Dingbats 2 of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
482
+ menu item PT Dingbats 3 of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
483
+ menu item PT Dingbats 4 of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
484
+ menu item PT Symbol 1 of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
485
+ menu item PT Symbol 2 of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
486
+ menu item Symbol of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
487
+ menu item Webdings of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
488
+ menu item Wingdings of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
489
+ menu item Wingdings 2 of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
490
+ menu item Wingdings 3 of menu Symbol of menu item Symbol of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
491
+ menu item Image of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
492
+ menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
493
+ menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
494
+ menu item DP_Emoji of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
495
+ menu item DP_Music / Electronics of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
496
+ menu item DP_Closets / Storage of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
497
+ menu item DP_Vehicle / Travel of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
498
+ menu item DP_Home of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
499
+ menu item DP_Sports / Games of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
500
+ menu item DP_Animals of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
501
+ menu item DP_Baby / Kids of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
502
+ menu item DP_Seasons of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
503
+ menu item DP_Events / Special Occasions of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
504
+ menu item DP_Decorative / Craft of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
505
+ menu item DP_Garden of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
506
+ menu item DP_Family of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
507
+ menu item DP_School of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
508
+ menu item DP_Office of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
509
+ menu item DP_Astrology of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
510
+ menu item DP_Foods / Beverages of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
511
+ menu item DP_Kitchen of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
512
+ menu item DP_Shapes / Arrows of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
513
+ menu item DP_Signs of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
514
+ menu item DP_Garage / Tools of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
515
+ menu item Office of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
516
+ menu item Stationery of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
517
+ menu item Hospital of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
518
+ menu item Vehicles and Buildings of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
519
+ menu item Christmas of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
520
+ menu item Seasons and Holidays of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
521
+ menu item Laboratory of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
522
+ menu item Insects of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
523
+ menu item Animals of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
524
+ menu item Birds and Fishes of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
525
+ menu item Dinosaurs of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
526
+ menu item Flowers of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
527
+ menu item Fruits of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
528
+ menu item Food (Ethnic and Ingredients) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
529
+ menu item Food (Snacks and Specialty Foods) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
530
+ menu item Sports of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
531
+ menu item Hobbies of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
532
+ menu item Travelling and Outdoors of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
533
+ menu item Videos of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
534
+ menu item Stores (Restaurants) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
535
+ menu item Stores (Others) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
536
+ menu item Occupations of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
537
+ menu item People of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
538
+ menu item Toys of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
539
+ menu item Interiors of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
540
+ menu item School of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
541
+ menu item Tools and Equipment of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
542
+ menu item Country Style of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
543
+ menu item Weather and Celestial Bodies of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
544
+ menu item Directions of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
545
+ menu item Signs1 (guidance markings) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
546
+ menu item Signs2 (other guidance markings) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
547
+ menu item Signs3 (prohibitive) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
548
+ menu item Signs4 (warnings) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
549
+ menu item Signs5 (cautions) of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
550
+ menu item Electrical / Electronic of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
551
+ menu item Audio Visual of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
552
+ menu item Template parts 1 of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
553
+ menu item Template parts 2 of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
554
+ menu item General Shapes1 of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
555
+ menu item General Shapes2 of menu Clip Art of menu item Clip Art of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
556
+ menu item Date/Time of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
557
+ menu Date/Time of menu item Date/Time of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
558
+ menu item 2025/06/03 of menu Date/Time of menu item Date/Time of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
559
+ menu item 21:24 of menu Date/Time of menu item Date/Time of menu Cells of menu item Cells of menu Table of menu item Table of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
560
+ menu item 5 of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
561
+ menu item Numbering of menu Format of menu bar item Format of menu bar 1 of application process P-touch Editor
562
+ menu bar item Layout of menu bar 1 of application process P-touch Editor
563
+ menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
564
+ menu item Group of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
565
+ menu item Ungroup of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
566
+ menu item 3 of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
567
+ menu item Bring Forward of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
568
+ menu item Bring to Front of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
569
+ menu item Send Backward of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
570
+ menu item Send to Back of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
571
+ menu item 8 of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
572
+ menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
573
+ menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
574
+ menu item Left of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
575
+ menu item Center of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
576
+ menu item Right of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
577
+ menu item 4 of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
578
+ menu item Top of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
579
+ menu item Middle of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
580
+ menu item Bottom of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
581
+ menu item 8 of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
582
+ menu item Fit to Print Area of menu Align of menu item Align of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
583
+ menu item 10 of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
584
+ menu item Rotate 90° Left of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
585
+ menu item Rotate 90° Right of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
586
+ menu item 13 of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
587
+ menu item Change Size of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
588
+ menu Change Size of menu item Change Size of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
589
+ menu item Larger of menu Change Size of menu item Change Size of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
590
+ menu item Smaller of menu Change Size of menu item Change Size of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
591
+ menu item Maximum of menu Change Size of menu item Change Size of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
592
+ menu item Maximum with Ratio of menu Change Size of menu item Change Size of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
593
+ menu item Align to Guides of menu Layout of menu bar item Layout of menu bar 1 of application process P-touch Editor
594
+ menu bar item Database of menu bar 1 of application process P-touch Editor
595
+ menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
596
+ menu item Open of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
597
+ menu item Close of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
598
+ menu item 3 of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
599
+ menu item Search of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
600
+ menu item 5 of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
601
+ menu item First Record of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
602
+ menu item Last Record of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
603
+ menu item 8 of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
604
+ menu item Ascending Order of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
605
+ menu Ascending Order of menu item Ascending Order of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
606
+ menu item Descending Order of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
607
+ menu Descending Order of menu item Descending Order of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
608
+ menu item 11 of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
609
+ menu item Merge Fields... of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
610
+ menu item Connect Fields... of menu Database of menu bar item Database of menu bar 1 of application process P-touch Editor
611
+ menu bar item Address Book of menu bar 1 of application process P-touch Editor
612
+ menu Address Book of menu bar item Address Book of menu bar 1 of application process P-touch Editor
613
+ menu item Insert of menu Address Book of menu bar item Address Book of menu bar 1 of application process P-touch Editor
614
+ menu item Open of menu Address Book of menu bar item Address Book of menu bar 1 of application process P-touch Editor
615
+ menu item 3 of menu Address Book of menu bar item Address Book of menu bar 1 of application process P-touch Editor
616
+ menu item Merge Fields... of menu Address Book of menu bar item Address Book of menu bar 1 of application process P-touch Editor
617
+ menu bar item Window of menu bar 1 of application process P-touch Editor
618
+ menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
619
+ menu item Minimize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
620
+ menu item Minimize All of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
621
+ menu item Zoom of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
622
+ menu item Zoom All of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
623
+ menu item Fill of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
624
+ menu item Center of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
625
+ menu item 7 of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
626
+ menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
627
+ menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
628
+ menu item Halves of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
629
+ menu item Left of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
630
+ menu item Right of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
631
+ menu item Top of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
632
+ menu item Bottom of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
633
+ menu item 6 of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
634
+ menu item Quarters of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
635
+ menu item Top Left of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
636
+ menu item Top Right of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
637
+ menu item Bottom Left of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
638
+ menu item Bottom Right of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
639
+ menu item 12 of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
640
+ menu item Arrange of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
641
+ menu item Left & Right of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
642
+ menu item Left & Quarters of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
643
+ menu item Right & Left of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
644
+ menu item Right & Quarters of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
645
+ menu item Top & Bottom of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
646
+ menu item Top & Quarters of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
647
+ menu item Bottom & Top of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
648
+ menu item Bottom & Quarters of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
649
+ menu item Quarters of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
650
+ menu item 23 of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
651
+ menu item Return to Previous Size of menu Move & Resize of menu item Move & Resize of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
652
+ menu item Full Screen Tile of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
653
+ menu Full Screen Tile of menu item Full Screen Tile of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
654
+ menu item Left of Screen of menu Full Screen Tile of menu item Full Screen Tile of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
655
+ menu item Right of Screen of menu Full Screen Tile of menu item Full Screen Tile of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
656
+ menu item 10 of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
657
+ menu item Remove Window from Set of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
658
+ menu item 12 of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
659
+ menu item Move to Built-in Retina Display of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
660
+ menu item Move to R240HY of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
661
+ menu item Move to iPad (7) of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
662
+ menu item 16 of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
663
+ menu item Bring All to Front of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
664
+ menu item Arrange in Front of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
665
+ menu item 19 of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
666
+ menu item Show Previous Tab of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
667
+ menu item Show Next Tab of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
668
+ menu item Move Tab to New Window of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
669
+ menu item Merge All Windows of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
670
+ menu item 24 of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
671
+ menu item 25 of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
672
+ menu item template.lbx of menu Window of menu bar item Window of menu bar 1 of application process P-touch Editor
673
+ menu bar item Help of menu bar 1 of application process P-touch Editor
674
+ menu Help of menu bar item Help of menu bar 1 of application process P-touch Editor
675
+ menu item P-touch Editor Help of menu Help of menu bar item Help of menu bar 1 of application process P-touch Editor
676
+ menu item Software Information Scan of menu Help of menu bar item Help of menu bar 1 of application process P-touch Editor
677
+ menu item Troubleshooting of menu Help of menu bar item Help of menu bar 1 of application process P-touch Editor
678
+ menu item 4 of menu Help of menu bar item Help of menu bar 1 of application process P-touch Editor
679
+ menu item Brother support website of menu Help of menu bar item Help of menu bar 1 of application process P-touch Editor
data/sig/gui.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Gui
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gui_inspect
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Richard LeBer
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ email:
13
+ - richard.leber@gmail.com
14
+ executables:
15
+ - get_ui_elements
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - ".rspec"
20
+ - ".rubocop.yml"
21
+ - CODE_OF_CONDUCT.md
22
+ - LICENSE.txt
23
+ - README.md
24
+ - Rakefile
25
+ - exe/get_ui_elements
26
+ - lib/gui.rb
27
+ - lib/gui/version.rb
28
+ - output/p_touch_editor_ui_elements.txt
29
+ - sig/gui.rbs
30
+ homepage: https://github.com/rleber/gui
31
+ licenses:
32
+ - MIT
33
+ metadata:
34
+ allowed_push_host: https://rubygems.org
35
+ homepage_uri: https://github.com/rleber/gui
36
+ source_code_uri: https://github.com/rleber/gui
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 3.1.0
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirements: []
51
+ rubygems_version: 3.6.8
52
+ specification_version: 4
53
+ summary: Simple methods to inspect the GUI elements of a running MacOS application.
54
+ test_files: []