-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_config.html
140 lines (97 loc) · 2.81 KB
/
index_config.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<meta name="xsplit:config-url" content="./config.html">
<title>sourceplugin Properties Editor</title>
</head>
<body>
<script src="js/xjs.js"></script>
<script>
(function() {
'use strict';
var xjs = require('xjs');
xjs.ready().then(function() {
xjs.SourcePropsWindow.getInstance().useTabbedWindow({
customTabs: ['Custom'],
tabOrder: ['Custom', 'Color', 'Layout', 'Transition']
});
});
// Disable backspace event to prevent breaking your source prop window
document.onkeydown = function(event) {
if (
event.target.nodeName !== 'INPUT' &&
event.target.nodeName !== 'TEXTAREA' &&
event.keyCode === 8
) {
return false;
}
}
// Disable context menu
document.oncontextmenu = function() { return false; };
// Functions that are executed by XBC. We need to handle these to
// prevent unwanted error messages
window.OnDialogLoadStart = function() {};
window.OnDialogTitleChange = function() {};
window.OnDialogBeforeNavigation = function() {};
window.SetVolume = function() {};
window.GetPlayState = function() {};
})();
</script>
<div>
<button id="save">copy all the images </button>
<script>
var save = document.getElementById('save');
save.addEventListener('click', function() {
var xjs = require('xjs');
xjs.ready().then(function() {
var myScene;
var Scene=xjs.Scene;
xjs.Scene.getActiveScene().then(function(scene) {
scene.getSceneNumber().then(function(id) {
var actsceneid = id;
for (var i = 1; i <= 12; i++) {
(function(idx) {
var currscene = xjs.Scene.getById(idx);
if(actsceneid!=idx){
currscene.getSources().then(function(sources) {
/*if (sources.length === 0) {
alert(sources.length);
}else
{
alert(sources.length);
}*/
for (var i in sources) {
if (sources[i] instanceof xjs.HtmlSource) {
var url;
sources[i].getURL().then(function(url) {
var actscene=xjs.Scene.getById(actsceneid);
var File = xjs.File;
var filePromise = new File(url).addToScene();
// sources[i].addToScene();
actscene.getSources().then(function(url) {
if (sources.length === 0) return;
// There's a valid source, let's use that
// var source = sources[i];
//alert(source);
sources[i].enableBrowserTransparency(true);
return source.setCustomName('testingtesting');
}).then(function(url) {
if(url){
//alert(url);
}
});});
}
}
});
}
})(i);
}
})
});
});
// mySource.requestSaveConfig({ some: 'data of yours' });
});
</script>
</div>
</body>
</html>