-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL.html
More file actions
650 lines (600 loc) · 22.2 KB
/
Copy pathINSTALL.html
File metadata and controls
650 lines (600 loc) · 22.2 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Missing Files Finder — Setup</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #0f0f1a;
--card: #181828;
--card2: #1e1e32;
--border: rgba(255,255,255,0.07);
--pink: #ff00c8;
--purple: #7b2ff7;
--green: #4ade80;
--orange: #f9a825;
--red: #ff6b6b;
--text: #e2e2e2;
--muted: #888;
--dim: #555;
}
body {
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg);
color: var(--text);
font-size: 15px;
line-height: 1.6;
min-height: 100vh;
}
/* ─── LIVE STATUS BAR ──────────────────────────────────── */
#statusBar {
position: sticky;
top: 0;
z-index: 100;
background: rgba(15, 15, 26, 0.96);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--border);
padding: 11px 40px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.sb-left {
font-size: 12px;
color: var(--dim);
letter-spacing: 1px;
text-transform: uppercase;
font-weight: 600;
}
.sb-right {
display: flex;
align-items: center;
gap: 10px;
font-size: 13px;
font-weight: 600;
}
#statusDot {
width: 10px; height: 10px;
border-radius: 50%;
background: var(--dim);
flex-shrink: 0;
transition: background 0.4s, box-shadow 0.4s;
}
#statusDot.checking { background: var(--orange); box-shadow: 0 0 8px var(--orange); animation: pulse 1s infinite; }
#statusDot.ok { background: var(--green); box-shadow: 0 0 10px var(--green); }
#statusDot.auth { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
#statusDot.offline { background: var(--red); box-shadow: 0 0 8px var(--red); }
#statusText { color: var(--muted); transition: color 0.3s; }
#statusText.ok { color: var(--green); }
#statusText.auth { color: var(--orange); }
#statusText.offline { color: var(--red); }
#checkBtn {
background: none;
border: 1px solid var(--border);
color: var(--dim);
padding: 4px 12px;
border-radius: 20px;
font-size: 11px;
cursor: pointer;
font-family: inherit;
transition: all 0.2s;
letter-spacing: 0.5px;
}
#checkBtn:hover { border-color: var(--pink); color: var(--pink); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
/* ─── HERO ─────────────────────────────────────────────── */
.hero {
position: relative;
text-align: center;
padding: 60px 40px 50px;
background: linear-gradient(180deg, #14142a 0%, var(--bg) 100%);
border-bottom: 1px solid rgba(255,0,200,0.1);
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -60px; left: 50%;
transform: translateX(-50%);
width: 600px; height: 400px;
background: radial-gradient(ellipse, rgba(255,0,200,0.08) 0%, transparent 70%);
pointer-events: none;
}
.hero-ring {
width: 76px; height: 76px;
border-radius: 50%;
margin: 0 auto 22px;
background: linear-gradient(135deg, rgba(255,0,200,0.12), rgba(123,47,247,0.12));
border: 1px solid rgba(255,0,200,0.3);
display: flex; align-items: center; justify-content: center;
font-size: 34px;
box-shadow: 0 0 40px rgba(255,0,200,0.15);
}
.hero h1 {
font-size: 36px;
font-weight: 900;
letter-spacing: 4px;
background: linear-gradient(90deg, #ff00c8, #c050ff, #ff6b6b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 14px;
}
.hero-sub {
font-size: 16px;
color: var(--muted);
max-width: 500px;
margin: 0 auto 22px;
line-height: 1.8;
}
.hero-by {
font-size: 11px;
color: var(--dim);
letter-spacing: 3px;
text-transform: uppercase;
}
.hero-by b { color: var(--pink); font-weight: 600; }
.badges {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 20px;
flex-wrap: wrap;
}
.badge {
display: flex;
align-items: center;
gap: 6px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 20px;
padding: 5px 14px;
font-size: 12px;
color: #aaa;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }
/* ─── LAYOUT ────────────────────────────────────────────── */
.wrap {
max-width: 920px;
margin: 0 auto;
padding: 52px 28px;
}
.section-label {
text-align: center;
font-size: 11px;
font-weight: 700;
letter-spacing: 4px;
text-transform: uppercase;
color: var(--dim);
margin-bottom: 32px;
}
.section-label span {
background: linear-gradient(90deg, var(--pink), var(--purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* ─── STEP CARDS ────────────────────────────────────────── */
.steps-row {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-bottom: 50px;
}
@media (max-width: 700px) { .steps-row { grid-template-columns: 1fr; } }
.step-card {
position: relative;
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 30px 24px 26px;
transition: border-color 0.3s, opacity 0.3s;
}
.step-card.locked {
opacity: 0.45;
filter: saturate(0.3);
pointer-events: none;
}
.step-card:not(.locked):hover { border-color: rgba(255,0,200,0.3); }
.step-num {
position: absolute;
top: -14px; left: 24px;
width: 30px; height: 30px;
background: linear-gradient(135deg, var(--pink), var(--purple));
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 13px; font-weight: 900; color: #fff;
box-shadow: 0 3px 14px rgba(255,0,200,0.45);
}
.step-icon { font-size: 32px; margin-bottom: 14px; display: block; margin-top: 8px; }
.step-title { font-size: 17px; font-weight: 700; color: #e8e8e8; margin-bottom: 12px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.85; }
.step-desc b { color: #ccc; }
/* Install button */
.install-btn {
display: block;
margin-top: 20px;
padding: 14px 20px;
background: linear-gradient(135deg, var(--pink), var(--purple));
border-radius: 40px;
text-align: center;
text-decoration: none;
color: #fff;
font-size: 14px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
box-shadow: 0 4px 20px rgba(255,0,200,0.35);
transition: all 0.2s;
border: none;
cursor: pointer;
font-family: inherit;
width: 100%;
}
.install-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 26px rgba(255,0,200,0.5); }
.install-alt {
margin-top: 10px;
font-size: 11px;
color: var(--dim);
text-align: center;
line-height: 1.6;
}
/* Status mini badge inside step */
.step-status {
display: flex;
align-items: center;
gap: 8px;
margin-top: 18px;
padding: 10px 14px;
border-radius: 8px;
background: rgba(255,255,255,0.03);
font-size: 12px;
font-weight: 600;
color: var(--dim);
border: 1px solid var(--border);
}
.step-status-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--dim);
flex-shrink: 0;
}
.step-status.ok { background: rgba(74,222,128,0.06); border-color: rgba(74,222,128,0.2); color: var(--green); }
.step-status.ok .step-status-dot { background: var(--green); box-shadow: 0 0 6px var(--green); }
.step-status.warn { background: rgba(249,168,37,0.06); border-color: rgba(249,168,37,0.2); color: var(--orange); }
.step-status.warn .step-status-dot { background: var(--orange); }
/* ─── PORT BOX ──────────────────────────────────────────── */
.port-box {
display: flex;
align-items: center;
gap: 22px;
background: var(--card);
border: 1px solid rgba(255,0,200,0.18);
border-radius: 14px;
padding: 24px 28px;
margin-bottom: 52px;
}
.port-icon { font-size: 28px; flex-shrink: 0; }
.port-text h4 { font-size: 15px; font-weight: 700; color: #ddd; margin-bottom: 6px; }
.port-text p { font-size: 13px; color: var(--muted); line-height: 1.75; }
.port-text p b { color: #bbb; }
.port-num {
margin-left: auto;
font-size: 46px;
font-weight: 900;
background: linear-gradient(135deg, var(--pink), var(--purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: 1px;
flex-shrink: 0;
line-height: 1;
}
code {
background: rgba(255,255,255,0.07);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 4px;
padding: 2px 7px;
font-family: 'Consolas', 'Courier New', monospace;
font-size: 12px;
color: #ff88dd;
}
/* ─── INFO GRID ─────────────────────────────────────────── */
.info-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
margin-bottom: 50px;
}
@media (max-width: 580px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 12px;
padding: 20px 22px;
transition: border-color 0.2s;
}
.info-card:hover { border-color: rgba(255,0,200,0.15); }
.info-card h4 {
font-size: 11px;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--pink);
margin-bottom: 10px;
}
.info-card p { font-size: 13px; color: var(--muted); line-height: 1.8; }
.info-card p b { color: #bbb; }
/* ─── TROUBLESHOOTING ───────────────────────────────────── */
.trouble-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
margin-bottom: 50px;
}
@media (max-width: 580px) { .trouble-grid { grid-template-columns: 1fr; } }
.trouble-card {
border-radius: 12px;
padding: 18px 20px;
background: rgba(255,107,107,0.03);
border: 1px solid rgba(255,107,107,0.08);
}
.trouble-card h4 {
font-size: 11px; font-weight: 700;
letter-spacing: 1px; text-transform: uppercase;
color: var(--red); margin-bottom: 8px;
}
.trouble-card p { font-size: 13px; color: var(--muted); line-height: 1.8; }
.trouble-card p b { color: #bbb; }
/* ─── FOOTER ────────────────────────────────────────────── */
footer {
text-align: center;
padding: 28px;
border-top: 1px solid rgba(255,255,255,0.04);
font-size: 12px;
color: #2a2a3a;
letter-spacing: 1px;
}
footer b { color: var(--pink); font-weight: 600; }
</style>
</head>
<body>
<!-- ── STICKY STATUS BAR ──────────────────────────────── -->
<div id="statusBar">
<span class="sb-left">Everything HTTP Server</span>
<span class="sb-right">
<span id="statusDot" class="checking"></span>
<span id="statusText">Checking...</span>
<button id="checkBtn" onclick="runCheck()">Retry</button>
</span>
</div>
<!-- ── HERO ──────────────────────────────────────────── -->
<div class="hero">
<div class="hero-ring">🎬</div>
<h1>MISSING FILES FINDER</h1>
<p class="hero-sub">Instantly locate and relink missing footage in Adobe After Effects using Everything by voidtools.</p>
<div class="badges">
<span class="badge"><span class="badge-dot"></span>After Effects CC 2019+</span>
<span class="badge"><span class="badge-dot"></span>Windows 10 / 11</span>
<span class="badge"><span class="badge-dot"></span>No AHK install needed</span>
</div>
<p class="hero-by">made by <b>MICKEY PERRY</b></p>
</div>
<!-- ── MAIN ──────────────────────────────────────────── -->
<div class="wrap">
<div class="section-label"><span>INSTALLATION</span> — 3 STEPS</div>
<div class="steps-row">
<!-- STEP 1 -->
<div class="step-card" id="step1Card">
<div class="step-num">1</div>
<span class="step-icon">⚡</span>
<div class="step-title">Run the Installer</div>
<div class="step-desc">
Installs the AE panel, copies pre-configured <b>Everything</b>, and starts it automatically.
Everything is already set up for HTTP on port <b>8080</b> — no manual configuration needed.
</div>
<a class="install-btn" href="install.bat" id="installBtn">⚡ Run install.bat</a>
<div class="install-alt">
Click the button above — your browser will ask to <b>Keep / Run</b> the file.<br>
Or just <b>double-click install.bat</b> in this folder directly.
</div>
</div>
<!-- STEP 2 -->
<div class="step-card locked" id="step2Card">
<div class="step-num">2</div>
<span class="step-icon">🔍</span>
<div class="step-title">Everything is Running</div>
<div class="step-desc">
After install.bat finishes, Everything starts automatically in your <b>system tray</b>.
Look for the <code>∞</code> icon in the notification area (bottom-right taskbar).
</div>
<div class="step-status" id="evStatus">
<span class="step-status-dot"></span>
<span id="evStatusText">Waiting for Everything...</span>
</div>
</div>
<!-- STEP 3 -->
<div class="step-card locked" id="step3Card">
<div class="step-num">3</div>
<span class="step-icon">🎬</span>
<div class="step-title">Open After Effects</div>
<div class="step-desc">
Restart After Effects, then go to<br>
<b>Window → Missing Files Finder</b><br><br>
Select missing items in the Project panel (or use <b>DETECT & SELECT</b>), then hit <b>SCAN</b>.
</div>
<div class="step-status ok" id="step3Status" style="display:none;">
<span class="step-status-dot"></span>
<span>Everything connected · You're ready!</span>
</div>
</div>
</div>
<!-- PORT BOX -->
<div class="port-box">
<div class="port-icon">🔌</div>
<div class="port-text">
<h4>Pre-configured · Zero Setup</h4>
<p>Everything's HTTP server is configured on port <b>8080</b> with no auth required.<br>
The panel connects automatically. If you need credentials, set them in <b>panel Settings → Connection</b>.</p>
</div>
<div class="port-num">8080</div>
</div>
<!-- HOW IT WORKS -->
<div class="section-label"><span>HOW IT WORKS</span></div>
<div class="info-grid">
<div class="info-card">
<h4>Everything Search</h4>
<p><b>Everything</b> by voidtools indexes your entire disk in seconds. The panel queries it via HTTP to find any file instantly — even across multiple drives and mapped network paths.</p>
</div>
<div class="info-card">
<h4>Smart Matching</h4>
<p>Results are ranked by <b>folder path similarity</b>. Files in the same structure as the original score higher. Files inside your project root always rank first.</p>
</div>
<div class="info-card">
<h4>Auto-Copy to Project</h4>
<p>Files found <b>outside your project folder</b> get copied to the right subfolder (<code>03_GFX</code>, <code>02_Footage</code>…) before relinking. Configure folder names in <b>panel Settings → Copy</b>.</p>
</div>
<div class="info-card">
<h4>PSD Layer Relinking</h4>
<p>PSD files relink via an included compiled script — <b>no AutoHotkey install needed</b> on your machine. The script automates the Replace Footage dialog and handles layer metadata.</p>
</div>
</div>
<!-- TROUBLESHOOTING -->
<div class="section-label"><span>TROUBLESHOOTING</span></div>
<div class="trouble-grid">
<div class="trouble-card">
<h4>Panel not in AE Window menu?</h4>
<p>Re-run <code>install.bat</code> and <b>fully close and restart</b> After Effects. Make sure AE is not running when the installer copies files.</p>
</div>
<div class="trouble-card">
<h4>Status shows "Not running"?</h4>
<p>Start Everything from the <b>Desktop shortcut</b> created by the installer. Then click <b>Retry</b> above. Or open Everything → <b>Tools → Options → HTTP Server</b> to verify port 8080 is enabled.</p>
</div>
<div class="trouble-card">
<h4>PSD relink not working?</h4>
<p>The compiled PSD script (<code>.exe</code>) runs without AHK. If it fails, make sure After Effects is the <b>active foreground window</b> when clicking RELINK on a PSD file.</p>
</div>
<div class="trouble-card">
<h4>Files not found after scan?</h4>
<p>Wait <b>30–60 seconds</b> after Everything first starts — it indexes on launch. The Everything window shows progress in the status bar. Searches return empty until indexing finishes.</p>
</div>
<div class="trouble-card">
<h4>Everything already installed?</h4>
<p>No conflict. The installer places a <b>portable copy</b> in <code>%LOCALAPPDATA%\MissingFilesFinder\Everything\</code>, separate from any existing installation.</p>
</div>
<div class="trouble-card">
<h4>Need to reinstall?</h4>
<p>Run <code>install.bat</code> again — it overwrites files cleanly. Your panel settings (port, copy config) are preserved in the browser's localStorage.</p>
</div>
</div>
</div>
<footer>
Missing Files Finder · Made by <b>MICKEY PERRY</b> · Search powered by Everything by voidtools
</footer>
<script>
// ─── Everything Status Checker ─────────────────────────────
var isConnected = false;
var pollTimer = null;
function setStatus(state, label) {
var dot = document.getElementById('statusDot');
var text = document.getElementById('statusText');
dot.className = state;
text.className = state;
text.textContent = label;
}
function setEvStatus(state, label) {
var el = document.getElementById('evStatus');
var span = document.getElementById('evStatusText');
el.className = 'step-status ' + (state === 'ok' ? 'ok' : state === 'auth' ? 'warn' : '');
el.querySelector('.step-status-dot').style.background =
state === 'ok' ? 'var(--green)' : state === 'auth' ? 'var(--orange)' : 'var(--dim)';
span.textContent = label;
}
function unlockSteps() {
document.getElementById('step2Card').classList.remove('locked');
document.getElementById('step3Card').classList.remove('locked');
document.getElementById('step3Status').style.display = 'flex';
}
function lockSteps() {
document.getElementById('step2Card').classList.add('locked');
document.getElementById('step3Card').classList.add('locked');
document.getElementById('step3Status').style.display = 'none';
}
function runCheck() {
setStatus('checking', 'Checking...');
document.getElementById('checkBtn').textContent = '...';
// Try XHR first (gives real HTTP status) — Chrome/Edge allow file:→localhost
var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://localhost:8080/?json=1&count=1&search=_mff_check_', true);
xhr.timeout = 2500;
xhr.onload = function() {
document.getElementById('checkBtn').textContent = 'Retry';
if (xhr.status === 200) {
onConnected();
} else if (xhr.status === 401) {
onAuth();
} else {
onOffline();
}
};
xhr.onerror = function() {
// XHR blocked by CORS (file:// → localhost in Firefox etc.)
// Fall back to fetch no-cors — resolves if server is reachable, rejects if not
fetch('http://localhost:8080/', { mode: 'no-cors', cache: 'no-store' })
.then(function() {
// Server responded but we can't read status — assume connected (no-auth or auth)
document.getElementById('checkBtn').textContent = 'Retry';
onConnected();
})
.catch(function() {
document.getElementById('checkBtn').textContent = 'Retry';
onOffline();
});
};
xhr.ontimeout = function() {
document.getElementById('checkBtn').textContent = 'Retry';
onOffline();
};
xhr.send();
}
function onConnected() {
if (!isConnected) {
isConnected = true;
unlockSteps();
}
setStatus('ok', 'Connected · Everything is running on port 8080');
setEvStatus('ok', 'Everything is running ✓');
}
function onAuth() {
if (!isConnected) {
isConnected = true;
unlockSteps();
}
setStatus('auth', 'Connected · Auth required — configure in panel Settings');
setEvStatus('auth', 'Running · Configure credentials in panel Settings');
}
function onOffline() {
isConnected = false;
lockSteps();
setStatus('offline', 'Not running — run install.bat, then start Everything');
setEvStatus('', 'Waiting for Everything...');
}
// Auto-poll every 2 seconds
function startPolling() {
runCheck();
pollTimer = setInterval(function() {
if (!isConnected) runCheck();
}, 2000);
// Once connected, slow the poll to every 10 seconds
setInterval(function() {
if (isConnected) runCheck();
}, 10000);
}
// Start checking when page loads
window.addEventListener('load', startPolling);
</script>
</body>
</html>