Profile

Malcolm Thorpe

Contact Details

My Content

1 to 20 of 50+ total
Posted By Malcolm Thorpe 05-19-2024 12:04
Found In Egroup: Graphics
\ view thread
Hi Michele, Two ways come to mind. Two masks, one for each of the "curtains". You could animate them easily on the X axis, or set the anchor point on the outer edge if you want to scale them instead. Second would be a mask the same size as the display. Anchor point in the center, and animate on the ...
Posted By Malcolm Thorpe 05-17-2024 17:28
Found In Egroup: Graphics
\ view thread
Short answer: Yes, otherwise I would need more info. ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 05-17-2024 10:28
Found In Egroup: Graphics
\ view thread
I gave this a shot. I made a mask for each "county", a quad to hold red, a quad to hold blue, and a quad to hold gray.. Also red, blue & gray materials. The red, blue, gray and mask are applied to quads inside a layer object along with a text object with gray being the base layer. I set the text object ...
Posted By Malcolm Thorpe 03-02-2024 00:39
Found In Egroup: Graphics
\ view thread
To the far right is a tab called "Template Links" In this tab you can order the published elements however you like. Just select the one you want to move and click on the up or down arrows. Cheers. ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite ...
Posted By Malcolm Thorpe 02-14-2024 17:19
Found In Egroup: Graphics
\ view thread
The easiest way to do this would be using "dynamic materials". There are a few things you would have to do first, but basically you would link a hidden text field to the material you wanted, and use that to set the material. Let me know if you want to go down that road. ------------------------------ ...
Posted By Malcolm Thorpe 02-10-2024 22:24
Found In Egroup: Graphics
\ view thread
It looks like it's called "Enterprise Control" now. ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 01-06-2024 11:55
Found In Egroup: Graphics
\ view thread
Nice work. Visual Basic is a handy tool to have in your toolbox. I'm glad you gave it a shot. ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 01-06-2024 11:46
Found In Egroup: Graphics
\ view thread
you would put this script on the text field in your scene that is linked to your data. No variables needed. It looks at the text and finds any commas, then uses that to split the string and flip the order. If there are no commas, it just passes the name through. It's pretty slick. Be sure to compile ...
Posted By Malcolm Thorpe 01-06-2024 11:39
Found In Egroup: Graphics
\ view thread
The script is only 5 lines of code if you want to try it. if InStr(text, ",") > 0 then text = split(text, ",")(1) & " " & split(text, ",")(0) else text = text end if ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite TD --------------- ...
Posted By Malcolm Thorpe 12-30-2023 15:18
Found In Egroup: Graphics
\ view thread
Excellent news. Go Cougars......Unless the U is playing. ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 12-30-2023 15:09
Found In Egroup: Graphics
\ view thread
OK, this one works. But the script has to be on the text field accepting the data if InStr(text, ",") > 0 then text = split(text, ",")(0) else text = text end if ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite TD --------------------- ...
Posted By Malcolm Thorpe 12-30-2023 15:05
Found In Egroup: Graphics
\ view thread
ok, never mind. I will play around a bit and send you a better script. ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 12-30-2023 00:31
Found In Egroup: Graphics
\ view thread
This is the base script I use when I want to manipulate names with commas. This one flips first and last names. But I think that if you delete the bold portion of the script and replace the 1 with 0 (zero) it SHOULD just display the text that appears before the comma. I'm not at my Xpression so I can't ...
Posted By Malcolm Thorpe 12-26-2023 11:32
Found In Egroup: Graphics
\ view thread
This is a perfect scenario to use Dashboard. It can change the score, play the sounds with a single click on the dashboard. I know this isn't the answer to your question, but it's a way to get it done simply. ------------------------------ Malcolm Thorpe xpression design Free Lance Xpression Designer/Carbonite ...
Posted By Malcolm Thorpe 10-16-2023 12:40
Found In Egroup: Graphics
\ view thread
This is epic. It makes my work so much easier. Thank you. ------------------------------ Malcolm Thorpe Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 10-08-2023 13:06
Found In Egroup: Graphics
\ view thread
Working with two different continuous animations at the same time can be frustrating. I suppose another way is to have a dedicated scene director that only controls the fade up, movement left to right, and then the fade out. Add to that a jump to a specific frame and it might do what you want. I'm not ...
Posted By Malcolm Thorpe 07-14-2023 11:30
Found In Egroup: Graphics
\ view thread
Could you put the scenes you want to "group trigger" into a dedicated group and then just trigger the group via Stream Deck? ------------------------------ Malcolm Thorpe Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 06-19-2023 14:46
Found In Egroup: Graphics
\ view thread
Very true. He wanted to have the footballs center each time they changed, not add left to right. You could also do it using XY scale. So many different ways. ------------------------------ Malcolm Thorpe Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 06-18-2023 12:51
Found In Egroup: Graphics
\ view thread
a throwback to when I used to use an alpha value. But look, the world is still turning. ------------------------------ Malcolm Thorpe Free Lance Xpression Designer/Carbonite TD ------------------------------
Posted By Malcolm Thorpe 06-17-2023 17:10
Found In Egroup: Graphics
\ view thread
Excellent. This will give you a foothold on visual logic. Now you can really start playing.