1
Fork 0
mirror of https://github.com/Steffo99/stack.git synced 2024-11-22 16:04:19 +00:00

F11 per schermo intero!

This commit is contained in:
Steffo 2013-06-21 23:19:32 +02:00
parent b293c35b93
commit f32b891c8b
6 changed files with 177 additions and 0 deletions

View file

@ -35,6 +35,7 @@
<script>scripts\saverecord.gml</script> <script>scripts\saverecord.gml</script>
<script>scripts\resetrecord.gml</script> <script>scripts\resetrecord.gml</script>
<script>scripts\loadrecord.gml</script> <script>scripts\loadrecord.gml</script>
<script>scripts\togglefullscreen.gml</script>
</scripts> </scripts>
<fonts name="fonts"> <fonts name="fonts">
<font>fonts\points</font> <font>fonts\points</font>

View file

@ -64,6 +64,48 @@
</arguments> </arguments>
</action> </action>
</event> </event>
<event eventtype="9" enumb="122">
<action>
<libid>1</libid>
<id>601</id>
<kind>0</kind>
<userelative>0</userelative>
<isquestion>0</isquestion>
<useapplyto>-1</useapplyto>
<exetype>1</exetype>
<functionname>action_execute_script</functionname>
<codestring></codestring>
<whoName>self</whoName>
<relative>0</relative>
<isnot>0</isnot>
<arguments>
<argument>
<kind>9</kind>
<script>togglefullscreen</script>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
</arguments>
</action>
</event>
<event eventtype="9" enumb="77"> <event eventtype="9" enumb="77">
<action> <action>
<libid>1</libid> <libid>1</libid>

View file

@ -124,6 +124,48 @@
</arguments> </arguments>
</action> </action>
</event> </event>
<event eventtype="9" enumb="122">
<action>
<libid>1</libid>
<id>601</id>
<kind>0</kind>
<userelative>0</userelative>
<isquestion>0</isquestion>
<useapplyto>-1</useapplyto>
<exetype>1</exetype>
<functionname>action_execute_script</functionname>
<codestring></codestring>
<whoName>self</whoName>
<relative>0</relative>
<isnot>0</isnot>
<arguments>
<argument>
<kind>9</kind>
<script>togglefullscreen</script>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
</arguments>
</action>
</event>
<event eventtype="9" enumb="77"> <event eventtype="9" enumb="77">
<action> <action>
<libid>1</libid> <libid>1</libid>

View file

@ -612,6 +612,48 @@
</arguments> </arguments>
</action> </action>
</event> </event>
<event eventtype="9" enumb="122">
<action>
<libid>1</libid>
<id>601</id>
<kind>0</kind>
<userelative>0</userelative>
<isquestion>0</isquestion>
<useapplyto>-1</useapplyto>
<exetype>1</exetype>
<functionname>action_execute_script</functionname>
<codestring></codestring>
<whoName>self</whoName>
<relative>0</relative>
<isnot>0</isnot>
<arguments>
<argument>
<kind>9</kind>
<script>togglefullscreen</script>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
</arguments>
</action>
</event>
<event eventtype="9" enumb="82"> <event eventtype="9" enumb="82">
<action> <action>
<libid>1</libid> <libid>1</libid>

View file

@ -702,6 +702,48 @@
</arguments> </arguments>
</action> </action>
</event> </event>
<event eventtype="9" enumb="122">
<action>
<libid>1</libid>
<id>601</id>
<kind>0</kind>
<userelative>0</userelative>
<isquestion>0</isquestion>
<useapplyto>-1</useapplyto>
<exetype>1</exetype>
<functionname>action_execute_script</functionname>
<codestring></codestring>
<whoName>self</whoName>
<relative>0</relative>
<isnot>0</isnot>
<arguments>
<argument>
<kind>9</kind>
<script>togglefullscreen</script>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
<argument>
<kind>0</kind>
<string>0</string>
</argument>
</arguments>
</action>
</event>
<event eventtype="9" enumb="82"> <event eventtype="9" enumb="82">
<action> <action>
<libid>1</libid> <libid>1</libid>

View file

@ -0,0 +1,8 @@
if window_get_fullscreen()
{
window_set_fullscreen(false);
}
else
{
window_set_fullscreen(true);
}