Profile

luis riera

Contact Details

My Content

1 to 20 of 38 total
Posted By luis riera 03-09-2017 17:47
Found In Egroup: Graphics
\ view thread
Hi, how can I do the following? I want to take online a scene, and delay the offline status of the previous scene by five or ten seconds.
Posted By luis riera 04-04-2016 21:28
Found In Egroup: Graphics
\ view thread
If the pause is pre-created on the scene director, you could enable/disable the track via scripting. that can help... thanks #XPression
Posted By luis riera 04-04-2016 16:40
Found In Egroup: Graphics
\ view thread
(I can pause it via sceneDirector, but the end user cant unpause it with continue as one usually does via event) #XPression
Posted By luis riera 04-04-2016 16:07
Found In Egroup: Graphics
\ view thread
Hi, is it possible to set a pause or range event via script? I want to assign some conditions, and if the conditions are met, the scene director either pause at a given timeframe until the user continues the animation, loop a specified range of frames or just keep playing.
Posted By luis riera 01-26-2016 17:44
Found In Egroup: Graphics
\ view thread
hi, I like to control the camera via script. I have the following data from After Effects: at time 1 L3DTrackerCame.pos = [-0.01932518304516,-0.9579933977044,0.10622924800086] at time 1 L3DTrackerCame.rotation.x_rotation = 4.69539629050705 at time 1 L3DTrackerCame.rotation.z_rotation = ...
Posted By luis riera 09-01-2015 17:34
Found In Egroup: Graphics
\ view thread
I would like to know this as well. #XPression
Posted By luis riera 02-16-2015 17:12
Found In Egroup: Graphics
\ view thread
The reason is because in my work they dont use xml or sql (we dont have tools for that), we use txt files and excel files, and I have to link each text object to an excel cell. #XPression
Posted By luis riera 02-16-2015 16:13
Found In Egroup: Graphics
\ view thread
hi, is it possible to change the increment of a datalinq table via script? I have 12 blocks with 12 videos each, and I want to tell via script something like this, if I select block 7, it will launch the videos assigned to 7, but I currently have to data link 144 text objects to do it, and I dont think ...
Posted By luis riera 10-12-2014 00:54
Found In Egroup: Graphics
\ view thread
yeah I know that, what I want to do is to duplicate my scene (linked to an excel file "A") and link the dupicate to a different datalinq file (lets say an excel file "B"). Currently, the only way I know is to hunt down every object that its linked, click on it and change the datalinq source ("A" to "B"). ...
Posted By luis riera 10-03-2014 16:31
Found In Egroup: Graphics
\ view thread
Not sure if it helps, but for some webs who dont change its design, what I do is linking them in excel, and then link the excel to xpression. #XPression
Posted By luis riera 10-03-2014 16:24
Found In Egroup: Graphics
\ view thread
Hi, I hope my post havent been lost in transtation (english is not my primary language) basically I have a scene, the scene have many text objects that are datalinq'd text 1 #XPression
Posted By luis riera 09-30-2014 16:30
Found In Egroup: Graphics
\ view thread
hi, is there a way to change the data linq name via script? (or do it globally per scene, not project) I have a scene that calls a data linq A.txt , but I want to duplicate it four times to link each copy with datalinqs B.txt, C.txt, D.txt and E.txt. As I have several textobjects that are linked ...
Posted By luis riera 09-29-2014 19:09
Found In Egroup: Graphics
\ view thread
Nevermind, I solved. Basically I created random materials ononline and then delete them when the scene goes offline at the end of the director timeline. #XPression
Posted By luis riera 09-27-2014 00:42
Found In Egroup: Graphics
\ view thread
hello I have the following error, I have used the transition logic example script from ross to adapt it but I have one big problem: the photos change before the change between pages is made. The other problem is that I have a lower third that is checking for this graphics to enter on layer 4, but to ...
Posted By luis riera 09-11-2014 20:06
Found In Egroup: Graphics
\ view thread
Hi, I have the following script: dim t_IN, t_OUT as xpTextObject dim j as long self.getobjectbyname("t_IN", t_IN) self.getobjectbyname("t_OUT", t_OUT) j = CLng(len(t_IN.text)) dim rdm as random rdm = new random t_OUT.text = rdm.Next( (10^j -1) /9, 10^j -1 ) but the problem ...
Posted By luis riera 08-29-2014 21:09
Found In Egroup: Graphics
\ view thread
have you tried using the script on "OnRender" instead of "OnOnline"? #XPression
Posted By luis riera 08-29-2014 17:05
Found In Egroup: Graphics
\ view thread
Hi, I want to drive the string values of the tab numbers of a single text object, so I can make charts like this: "profession: medic doctor nurse" , using just one text object (I'll drive the strings with an xml), this way I can optimize my scene by using few text objects, and also I can take ...
Posted By luis riera 04-04-2014 20:04
Found In Egroup: Graphics
\ view thread
also, is there a way to reverse the keyframes (in the graph editor, not the scene director) of an animation controller?
Posted By luis riera 04-04-2014 19:58
Found In Egroup: Graphics
\ view thread
hi, as the title say... is there a way to do a turn page effect?
Posted By luis riera 02-11-2014 16:56
Found In Egroup: Graphics
\ view thread
thank you brian, I check your script but I dont have the knowledge yet to understand it. I have to learn more about VB, lucky for me I could do the animation: I will paste my script (I ended doing it the way I can): On Render: dim total(12), r(12), cr(12), jr(12), gr(12) as xpTextObject ...