• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[JASS] network button?

Status
Not open for further replies.
Level 1
Joined
Jan 3, 2006
Messages
1
Inside EscMenuOptionsPanel.fdf v1.20b(war3Patch.mpq)
i found a network button data. In the game this button is not displayed(tere's only Gamplay,Sound and Viedeo) and i'm not sure if it's possible to activate it:

Frame "GLUETEXTBUTTON" "NetworkButton" INHERITS WITHCHILDREN "EscMenuButtonTemplate" {
SetPoint TOP, "SoundButton", BOTTOM, 0.0, -0.002,
TabFocusNext "OptionsPreviousButton",
ControlShortcutKey "N",

ButtonText "NetworkButtonText",
Frame "TEXT" "NetworkButtonText" INHERITS "EscMenuButtonTextTemplate" {
Text "KEY_NETWORK",
}
}
Frame "GLUETEXTBUTTON" "OptionsPreviousButton" INHERITS WITHCHILDREN "EscMenuButtonTemplate" {
SetPoint BOTTOM, "EscMenuOptionsPanel", BOTTOM, 0.0, 0.03,
ControlShortcutKey "P",

ButtonText "OptionsPreviousButtonText",
Frame "TEXT" "OptionsPreviousButtonText" INHERITS "EscMenuButtonTextTemplate" {
Text "KEY_PREVIOUS_MENU",
}
}

// ** Network Panel
Frame "FRAME" "NetworkPanel" {
...
// --- labels
Frame "TEXT" "LowLatencyLabel" INHERITS "EscMenuInfoTextTemplate" {
SetPoint LEFT, "LowLatencyRadio", RIGHT, 0.005, 0.0,
Text "LOW_LATENCY",
}
Frame "TEXT" "HighLatencyLabel" INHERITS "EscMenuInfoTextTemplate" {
SetPoint LEFT, "HighLatencyRadio", RIGHT, 0.005, 0.0,
Text "HIGH_LATENCY",
}
Frame "TEXT" "ExtraHighLatencyLabel" INHERITS "EscMenuInfoTextTemplate" {
SetPoint LEFT, "ExtraHighLatencyRadio", RIGHT, 0.005, 0.0,
Text "EXTRA_HIGH_LATENCY",

}

In older versions of the file there isnt such thing.
If someone has an idea...

ps:
sry if the post isnt in the right section;[/quote]
 
Status
Not open for further replies.
Top