Platforms to show: All Mac Windows Linux Cross-Platform

/MacFrameworks/Tag Names


Required plugins for this example: MBS MacOSX Plugin, MBS MacCF Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /MacFrameworks/Tag Names

This example is the version from Mon, 15th Dec 2013.

Project "Tag Names.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Löschen"
Const kFileQuit = "Beenden"
Const kFileQuitShortcut = ""
End Class
Class Window1 Inherits Window
Control PushButton1 Inherits PushButton
ControlInstance PushButton1 Inherits PushButton
EventHandler Sub Action() file = GetOpenFolderItem("") if file<>Nil then Label1.Text = file.UnixpathMBS PushButton2.Enabled = true PushButton3.Enabled = true end if End EventHandler
End Control
Control Label1 Inherits Label
ControlInstance Label1 Inherits Label
End Control
Control PushButton2 Inherits PushButton
ControlInstance PushButton2 Inherits PushButton
EventHandler Sub Action() dim names() as string = file.TagNamesMBS TextArea1.Text = Join(names, EndOfLine) End EventHandler
End Control
Control PushButton3 Inherits PushButton
ControlInstance PushButton3 Inherits PushButton
EventHandler Sub Action() dim text as string = TextArea1.text text = ReplaceLineEndings(text, EndOfLine) dim names() as string = split(text, EndOfLine) // remove empties for i as integer = UBound(names) downto 0 if names(i).trim.len = 0 then names.Remove i end if next dim e as integer = file.SetTagNamesMBS(names) if e<>0 then MsgBox "Error: "+str(e) end if End EventHandler
End Control
Control TextArea1 Inherits TextArea
ControlInstance TextArea1 Inherits TextArea
End Control
Property file As FolderItem
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&Ablage"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Bearbeiten"
MenuItem EditUndo = "&Rückgängig"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "&Ausschneiden"
MenuItem EditCopy = "&Kopieren"
MenuItem EditPaste = "&Einfügen"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "&Alles auswählen"
End MenuBar
End Project

The items on this page are in the following plugins: MBS MacFrameworks Plugin.


The biggest plugin in space...