Profile

Mike Krebs

Contact Details

My Content

1 to 20 of 50+ total
Posted By Mike Krebs 08-12-2020 16:53
Found In Egroup: Graphics
\ view thread
Hi all, Trying to experiment with a Mentimeter Poll, opening the results in a browser (chrome, firefox or IE) and creating a Window Capture material of that browser to view the results. Issue is when I drag the window capture from the material editor to the browser it does not work. It only ...
Posted By Mike Krebs 04-16-2020 14:15
Found In Egroup: Graphics
\ view thread
If you prefer the coding side, try putting this into the OnSetText of the text object. Works for me. Good luck! if Text.contains(" " Then DoRec = True : textOut &= " " : tmp = "" If tmp = "<" Then DoRec = False : tmp = "" If DoRec = True Then textOut &= tmp End If Next ...
Posted By Mike Krebs 03-10-2020 17:52
Found In Egroup: Graphics
\ view thread
369642859871 Here is the scripting I ended up using. In my scene I also had a text object for the volume amount and the name of the track. We have all the files living on a shared NAS that all of our machines connect to. I also created a GPI that you can trigger while the file is playing. The ...
Posted By Mike Krebs 07-20-2018 12:21
Found In Egroup: Graphics
\ view thread
Hello all, I am looking for a way to add a new scene director in scripting. Is there anything like: Scene.CreateSceneDirector("NewSceneDirName") I do not see anything in the API. Am I missing it, or is this not a thing? Thanks in advance for your help. Mike
Posted By Mike Krebs 06-11-2018 12:59
Found In Egroup: Graphics
\ view thread
For the OnSetText, I needed to turn the double, rhs into a string first, then get a substring of that. Here is the updated code you could put in OnSetText. dim parts as string() = Text.split(".") dim rhs as double = Cint(parts(1))*32 Text = parts(0) + "'" + Cstr(rhs).Substring(0,4) ...
Posted By Mike Krebs 06-08-2018 13:46
Found In Egroup: Graphics
\ view thread
You could put the above into a loop, or put it into OnSetText of each of the text objects: dim parts as string() = Text.split(".") dim rhs as double = Cint(parts(1))*32 Text = parts(0) + "'" + Cstr(rhs.Substring(0,4)) To limit the number of numbers after the ' sign, get a substring ...
Posted By Mike Krebs 06-08-2018 13:39
Found In Egroup: Graphics
\ view thread
dim Number as xpBaseObject for i as integer = 1 to 4 Self.GetObjectByName("Number",Number3) dim parts as string() = Number3.Text.split(".") 'split your decimal bits from your whole bits. Assuming you will always have a decimal point dim rhs as double = Cint(parts(1))*32 ...
Posted By Mike Krebs 06-07-2018 12:53
Found In Egroup: Graphics
\ view thread
I think the issue is you need to convert your integer i counter variable to a string, so your GetObjectByName should be this for each. Scene.GetObjectByName("DATALINQ - RANK - CHOICE " & Cstr(i), choiceWinner) Prior to the if statement, I would also debug the values you are testing. What ...
Posted By Mike Krebs 06-07-2018 12:42
Found In Egroup: Graphics
\ view thread
I also prefer to do this with scripting, so I will just modify Simons code above. This should also do it regardless of the number of digits. I put this in onOnline. dim Number3 as xpBaseObject Self.GetObjectByName("Number3",Number3) dim parts as string() = Number3.Text.split(".") 'split your ...
Posted By Mike Krebs 04-18-2018 14:31
Found In Egroup: Graphics
\ view thread
In scripting I add line breaks using a certain string I look for, then replace that string with vbCrLf. I put this in the onSetText of the text object. People know to add [NL] to place line break in specific places. Text = Text.Replace("[NL]",vbCrLf) Hope this helps. Mike #XPress ...
Posted By Mike Krebs 04-05-2018 19:14
Found In Egroup: Graphics
\ view thread
I do a similar thing by triggering scene directors when scenes are online. To affect an online scene you have to get the online scene by calling the framebuffer, then layer, then get scene. I created a loop awhile back which searches through both Framebuffers and layers -5 - 5 and check if it is a LowerThird ...
Posted By Mike Krebs 03-31-2018 11:53
Found In Egroup: Graphics
\ view thread
I just did a similar thing in one of my scenes. This should get you started. In the script for the text object try this. Dim index as integer index = Text.IndexOf(" ") Text = Text.Remove(0,index) This script counts up to the first space in the string them removes everything up to ...
Posted By Mike Krebs 03-15-2018 17:10
Found In Egroup: Graphics
\ view thread
I do this for a few scenes and it works well. In an event marker or similar, you can add this to the script: dim parentScene as xpScene Scene.GetParent(parentScene) Now you can access parentScene and use is as you normally would. Change colors, trigger animation controllers and scene directors, ...
Posted By Mike Krebs 03-14-2018 14:44
Found In Egroup: Graphics
\ view thread
We route a PC to a live source input material in Xpression. That way we can let a producer or other person control what is happening on the PC for the demo. We have also used ipads and iphones mirrored to an apple tv and routed that to a live source for various screen demos. Mike #XPression
Posted By Mike Krebs 02-02-2018 19:13
Found In Egroup: Graphics
\ view thread
I am not able to load that resource. It says it cant recognize my sharepoint account. Your help is always appreciated. Thank you Garner. #XPression
Posted By Mike Krebs 02-02-2018 16:49
Found In Egroup: Graphics
\ view thread
Hello, I am doing some research on sending RossTalk commands to Xpression Studio from a web app using a TCP port. This looks possible in the settings of Xpression Studio, but I'm not sure of the syntax for the command that is being sent. Is there any documentation on this? Or is there ...
Posted By Mike Krebs 12-31-2017 19:20
Found In Egroup: Graphics
\ view thread
Hello, I am working on a crawl using the sequencer instead of a Scene Group. In sequencer I have the background layer on FrameBuffer 2 Layer 0 and the text scenes in a group on FrameBuffer 2 Layer 1. I can trigger these on air, looks great. My issue is taking the scene offline. My background ...
Posted By Mike Krebs 12-08-2017 20:42
Found In Egroup: Production Switchers
\ view thread
I think the trainer showed us this when he was here. We have a chroma layer on Key 3 and we also want to adjust the image as you would a PST Pattern. I thought he linked these two functions onto one key layer. Can anyone confirm if this is possible? If so, how to achieve this? Thanks ...
Posted By Mike Krebs 10-16-2017 18:16
Found In Egroup: Production Switchers
\ view thread
Awhile back a trainer showed us how to use a png sequence and make that into an auto transition. I was not able to find how to do this in the manual. Anyone able to point me in the right direction? As well, our primary switcher is the Acuity and carbonite is the backup, would be great to know ...
Posted By Mike Krebs 08-29-2017 13:16
Found In Egroup: Graphics
\ view thread
Here is a quick script I used to create a GPI which you could map a keyboard shortcut to. It will get the timer value and add or subtract 30 seconds to it while on air. Get the countdown clock widget from engine, get the TimerValue and either add or subtract 30000 milliseconds. dim Clock ...