Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Is it possible to reassign the hotkey used to exit fullscreen in an EE swf to something like F1? I don't know anything about programming, but I've been using this thing called JPEXS Free Flash Decompiler to mess with the game a bit. Since EE is always updating, I'd like a walkthrough on how to do it myself, if possible.
Thanks.
Offline
I don't think this is possible since the message about being in fullscreen comes from the browser and not the game.
"Sometimes failing a leap of faith is better than inching forward"
- ShinsukeIto
Offline
Even when I'm using just the swf? I thought it was something that was programmed in. I know the message is always there on a browser, that's why I want to play on an swf.
Offline
lol ok
( ͡° ͜ʖ ͡°)
( ͡° ͜ʖ ͡°)
Offline
This is clientside. And can be changed. I did this to a swf, clicked on fullscreen and then on F1 which minimized to normal.
I created this in Jpex free flash decompiler
Download: http://www.mediafire.com/download/i7wrr … o/test.swf
Hotkeys: http://help.adobe.com/en_US/AS2LCR/Flas … 00520.html
As3 Code:
if(Bl.isKeyJustPressed(112))
{
Bl.stage.displayState = StageDisplayState.NORMAL;
}
P-code Code:
getlex Qname(PackageNamespace("blitter"),"Bl")
pushint 112
callproperty Qname(PackageNamespace(""),"isKeyJustPressed") 1
iffalse ofs18b1
getlex Qname(PackageNamespace("blitter"),"Bl")
getproperty Qname(PackageNamespace(""),"stage")
getlex Qname(PackageNamespace("flash.display"),"StageDisplayState")
getproperty Qname(PackageNamespace(""),"NORMAL")
setproperty Qname(PackageNamespace(""),"displayState")
ofs18b1:
Have fun.
Offline
If I press escape, it still exits fullscreen. I should have made this more clear, but I wanted the escape-to-exit-fullscreen removed so I can cancel typing in EE without it un-fullscreening. If this is just a thing that flash does with fullscreen then I guess it can't be helped. Thanks though!
Offline
Honestly have no idea, but best suggestion i can give:
Search through the whole swf for the words in "Bl.stage.displayState = StageDisplayState.NORMAL;"
Then somewhere around that code you will find the part about the escape button.
Just comment the line that you presume to put you out of fullscreen mode out (in case the swf crashes without that line) and keep trying like that.
Offline
[ Started around 1732379633.4552 - Generated in 0.050 seconds, 12 queries executed - Memory usage: 1.45 MiB (Peak: 1.58 MiB) ]